/* Home Page Specific Styles - UPDATED */

/* Add padding to body to account for fixed navbar */
body {
    padding-top: 80px; /* Height of your navbar */
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem; /* Reduced padding since body has top padding now */
    background-color: #f8f8f8;
    margin-top: 0; /* Remove any top margin */
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.hero-content p {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #D4AF37; /* Mustard gold */
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #c19d30;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Feature Intro Section */
.feature-intro {
    text-align: center;
    padding: 3rem 2rem; /* Reduced padding */
    background-color: white;
}

.feature-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #D4AF37; /* Mustard gold */
    margin-bottom: 1rem;
}

.feature-intro h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.feature-intro p {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-secondary {
    background-color: transparent;
    color: #D4AF37; /* Mustard gold */
    padding: 0.8rem 1.5rem;
    border: 2px solid #D4AF37;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #D4AF37;
    color: white;
}

/* Decorations Showcase Section (from gallery) */
.decorations-showcase {
    padding: 3rem 2rem; /* Reduced padding */
    text-align: center;
    background-color: #f8f8f8;
}

.decorations-showcase h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.decorations-showcase p {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.decorations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.decoration-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    height: 250px;
    cursor: pointer;
}

.decoration-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.decoration-item:hover img {
    transform: scale(1.05);
}

.decoration-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.decoration-item:hover .decoration-overlay {
    transform: translateY(0);
}

.decoration-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.decoration-overlay p {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    margin-bottom: 0;
    color: #f8f8f8;
}

/* Services Overview Section */
.services-overview {
    text-align: center;
    padding: 3rem 2rem; /* Reduced padding */
    background-color: white;
}

.services-overview h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.services-overview p {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Logistics Section */
.logistics {
    text-align: center;
    padding: 3rem 2rem; /* Reduced padding */
    background-color: #f8f8f8;
}

.logistics h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.logistics p {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Gallery Preview Section */
.gallery-preview {
    text-align: center;
    padding: 3rem 2rem; /* Reduced padding */
    background-color: white;
}

.gallery-preview h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.gallery-preview p {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 70px; /* Adjust for smaller navbar height */
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 1rem; /* Further reduced padding on mobile */
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .feature-intro,
    .decorations-showcase,
    .services-overview,
    .logistics,
    .gallery-preview {
        padding: 2rem 1rem; /* Reduced padding on mobile */
    }
    
    .feature-intro h2,
    .decorations-showcase h2,
    .services-overview h2,
    .logistics h2,
    .gallery-preview h2 {
        font-size: 1.8rem;
    }
    
    .decorations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 60px; /* Further adjustment for very small screens */
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .decorations-grid {
        grid-template-columns: 1fr;
    }
    
    .decoration-item {
        height: 200px;
    }
}