/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 24 Sep,2020, 08:54:07
    Author     : Peter Dickson
*/

/* Landing Hero Section */
.landing-hero {
    background: linear-gradient(135deg, rgba(101, 67, 33, 0.8) 0%, rgba(139, 69, 19, 0.8) 100%), 
                url('/../../images/baking.jpg') no-repeat center center;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    text-align: center;
}

.hero-overlay {
    width: 100%;
    padding: 0 20px;
}

.hero-title {
    font-family: 'pacificoregular', cursive;
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.brand-39 {
    color: #e67e22;
}

.hero-subtitle {
    font-family: 'rubiklight', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.hero-description {
    font-family: 'rubiklight', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-hero {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    border: none !important;
    border-radius: 30px;
    padding: 15px 35px;
    font-family: 'rubiklight';
    font-weight: bold;
    font-size: 1.1rem;
    color: white;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230, 126, 34, 0.4);
    color: white;
}

.btn-outline-hero {
    border: 2px solid white;
    border-radius: 30px;
    padding: 15px 35px;
    font-family: 'rubiklight';
    font-weight: bold;
    font-size: 1.1rem;
    color: white;
    background: transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline-hero:hover {
    background: white;
    color: #e67e22;
    transform: translateY(-3px);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #fdf6e3;
}

.section-title {
    font-family: 'pacificoregular', cursive;
    font-size: 3rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: 'rubiklight', sans-serif;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 3rem;
}

.feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e67e22, #d35400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-family: 'rubiklight', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.feature-card p {
    font-family: 'rubiklight', sans-serif;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background: white;
}

.category-preview-card {
    height: 300px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.category-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.category-preview-card:hover::before {
    background: rgba(230, 126, 34, 0.8);
}

.category-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.birthday-card {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
}

.baby-card {
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
}

.special-card {
    background: linear-gradient(135deg, #FFD93D 0%, #FF9A3D 100%);
}

.category-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-preview-card h3 {
    font-family: 'rubiklight', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.category-preview-card p {
    font-family: 'rubiklight', sans-serif;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.btn-category {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    border-radius: 25px;
    padding: 10px 25px;
    color: white;
    font-family: 'rubiklight';
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-category:hover {
    background: white;
    color: #e67e22;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8e8c8 0%, #fdf6e3 100%);
    text-align: center;
}

.cta-title {
    font-family: 'pacificoregular', cursive;
    font-size: 3rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.cta-description {
    font-family: 'rubiklight', sans-serif;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-main {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    border: none !important;
    border-radius: 30px;
    padding: 15px 35px;
    font-family: 'rubiklight';
    font-weight: bold;
    font-size: 1.1rem;
    color: white;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230, 126, 34, 0.4);
    color: white;
}



.btn-outline-cta {
    border: 2px solid #e67e22;
    border-radius: 30px;
    padding: 15px 35px;
    font-family: 'rubiklight';
    font-weight: bold;
    font-size: 1.1rem;
    color: #e67e22;
    background: transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline-cta:hover {
    background: #e67e22;
    color: white;
    transform: translateY(-3px);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.category-preview-card {
    animation: fadeInUp 0.6s ease-out;
}

.feature-card.animated,
.category-preview-card.animated {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-hero{
    	border: none !important;
    }
    
    .cta-hero,
    .btn-outline-hero,
    .cta-main,
    .btn-outline-cta {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .landing-hero {
        height: 80vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .features-section,
    .categories-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
}

/* Hide old styles */
.header {
    display: none;
}

.jumbotron {
    display: none;
}

.heading1 h1,
.heading1 p,
.cta {
    display: none;
}

/* Remove old styles */
.row:after {
    content: none;
    display: none;
    clear: none;
}