/* ============================================
   THE NAE BAR - Premium Mobile Bartending
   Color Palette: Black (#0a0a0a) + Gold (#c9a227)
   ============================================ */

:root {
    /* Colors */
    --black: #0a0a0a;
    --black-light: #141414;
    --black-lighter: #1a1a1a;
    --gold: #c9a227;
    --gold-light: #d4b445;
    --gold-dark: #a88a1f;
    --cream: #f5f0e6;
    --white: #ffffff;
    --gray: #888888;
    --gray-dark: #444444;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;
    
    /* Transitions */
    --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-lg);
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0) 100%);
    transition: background 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    padding: var(--space-xs) var(--space-lg);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    list-style: none;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    padding: var(--space-xs) 0;
    transition: color 0.3s var(--ease-out);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: transparent;
    border: 1px solid var(--gold);
    padding: 0.75rem 1.5rem !important;
    transition: all 0.3s var(--ease-out) !important;
}

.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--black) !important;
}

.nav-cta::after {
    display: none !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold); /* Changed from white to gold */
    transition: all 0.3s var(--ease-out);
}
/* ============================================
   HERO SECTION WITH VIDEO
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 0 20px;
    max-width: 800px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: var(--space-sm);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s var(--ease-out) both;
}

.gold-text {
    color: var(--gold);
    font-style: italic;
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin: 0 auto var(--space-lg);
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s var(--ease-out) 0.2s both;
}

.hero-cta-group {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s var(--ease-out) 0.4s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 162, 39, 0.1);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    z-index: 3;
    animation: fadeIn 1s var(--ease-out) 1.2s both;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================
   ABOUT / MEET THE BARTENDER SECTION
   ============================================ */

.about-section {
    padding: var(--space-2xl) var(--space-md);
    background: var(--black-light);
}

.section-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    animation: fadeInUp 1s var(--ease-out) both;
}

.label-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.label-text {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    animation: fadeInUp 1s var(--ease-out) 0.2s both;
}

.image-frame {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.image-wrapper {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--black-lighter);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: all 0.6s var(--ease-out);
}

.image-frame:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.frame-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    border-color: var(--gold);
    border-style: solid;
    z-index: 2;
}

.frame-corner-tl {
    top: -15px;
    left: -15px;
    border-width: 2px 0 0 2px;
}

.frame-corner-tr {
    top: -15px;
    right: -15px;
    border-width: 2px 2px 0 0;
}

.frame-corner-bl {
    bottom: -15px;
    left: -15px;
    border-width: 0 0 2px 2px;
}

.frame-corner-br {
    bottom: -15px;
    right: -15px;
    border-width: 0 2px 2px 0;
}

.about-text {
    animation: fadeInUp 1s var(--ease-out) 0.4s both;
}

.about-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: var(--space-sm);
    color: var(--white);
}

.about-subtitle {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: var(--space-md);
    font-style: italic;
}

.about-description {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: var(--space-sm);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: var(--space-md);
    transition: all 0.3s var(--ease-out);
}

.text-link svg {
    transition: transform 0.3s var(--ease-out);
}

.text-link:hover {
    color: var(--gold-light);
}

.text-link:hover svg {
    transform: translateX(5px);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--black);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
}

.footer-text {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
}

.footer-text .gold-text {
    color: var(--gold);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scrollPulse {
    0%, 100% { 
        opacity: 1;
        transform: scaleY(1);
    }
    50% { 
        opacity: 0.5;
        transform: scaleY(0.8);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        text-align: center;
    }
    
    .image-frame {
        max-width: 400px;
    }
    
    .section-label {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: var(--space-sm) var(--space-md);
    }
    
      .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-lg);
        z-index: 999;
        overflow-y: auto;
        padding: 80px 20px;
        opacity: 0;
        transition: opacity 0.4s ease, backdrop-filter 0.4s ease;
    }
    
     body.modal-open {
        overflow: hidden;
    }
    
    .nav-links.active {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        height: 100vh !important; /* Force full viewport height */
        width: 100vw !important; /* Force full viewport width */
          animation: fadeIn 0.4s ease forwards;
    }
        .nav-links.active li {
        opacity: 0;
        transform: translateY(20px);
        animation: slideUp 0.4s ease forwards;
    }
    
    .nav-links.active li:nth-child(1) {
        animation-delay: 0.1s;
    }
    
    .nav-links.active li:nth-child(2) {
        animation-delay: 0.2s;
    }
    
    .nav-links.active li:nth-child(3) {
        animation-delay: 0.3s;
    }
    
    .nav-links.active li:nth-child(4) {
        animation-delay: 0.4s;
    }
    .nav-links a {
        font-size: 1.2rem;
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .about-section {
        padding: var(--space-xl) var(--space-md);
    }
    
    .image-frame {
        max-width: 300px;
    }
    
    .frame-corner {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Slide up animation for menu items */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}