/* Seasonal Showcase - Apple-style landing page section */

.seasonal-showcase {
    width: 100%;
    padding: 80px 0;
    overflow: hidden;
    position: relative;
    transition: all 0.5s ease;
}

/* Background colors for different holidays */
.seasonal-showcase.thanksgiving {
    background-color: #f8f3e9; /* Warm beige for Thanksgiving */
}

.seasonal-showcase.christmas {
    background-color: #f7f7f7; /* Soft white for Christmas */
}

.seasonal-showcase.veterans-day {
    background-color: #f5f5f5; /* Light gray for Veterans Day */
}

.seasonal-showcase.halloween {
    background-color: #f9f5f0; /* Soft cream for Halloween */
}

.seasonal-showcase.labor-day {
    background-color: #f5f7fa; /* Light blue-gray for Labor Day */
}

.seasonal-showcase.valentines-day {
    background-color: #fff5f5; /* Soft pink for Valentine's Day */
}

/* Container for content */
.seasonal-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Branding section */
.seasonal-branding {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.seasonal-logo {
    height: 50px;
    margin-right: 15px;
}

.seasonal-company {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Poster container */
.seasonal-poster-container {
    max-width: 500px;
    width: 100%;
    margin: 0 auto 40px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.seasonal-poster-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.seasonal-poster {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Text content */
.seasonal-headline {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.seasonal-headline.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Button styles */
.seasonal-button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s, background-color 0.3s ease;
}

.seasonal-button.visible {
    opacity: 1;
    transform: translateY(0);
}

.seasonal-button.gold {
    background-color: #a67c52;
    color: white;
}

.seasonal-button.gold:hover {
    background-color: #8a6642;
}

.seasonal-button.navy {
    background-color: #2c3e50;
    color: white;
}

.seasonal-button.navy:hover {
    background-color: #1a2530;
}

.seasonal-button.burgundy {
    background-color: #8e2c2c;
    color: white;
}

.seasonal-button.burgundy:hover {
    background-color: #7a1f1f;
}

.seasonal-button.pink {
    background-color: #e91e63;
    color: white;
}

.seasonal-button.pink:hover {
    background-color: #c2185b;
}

/* Responsive styles */
@media (max-width: 768px) {
    .seasonal-showcase {
        padding: 60px 0;
    }
    
    .seasonal-headline {
        font-size: 28px;
    }
    
    .seasonal-branding {
        flex-direction: column;
    }
    
    .seasonal-logo {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .seasonal-showcase {
        padding: 40px 0;
    }
    
    .seasonal-headline {
        font-size: 24px;
    }
    
    .seasonal-button {
        padding: 10px 24px;
        font-size: 14px;
    }
}
