/*
 *  FESTIVAL-GIFTING.CSS
 *  Additional styles for the Festival Gifting page
 *  Note: This file extends corporate-gifting.css
*/

/* =============================================
   1. FESTIVAL CARDS SECTION
   ============================================= */
.festival-card {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
    position: relative;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.festival-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.12);
}

.festival-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-gold) 0%, #D4AF61 100%);
    color: var(--color-forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(199, 165, 90, 0.3);
}

.festival-card h4 {
    color: var(--color-cream);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.festival-card p {
    color: rgba(247, 243, 234, 0.75);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.festival-tag {
    display: inline-block;
    background-color: rgba(199, 165, 90, 0.2);
    color: var(--color-gold);
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =============================================
   2. PACKAGE PRICING STYLES
   ============================================= */
.package-price {
    background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-garden) 100%);
    padding: 1rem;
    border-radius: 0.75rem;
    text-align: center;
    margin-top: 1rem;
}

.price-label {
    display: block;
    color: rgba(247, 243, 234, 0.7);
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.price-amount {
    display: block;
    color: var(--color-gold);
    font-size: 1.75rem;
    font-weight: 700;
    font-family: var(--font-primary-serif);
}

/* Featured package price */
.package-featured .package-price {
    background: linear-gradient(135deg, var(--color-gold) 0%, #D4AF61 100%);
}

.package-featured .price-label {
    color: rgba(15, 45, 38, 0.7);
}

.package-featured .price-amount {
    color: var(--color-forest);
}

/* =============================================
   3. FESTIVALS HIGHLIGHT SECTION ENHANCEMENTS
   ============================================= */
.festivals-highlight-section {
    position: relative;
    overflow: hidden;
}

.festivals-highlight-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(199, 165, 90, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.festivals-highlight-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(199, 165, 90, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* =============================================
   4. WHY TEA SECTION
   ============================================= */
.why-tea-section .occasion-card {
    background-color: var(--color-cream);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.why-tea-section .occasion-card:hover {
    border-color: var(--color-gold);
}

.why-tea-section .occasion-icon {
    background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-garden) 100%);
    color: var(--color-gold);
}

/* =============================================
   5. FORM ENHANCEMENTS
   ============================================= */
#enquiry-form-section .form-control[type="date"] {
    color: var(--color-charcoal);
}

#enquiry-form-section .form-control[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

#enquiry-form-section .form-control[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* =============================================
   6. RESPONSIVE ADJUSTMENTS
   ============================================= */
@media (max-width: 991.98px) {
    .festival-card {
        padding: 1.25rem;
    }
    
    .festival-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .festival-card h4 {
        font-size: 1.1rem;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .festival-card {
        text-align: center;
    }
    
    .festival-icon {
        margin: 0 auto 1rem;
    }
    
    .festivals-highlight-section::before,
    .festivals-highlight-section::after {
        display: none;
    }
}

/* =============================================
   7. ANIMATIONS
   ============================================= */
@keyframes pulse-gold {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(199, 165, 90, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(199, 165, 90, 0.5);
    }
}

.festival-card:hover .festival-icon {
    animation: pulse-gold 1.5s ease-in-out infinite;
}

/* Best Seller badge animation */
.package-badge-featured {
    position: relative;
    overflow: hidden;
}

.package-badge-featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}