/* 
   Hiatus Holidays - Custom Styles
   Complementing Tailwind CSS for premium boutique aesthetics
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --pine-green: #1B2B20;
    --walnut-brown: #5D4037;
    --warm-beige: #F5F5DC;
    --saffron: #F4C430;
    --alpine-blue: #87CEEB;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background-color: #fff;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Playfair Display', serif;
}

/* Premium Glassmorphism */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
    background: rgba(27, 43, 32, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--pine-green);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2c4434;
}

/* Utility Classes */
.text-pine { color: var(--pine-green); }
.bg-pine { background-color: var(--pine-green); }
.text-saffron { color: var(--saffron); }
.bg-saffron { background-color: var(--saffron); }

/* Cinematic Image Hover */
.cinematic-hover img {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.cinematic-hover:hover img {
    transform: scale(1.05);
}

/* FAQ Active State */
.faq-item.active .faq-question {
    color: var(--pine-green);
}

/* Custom Animation Delays */
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-500 { animation-delay: 500ms; }
