/* ===== CSS Variables ===== */
:root {
    /* Yellow - Golden Honey tones */
    --yellow-primary: #E5A830;
    --yellow-dark: #C48E1F;
    --yellow-light: #F4C454;
    --yellow-glow: rgba(229, 168, 48, 0.5);
    
    /* Green - Rich Herb/Olive tones */
    --green-primary: #4A6741;
    --green-dark: #3A5233;
    --green-light: #5C7D52;
    --green-glow: rgba(74, 103, 65, 0.4);
    
    /* Brown - Chocolate/Espresso tones */
    --brown-primary: #1C1410;
    --brown-soft: #2A1F1A;
    --brown-lighter: #3D302A;
    --brown-warm: #5C4A3D;
    
    /* Cream/Light accents */
    --cream-primary: #FDF6E9;
    --cream-warm: #F5E6D0;
    --cream-muted: rgba(253, 246, 233, 0.7);
    --cream-dim: rgba(253, 246, 233, 0.4);
    
    --font-display: 'Bebas Neue', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--brown-primary);
    color: var(--cream-primary);
    overflow-x: hidden;
    cursor: none;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: none;
}

button {
    cursor: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ===== Custom Cursor ===== */
.cursor-glow {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--yellow-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.2s ease, height 0.2s ease;
}

.cursor-glow.hover {
    width: 50px;
    height: 50px;
}

/* ===== Typography ===== */
h1, h2, h3 {
    font-family: var(--font-display);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
}

p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--cream-muted);
}

em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--yellow-primary);
}

.highlight {
    color: var(--yellow-primary);
    position: relative;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--green-light);
    display: block;
    margin-bottom: 1rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: none;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    transition: transform 0.4s var(--transition-smooth);
}

.btn:hover::before {
    transform: translateX(0);
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--yellow-primary);
    color: var(--brown-primary);
}

.btn-primary::before {
    background: var(--yellow-dark);
}

.btn-primary:hover {
    box-shadow: 0 10px 40px var(--yellow-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--cream-primary);
    border: 1px solid var(--green-primary);
}

.btn-secondary::before {
    background: var(--green-primary);
}

.btn-secondary:hover {
    color: var(--cream-primary);
}

.btn-full {
    width: 100%;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 5%;
    background: linear-gradient(to bottom, rgba(28, 20, 16, 0.9), transparent);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(28, 20, 16, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 5%;
}

.nav-logo {
    display: flex;
    font-family: var(--font-display);
    font-size: 2rem;
}

.logo-eat {
    color: var(--cream-primary);
}

.logo-me {
    color: var(--yellow-primary);
    margin-left: 0.2em;
}

.logo-image {
    height: 180px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s var(--transition-smooth);
}

.nav-logo:hover .logo-image {
    transform: scale(1.05);
}

.footer-logo-image {
    height: 280px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--cream-muted);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow-primary);
    transition: width 0.3s var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--cream-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--yellow-primary);
    color: var(--brown-primary);
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--yellow-light);
    box-shadow: 0 5px 30px var(--yellow-glow);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--cream-primary);
    transition: all 0.3s ease;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--brown-primary);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 70%, var(--green-glow), transparent 40%),
        radial-gradient(circle at 70% 30%, var(--yellow-glow), transparent 40%);
    opacity: 0.4;
}

.hero-bg-text {
    position: absolute;
    font-family: var(--font-display);
    font-size: clamp(8rem, 25vw, 20rem);
    color: var(--brown-lighter);
    white-space: nowrap;
    user-select: none;
    opacity: 0.3;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 2rem;
}

.hero-tagline {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-style: italic;
    color: var(--cream-muted);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title {
    font-size: clamp(5rem, 15vw, 14rem);
    line-height: 0.85;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    animation: fadeInUp 1s ease 0.4s both;
}

.title-me {
    color: var(--yellow-primary);
    animation-delay: 0.6s;
    position: relative;
}

.title-me::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    width: 100%;
    height: 0.08em;
    background: var(--yellow-primary);
    animation: expandWidth 0.8s ease 1.2s both;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--cream-muted);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1s both;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: fadeIn 1s ease 1.5s both;
}

.hero-scroll span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--cream-dim);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--yellow-primary), transparent);
    animation: scrollPulse 2s ease infinite;
}

/* ===== About Section ===== */
.about {
    padding: 10rem 5%;
    background: var(--brown-soft);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    aspect-ratio: 4/5;
    background: var(--brown-lighter);
    overflow: hidden;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--green-primary);
    z-index: -1;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brown-lighter), var(--brown-soft));
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.placeholder-icon {
    font-size: 5rem;
    opacity: 0.5;
}

.about-float-text {
    position: absolute;
    bottom: -2rem;
    right: -3rem;
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--yellow-primary);
    opacity: 0.2;
    writing-mode: vertical-lr;
    text-orientation: mixed;
}

.about-content h2 {
    margin-bottom: 2rem;
}

.about-text {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--brown-lighter);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--yellow-primary);
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cream-muted);
}

/* ===== Services Section ===== */
.services {
    padding: 10rem 5%;
    background: var(--brown-primary);
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--brown-soft);
    padding: 3rem 2.5rem;
    position: relative;
    border: 1px solid transparent;
    transition: all 0.5s var(--transition-smooth);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--yellow-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--transition-smooth);
}

.service-card:hover {
    border-color: var(--brown-lighter);
    transform: translateY(-10px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
    transform: scale(1.05);
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    border-color: var(--green-light);
}

.service-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--yellow-primary);
    color: var(--brown-primary);
    padding: 0.4rem 0.8rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.85);
}

.service-tagline {
    display: block;
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--yellow-primary);
    margin-bottom: 2rem;
}

.service-card.featured .service-tagline {
    color: var(--cream-warm);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--yellow-primary);
    transition: gap 0.3s ease;
}

.service-card.featured .service-link {
    color: var(--cream-primary);
}

.service-link:hover {
    gap: 1rem;
}

.service-link svg {
    width: 20px;
    height: 20px;
}

/* ===== Menu Section ===== */
.menu {
    padding: 10rem 5%;
    background: var(--brown-soft);
    position: relative;
    overflow: hidden;
}

.menu-bg-text {
    position: absolute;
    font-family: var(--font-display);
    font-size: clamp(8rem, 20vw, 15rem);
    color: var(--brown-lighter);
    white-space: nowrap;
    user-select: none;
    opacity: 0.3;
    right: -5%;
    bottom: 10%;
}

.menu-header {
    text-align: center;
    margin-bottom: 3rem;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.menu-tab {
    background: transparent;
    border: 1px solid var(--brown-lighter);
    color: var(--cream-muted);
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.menu-tab:hover,
.menu-tab.active {
    background: var(--green-primary);
    border-color: var(--green-primary);
    color: var(--cream-primary);
}

.menu-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: var(--brown-primary);
    border: 1px solid var(--brown-lighter);
    transition: all 0.4s var(--transition-smooth);
    overflow: visible;
    position: relative;
    border-radius: 12px;
}

.menu-item:hover {
    border-color: var(--yellow-primary);
    transform: translateY(-5px);
}

.menu-item-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brown-lighter), var(--brown-soft));
    font-size: 4rem;
    overflow: hidden;
}

.menu-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.menu-item-content {
    padding: 1.5rem;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.menu-item-header h4 {
    color: var(--cream-primary);
}

.price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--yellow-primary);
}

.menu-item-content p {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.spice-level {
    font-size: 0.8rem;
}

/* Daily Menu Sections */
.daily-menu {
    max-width: 1400px;
    margin: 0 auto;
}

.day-section {
    margin-bottom: 4rem;
}

.day-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--yellow-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--green-primary);
    display: inline-block;
}

/* Extras Section */
.extras-section {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    background: var(--brown-soft);
    border-radius: 12px;
    border: 1px solid var(--brown-lighter);
}

.extras-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--cream-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 1.5rem;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.extra-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--brown-lighter);
    border-radius: 8px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.extra-item:hover {
    transform: translateY(-2px);
    background: var(--brown-warm);
}

.extra-name {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--cream-primary);
}

.extra-price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--yellow-primary);
}

.menu-cta {
    text-align: center;
    margin-top: 4rem;
}

/* ===== Catering Section ===== */
.catering {
    padding: 10rem 5%;
    background: var(--brown-primary);
}

.catering-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.catering-content h2 {
    margin-bottom: 1.5rem;
}

.catering-content > p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.catering-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.catering-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--brown-lighter);
    color: var(--cream-muted);
}

.feature-icon {
    color: var(--green-light);
    font-weight: bold;
}

.catering-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--brown-lighter), var(--brown-soft));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.05);
}

.gallery-placeholder span {
    font-size: 4rem;
}

.gallery-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--cream-muted);
}

/* ===== Cocktails Section ===== */
.cocktails {
    padding: 10rem 5%;
    background: var(--brown-soft);
    position: relative;
    overflow: hidden;
}

.cocktails-bg-text {
    position: absolute;
    font-family: var(--font-display);
    font-size: clamp(10rem, 30vw, 25rem);
    color: var(--brown-lighter);
    white-space: nowrap;
    user-select: none;
    opacity: 0.15;
    left: -5%;
    top: 50%;
    transform: translateY(-50%);
}

.cocktails-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.cocktails-header p {
    font-size: 1.1rem;
    max-width: 500px;
    margin: 1rem auto 0;
}

.cocktails-showcase {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.cocktail-card {
    background: var(--brown-primary);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--brown-lighter);
    transition: all 0.4s var(--transition-smooth);
    position: relative;
}

.cocktail-card:hover {
    border-color: var(--yellow-primary);
    transform: translateY(-10px);
}

.cocktail-card.featured {
    background: linear-gradient(135deg, var(--brown-primary), var(--green-dark));
    border-color: var(--green-primary);
}

.cocktail-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yellow-primary);
    color: var(--brown-primary);
    padding: 0.4rem 1rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cocktail-image {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.cocktail-card h4 {
    color: var(--cream-primary);
    margin-bottom: 0.5rem;
}

.cocktail-card p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.cocktail-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--yellow-primary);
}

.cocktails-cta {
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.cocktails-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 10rem 5%;
    background: var(--brown-primary);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 5rem;
}

.testimonials-slider {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--brown-soft);
    padding: 3rem 2rem;
    border-left: 3px solid var(--yellow-primary);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content p {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--cream-primary);
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--green-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--cream-primary);
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--cream-primary);
}

.author-title {
    font-size: 0.8rem;
    color: var(--cream-muted);
}

/* ===== Order Section ===== */
.order {
    padding: 10rem 5%;
    background: linear-gradient(135deg, var(--brown-soft), var(--brown-primary));
}

.order-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.order-info h2 {
    margin-bottom: 1rem;
}

.order-info > p {
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.order-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order-option {
    position: relative;
}

.order-option input {
    position: absolute;
    opacity: 0;
}

.order-option label {
    display: block;
    padding: 1.5rem 2rem;
    background: var(--brown-primary);
    border: 2px solid var(--brown-lighter);
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-option input:checked + label {
    border-color: var(--yellow-primary);
    background: linear-gradient(135deg, var(--brown-primary), rgba(229, 168, 48, 0.1));
}

.option-title {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--cream-primary);
    margin-bottom: 0.25rem;
}

.option-desc {
    font-size: 0.85rem;
    color: var(--cream-muted);
}

.order-form-container {
    background: var(--brown-soft);
    padding: 3rem;
    border: 1px solid var(--brown-lighter);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cream-muted);
}

.form-group input,
.form-group textarea {
    background: var(--brown-primary);
    border: 1px solid var(--brown-lighter);
    padding: 1rem 1.25rem;
    color: var(--cream-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--yellow-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--cream-dim);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ===== Contact Section ===== */
.contact {
    padding: 8rem 5%;
    background: var(--brown-soft);
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header p {
    font-size: 1.1rem;
    margin-top: 1rem;
}

.contact-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-card {
    background: var(--brown-primary);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid var(--brown-lighter);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--yellow-primary);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-card h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--cream-primary);
}

.contact-card p {
    line-height: 1.8;
}

/* ===== Footer ===== */
.footer {
    background: var(--brown-primary);
    border-top: 1px solid var(--brown-lighter);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    gap: 4rem;
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--cream-muted);
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-col h5 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--cream-primary);
}

.footer-col a {
    display: block;
    color: var(--cream-muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--yellow-primary);
}

.footer-social h5 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--cream-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 1px solid var(--brown-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--cream-muted);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--yellow-primary);
    border-color: var(--yellow-primary);
    color: var(--brown-primary);
}

.footer-bottom {
    padding: 2rem 5%;
    border-top: 1px solid var(--brown-lighter);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--cream-dim);
}

.footer-wink {
    margin-left: 0.5rem;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 1;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.5;
        transform: scaleY(0.8);
    }
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .cocktails-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-links, .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .about-container,
    .catering-container,
    .order-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(4rem, 20vw, 8rem);
    }
    
    .about-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .catering-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-item.large {
        grid-row: auto;
    }
    
    .cocktails-showcase {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-ctas .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .menu-tab {
        padding: 0.6rem 1rem;
        font-size: 0.7rem;
    }
    
    .order-form-container {
        padding: 2rem 1.5rem;
    }
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--brown-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--yellow-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--yellow-light);
}

/* ===== Order Modal ===== */
.order-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.order-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--brown-soft);
    border-radius: 16px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    border: 1px solid var(--brown-lighter);
}

.order-modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--brown-lighter);
    color: var(--cream-primary);
    font-size: 1.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--yellow-primary);
    color: var(--brown-primary);
}

.modal-header {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--brown-lighter);
}

.modal-image {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--brown-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    flex-shrink: 0;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    flex: 1;
}

.modal-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--cream-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.modal-price {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--yellow-primary);
    display: block;
    margin-bottom: 0.5rem;
}

.modal-day {
    font-size: 0.85rem;
    color: var(--green-light);
    font-style: italic;
}

.modal-extras h4,
.modal-quantity h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--cream-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.extras-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.extra-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: var(--brown-lighter);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.extra-option:hover {
    background: var(--brown-warm);
}

.extra-option input {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid var(--cream-muted);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.extra-option input:checked + .checkmark {
    background: var(--yellow-primary);
    border-color: var(--yellow-primary);
}

.extra-option input:checked + .checkmark::after {
    content: '✓';
    color: var(--brown-primary);
    font-weight: bold;
    font-size: 0.9rem;
}

.option-name {
    flex: 1;
    color: var(--cream-primary);
    font-weight: 500;
}

.option-price {
    color: var(--yellow-light);
    font-family: var(--font-display);
    font-size: 1rem;
}

.modal-quantity {
    margin-bottom: 1.5rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.qty-btn {
    width: 45px;
    height: 45px;
    border: none;
    background: var(--brown-lighter);
    color: var(--cream-primary);
    font-size: 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: var(--yellow-primary);
    color: var(--brown-primary);
}

.qty-value {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--cream-primary);
    min-width: 50px;
    text-align: center;
}

.modal-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--brown-lighter);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.modal-total span:first-child {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--cream-primary);
    text-transform: uppercase;
}

.total-price {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--yellow-primary);
}

.modal-actions {
    text-align: center;
}

.btn-order {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    background: #25D366;
    border-color: #25D366;
    cursor: pointer !important;
    pointer-events: auto;
}

.btn-order:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: scale(1.02);
}

/* Make menu items clickable */
.menu-item {
    cursor: pointer;
}

.menu-item:hover {
    transform: translateY(-5px);
}

/* ===== Futuristic Floating Animations ===== */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(-5px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-1deg);
    }
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(229, 168, 48, 0.3), 0 0 40px rgba(229, 168, 48, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(229, 168, 48, 0.5), 0 0 60px rgba(229, 168, 48, 0.2);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(229, 168, 48, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(229, 168, 48, 0.8));
    }
}

/* Floating Menu Items */
.menu-item {
    animation: floatSlow 6s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.menu-item:nth-child(1) { animation-delay: 0s; }
.menu-item:nth-child(2) { animation-delay: 0.5s; }
.menu-item:nth-child(3) { animation-delay: 1s; }
.menu-item:nth-child(4) { animation-delay: 1.5s; }

.menu-item:hover {
    transform: translateY(-15px) scale(1.03);
    animation: glow 2s ease-in-out infinite;
    z-index: 10;
}

/* Floating Menu Images */
.menu-item-image {
    position: relative;
    overflow: visible;
}

.menu-item-image img,
.menu-item-image span {
    animation: float 4s ease-in-out infinite;
    transition: all 0.4s ease;
}

.menu-item:hover .menu-item-image img,
.menu-item:hover .menu-item-image span {
    animation: pulseGlow 1.5s ease-in-out infinite;
    transform: scale(1.1) translateY(-10px);
}

/* Futuristic Glow Border */
.menu-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--yellow-primary), var(--green-primary), var(--yellow-primary));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(8px);
}

.menu-item:hover::before {
    opacity: 0.6;
}

/* Floating Logo */
.logo-image {
    animation: float 5s ease-in-out infinite;
}

.nav-logo:hover .logo-image {
    animation: pulseGlow 1s ease-in-out infinite;
}

/* Floating About Image */
.about-img {
    animation: floatSlow 7s ease-in-out infinite;
}

.image-frame:hover .about-img {
    animation: pulseGlow 2s ease-in-out infinite;
    transform: scale(1.05);
}

/* Futuristic Service Cards */
.service-card {
    animation: floatSlow 8s ease-in-out infinite;
    position: relative;
}

.service-card:nth-child(1) { animation-delay: 0s; }
.service-card:nth-child(2) { animation-delay: 1s; }
.service-card:nth-child(3) { animation-delay: 2s; }

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 20px;
    background: radial-gradient(ellipse, rgba(229, 168, 48, 0.3), transparent);
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::after {
    opacity: 1;
}

/* Floating Cocktail Cards */
.cocktail-card {
    animation: floatSlow 6s ease-in-out infinite;
}

.cocktail-card:nth-child(1) { animation-delay: 0s; }
.cocktail-card:nth-child(2) { animation-delay: 0.7s; }
.cocktail-card:nth-child(3) { animation-delay: 1.4s; }
.cocktail-card:nth-child(4) { animation-delay: 2.1s; }

.cocktail-card:hover {
    animation: glow 2s ease-in-out infinite;
    transform: translateY(-15px) scale(1.05);
}

/* Glowing Day Titles */
.day-title {
    text-shadow: 0 0 20px rgba(229, 168, 48, 0.5);
    animation: pulseGlow 3s ease-in-out infinite;
}

/* Futuristic Extras Section */
.extras-section {
    position: relative;
    animation: glow 4s ease-in-out infinite;
}

.extra-item {
    position: relative;
    overflow: hidden;
}

.extra-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(229, 168, 48, 0.2), transparent);
    transition: left 0.5s ease;
}

.extra-item:hover::before {
    left: 100%;
}

/* Futuristic Hero Elements */
.hero-title {
    text-shadow: 0 0 40px rgba(229, 168, 48, 0.4);
}

.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

/* Neon Underline Effect */
.highlight {
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--yellow-primary);
    box-shadow: 0 0 10px var(--yellow-primary), 0 0 20px var(--yellow-primary);
    animation: pulseGlow 2s ease-in-out infinite;
}

@media (max-width: 480px) {
    .modal-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .modal-image {
        width: 150px;
        height: 150px;
    }
}
