/* ==========================================================================
   Tasveer Studio - Minimal Custom Styles (Animations & Fonts)
   ========================================================================== */

/* --- Font Imports --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');
@import url('https://fonts.cdnfonts.com/css/butler');

/* --- Keyframe Animations --- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollScroll {
    0% {
        top: -25px;
    }
    50% {
        top: 60px;
    }
    100% {
        top: 60px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Custom Animation Classes for Tailwind Integration */
.animate-fade-up-1 {
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
}
.animate-fade-up-2 {
    animation: fadeUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
}
.animate-fade-up-3 {
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.9s;
}
.animate-fade-up-4 {
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.2s;
}

.animate-scroll-dot {
    animation: scrollScroll 2.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.animate-fade-in-delayed {
    animation: fadeIn 1.5s ease forwards;
    animation-delay: 1.8s;
}

/* Hero Thumbnail Fallback background helper */
.hero-thumbnail {
    background-image: url('../images/uploads/hero_thumbnail.jpg');
}

/* Mobile Navigation Drawer styles */
@media (max-width: 767px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: #0a0a0a;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        padding: 50px;
        transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 105;
        gap: 30px;
    }
    .nav-menu.active {
        right: 0;
    }
}

/* Hide scrollbar for standard design simplicity */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #000;
}
::-webkit-scrollbar-thumb {
    background: #333;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* --- Modern Scroll Reveal Animations --- */
.reveal-fade-up {
    transform: translateY(30px);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-fade-up.active {
    transform: translateY(0);
    opacity: 1;
}

/* --- FAQ Accordion Transition --- */
.faq-content {
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Staggered Converging Scroll Reveals --- */
.reveal-left {
    transform: translateX(-40px);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.active {
    transform: translateX(0);
    opacity: 1;
}

.reveal-right {
    transform: translateX(40px);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.active {
    transform: translateX(0);
    opacity: 1;
}

/* --- Stagger delays for scroll reveal --- */
.delay-75 { transition-delay: 75ms !important; }
.delay-100 { transition-delay: 100ms !important; }
.delay-150 { transition-delay: 150ms !important; }
.delay-200 { transition-delay: 200ms !important; }
.delay-300 { transition-delay: 300ms !important; }
.delay-400 { transition-delay: 400ms !important; }
.delay-500 { transition-delay: 500ms !important; }
.delay-600 { transition-delay: 600ms !important; }
.delay-700 { transition-delay: 700ms !important; }
.delay-800 { transition-delay: 800ms !important; }

/* --- Pulsing play button animate-pulse-slow --- */
@keyframes pulseSlow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}
.animate-pulse-slow {
    animation: pulseSlow 2.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

/* --- General Scroll Reveal Animation --- */
.reveal-on-scroll {
    transform: translateY(40px);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-on-scroll.active {
    transform: translateY(0);
    opacity: 1;
}

/* --- Calligraphy High-contrast Highlight style override --- */
.highlight {
    font-family: 'Saol-Display', 'Playfair Display', Georgia, serif !important;
    font-style: italic !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    font-size: 1.05em !important;
    font-weight: 400 !important;
    line-height: normal !important;
    display: inline-block;
}

/* --- Button Premium Interactive Animation & Transition lifts --- */
.hero-cta, #blog-explore-cta, .contact-submit-btn, #photography-load-more, #mid-banner a, .process-btn {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.hero-cta:hover, #blog-explore-cta:hover, .contact-submit-btn:hover, #photography-load-more:hover, #mid-banner a:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15) !important;
}

/* ==========================================================================
   Homepage Booking Form - Modern Light Theme UI & Animations
   ========================================================================== */

/* Subtle Light Ambient Glow Animation */
@keyframes ambientGlowPulseLight {
    0%, 100% {
        opacity: 0.45;
        transform: scale(1) translate(0, 0);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.15) translate(25px, -25px);
    }
}
.animate-ambient-glow-light {
    animation: ambientGlowPulseLight 9s ease-in-out infinite;
}

/* Light Luxury Booking Card Container */
.booking-glass-card-light {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.05), 0 0 30px rgba(0, 0, 0, 0.02);
    transition: border-color 0.5s ease, box-shadow 0.5s ease;
}
.booking-glass-card-light:hover {
    border-color: rgba(0, 0, 0, 0.18);
    box-shadow: 0 25px 60px -8px rgba(0, 0, 0, 0.09), 0 0 40px rgba(0, 0, 0, 0.04);
}

/* Light Theme Event Option Pills */
.event-pill {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.7);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.event-pill:hover {
    background: rgba(0, 0, 0, 0.07);
    color: #000000;
    border-color: rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}
.event-pill.active {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Floating Input Group Effects - Light Theme */
.booking-input-group input, 
.booking-input-group textarea, 
.booking-input-group select {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #000000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.booking-input-group input:focus, 
.booking-input-group textarea:focus, 
.booking-input-group select:focus {
    background: #ffffff;
    border-color: #000000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
    outline: none;
}
.booking-input-group label {
    transition: all 0.3s ease;
}

/* Date Picker Indicator for Light Mode */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: opacity(0.6);
    cursor: pointer;
    transition: opacity 0.3s;
}
input[type="date"]::-webkit-calendar-picker-indicator:hover {
    filter: opacity(1);
}

/* Light Theme Animated Submit Button */
.booking-submit-btn-light {
    position: relative;
    overflow: hidden;
    background: #000000;
    color: #ffffff;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.booking-submit-btn-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.7s ease;
}
.booking-submit-btn-light:hover::before {
    left: 100%;
}
.booking-submit-btn-light:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

/* Checkmark Success Animation */
@keyframes checkPop {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    70% {
        transform: scale(1.2) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}
.animate-check-pop {
    animation: checkPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}




