/* Ganna.Guide Custom Styles */
/* Base styles that complement Tailwind CDN */

:root {
    --background: #FAF9F6;
    --foreground: #1A1A1A;
    --accent: #8C5563;
    --accent-light: #B07A87;
    --gray-50: #FAFAF9;
    --gray-100: #F5F5F4;
    --gray-200: #E7E5E4;
    --gray-400: #A8A29E;
    --gray-500: #78716C;
    --gray-600: #57534E;
    --font-serif: 'Oswald', Impact, sans-serif;
    --font-sans: 'Comfortaa', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-sans);
    font-weight: 300;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

::selection {
    background: var(--accent);
    color: white;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--background); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 20px; }

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.font-serif { font-family: var(--font-serif); }
.font-sans { font-family: var(--font-sans); }

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(2.5rem);
    transition: all 1s ease-out;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Logo */
.nav-logo-img {
    display: block;
    object-fit: contain;
}

/* Navigation transitions */
.nav-scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}
.nav-scrolled .nav-logo-img {
    filter: brightness(0) saturate(100%);
}

/* Video modal */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.video-modal.active { display: flex; }

/* Admin styles */
.admin-sidebar { min-height: 100vh; }
.admin-sidebar a.active { background: rgba(140, 85, 99, 0.1); color: #8C5563; }

/* Pulse animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

/* Bounce animation */
@keyframes bounce {
    0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8, 0, 1, 1); }
    50% { transform: translateY(0); animation-timing-function: cubic-bezier(0, 0, 0.2, 1); }
}
.animate-bounce { animation: bounce 1s infinite; }

/* Snap scroll for reels */
.snap-x { scroll-snap-type: x mandatory; }
.snap-start { scroll-snap-align: start; }
