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

:root {
    --background: #FAF9F6;
    --foreground: #1A1A1A;
    --accent: #A77A5D;
    --accent-light: #C7A17A;
    --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(167, 122, 93, 0.12); color: #A77A5D; }

/* 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; }

/* Cookie banner */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 300;
    padding: 1rem;
    background: rgba(18, 18, 18, 0.96);
    color: white;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.25);
}
.cookie-banner__inner {
    max-width: 72rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.cookie-banner__text {
    font-size: 0.8rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
}
.cookie-banner__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.cookie-banner__link,
.cookie-banner__button {
    border-radius: 999px;
    padding: 0.75rem 1.25rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: all 0.2s ease;
}
.cookie-banner__link {
    color: white;
    background: rgba(255, 255, 255, 0.12);
    text-decoration: none;
}
.cookie-banner__link:hover { background: rgba(255, 255, 255, 0.2); }
.cookie-banner__button {
    color: white;
    background: var(--accent);
    border: 0;
    cursor: pointer;
}
.cookie-banner__button:hover { background: var(--accent-light); }

@media (max-width: 720px) {
    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
    }
    .cookie-banner__actions {
        justify-content: space-between;
    }
}
