/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', serif;
    background: #1a1410;
    color: #ffffff;
    line-height: 1.7;
    letter-spacing: 0.5px;
    overflow-x: hidden;
}

:root {
    --gold: #d4af37;
    --dark: #1a1410;
    --light: #f5f5f5;
    --gray: #a0a0a0;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.navbar__container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
}

.navbar__logo {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(1) contrast(1);
}

.navbar__menu {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.navbar__link {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.navbar__link:hover {
    color: var(--gold);
}

.navbar__link:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.navbar__hamburger:hover {
    transform: scale(1.1);
}

.navbar__hamburger span {
    width: 28px;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(11px, 11px);
}

.navbar__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('../images/terrace.jpg') center/cover no-repeat;
    animation: seaFlow 20s ease-in-out infinite;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

@keyframes seaFlow {
    0%, 100% {
        transform: scale(1) translateY(0);
    }
    50% {
        transform: scale(1.2) translateY(-50px);
    }
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.hero__location {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    animation: fadeInDown 1s ease-out 0.2s both;
}

.hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 10vw, 6rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    animation: fadeInDown 1s ease-out 0.4s both;
}

.hero__description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 3rem;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero__scroll {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
    font-family: 'Montserrat', sans-serif;
    animation: pulse 2s ease-in-out infinite 0.8s;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* ===== TERRACE SECTION ===== */
.terrace-section {
    padding: 7rem 4rem;
    background: #f5f0e8;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.terrace-wrapper {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.terrace-content {
    padding: 0 2rem;
}

.terrace-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c85a54;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.terrace-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #1a1410;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: 1px;
}

.terrace-title-italic {
    font-style: italic;
}

.terrace-description {
    font-family: 'Lora', serif;
    font-size: 1.15rem;
    color: #666666;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.terrace-location {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999999;
    font-weight: 500;
}

.terrace-image {
    overflow: hidden;
    border-radius: 2px;
    height: 700px;
}

.terrace-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.terrace-svg {
    width: 100%;
    height: 100%;
    display: block;
    background: #ffffff;
}

.terrace-img-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    padding: 0;
}

.logo-line {
    stroke: #1a1410;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: drawLogo 1.5s linear forwards;
}

.line-1 { animation-delay: 0s; }
.line-2 { animation-delay: 0.3s; }
.line-3 { animation-delay: 0.6s; }
.line-4 { animation-delay: 0.9s; }
.line-5 { animation-delay: 1.2s; }
.line-6 { animation-delay: 1.5s; }
.line-7 { animation-delay: 1.8s; }
.line-8 { animation-delay: 2.1s; }
.line-9 { animation-delay: 2.4s; }
.line-10 { animation-delay: 2.7s; }
.line-11 { animation-delay: 3s; }
.line-12 { animation-delay: 3.3s; }
.line-13 { animation-delay: 3.6s; }
.line-14 { animation-delay: 3.9s; }

@keyframes drawLogo {
    from {
        stroke-dasharray: 1000;
        stroke-dashoffset: 1000;
        opacity: 0;
    }
    to {
        stroke-dasharray: 1000;
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

/* ===== SECTIONS ===== */
.section {
    padding: 6rem 3rem;
    background: #1a1410;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.section--alt {
    background: #251f19;
}

/* ===== DINING SECTION ===== */
.dining-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dining-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('../images/dinninroom.jpg') center/cover no-repeat;
    animation: seaFlow 20s ease-in-out infinite;
}

.dining-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
}

.dining-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.dining-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.dining-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #cccccc;
    margin-bottom: 2rem;
    font-weight: 400;
}

.dining-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-style: italic;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
    font-weight: 400;
}

/* ===== KITCHEN SECTION ===== */
.kitchen-section {
    padding: 6rem 3rem;
    background: #d97060;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kitchen-wrapper {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.kitchen-images {
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 2rem;
    height: 600px;
}

.kitchen-img {
    border-radius: 2px;
    object-fit: cover;
}

.kitchen-img-main {
    width: 100%;
    height: 80%;
}

.kitchen-img-secondary {
    width: 60%;
    height: 50%;
}

.kitchen-video {
    object-fit: cover;
    pointer-events: none !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

/* Completely hide all video controls across all browsers */
video {
    pointer-events: none !important;
}


/* Webkit browsers (Chrome, Safari) */
video::-webkit-media-controls {
    display: none !important;
}

video::-webkit-media-controls-panel {
    display: none !important;
}

video::-webkit-media-controls-play-button {
    display: none !important;
}

video::-webkit-media-controls-timeline {
    display: none !important;
}

video::-webkit-media-controls-current-time-display {
    display: none !important;
}

video::-webkit-media-controls-time-remaining-display {
    display: none !important;
}

video::-webkit-media-controls-mute-button {
    display: none !important;
}

video::-webkit-media-controls-volume-slider {
    display: none !important;
}

video::-webkit-media-controls-fullscreen-button {
    display: none !important;
}

video::-webkit-media-controls-enclosure {
    display: none !important;
}

/* Firefox controls */
video::-moz-media-controls {
    display: none !important;
}

.kitchen-content {
    padding: 0 2rem;
}

.kitchen-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.kitchen-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.kitchen-description {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 300;
}

.kitchen-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.kitchen-info-item {
    padding: 0;
}

.kitchen-info-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0.7;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.kitchen-info-value {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 400;
}

.section__container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section__container--reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.section__container--reverse > * {
    direction: ltr;
}

.section__content {
    grid-column: 1;
}

.section__image {
    grid-column: 2;
    overflow: hidden;
    border-radius: 2px;
    height: 400px;
}

.section__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-style: italic;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.section__text {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.9;
    color: var(--gray);
    font-weight: 300;
}

.section__subtitle {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* ===== MENU SECTION ===== */
.menu-section {
    padding: 6rem 3rem;
    background: #f5f0e8;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-wrapper {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.menu-content {
    padding: 0 2rem;
}

.menu-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c85a54;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.menu-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #1a1410;
    margin-bottom: 3rem;
    line-height: 1.1;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.menu-item {
    border-bottom: 1px solid #e5ddd1;
    padding-bottom: 2rem;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999999;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.menu-item-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #1a1410;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.menu-item-ingredients {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999999;
    font-weight: 400;
}

.menu-image {
    overflow: hidden;
    border-radius: 2px;
    height: 700px;
}

.menu-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menu-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* ===== COCKTAILS SECTION ===== */
.cocktails-section {
    padding: 6rem 3rem;
    background: #1a1410;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cocktails-wrapper {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.cocktails-content {
    padding: 0 2rem;
}

.cocktails-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.cocktails-description {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: #999999;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 300;
}

.cocktails-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.cocktails-info-item {
    padding: 0;
}

/* Drinks menu in The Alchemy section */
.drinks-menu {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #444;
}

.drinks-menu .category-title {
    color: #d4af37;
    cursor: pointer;
    transition: color 0.3s ease;
}

.drinks-menu .category-title:hover {
    color: #ffffff;
}

.drinks-menu .toggle-icon {
    color: #d4af37;
    margin-left: 0.5rem;
}

.drinks-menu .category-content {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 4px;
    margin-top: 1rem;
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.drinks-menu .menu-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
}

.drinks-menu .menu-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.drinks-menu .item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.drinks-menu .item-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #ffffff !important;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex: 1;
}

.drinks-menu .item-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #d4af37 !important;
    font-weight: 500;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.drinks-menu .item-description {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: #bbbbbb !important;
    line-height: 1.5;
    margin: 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.cocktails-info-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #666666;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.cocktails-info-value {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 400;
}

.cocktails-image {
    overflow: hidden;
    border-radius: 2px;
    height: 500px;
}

.cocktails-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== FULL MENU SECTION ===== */
.full-menu-section {
    padding: 6rem 3rem;
    background: #f5f0e8;
    min-height: 100vh;
}

.full-menu-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.full-menu-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #1a1410;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.full-menu-subtitle {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    color: #999999;
    margin-bottom: 4rem;
    font-weight: 300;
}

.menu-category {
    margin-bottom: 1rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid rgba(26, 20, 16, 0.1);
}

.menu-category:last-child {
    border-bottom: none;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: #1a1410;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.category-note {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: #999999;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.menu-category-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.9rem;
}

.full-menu-item {
    border-left: 2px solid #d97060;
    padding-left: 1.5rem;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.25rem;
    gap: 1rem;
}

.item-name {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #1a1410;
}

.item-price {
    font-family: 'Lora', serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #d97060;
    white-space: nowrap;
}

.item-description {
    font-family: 'Lora', serif;
    font-size: 0.66rem;
    color: #666666;
    line-height: 1.2;
    font-weight: 300;
}

@media (max-width: 768px) {
    /* Navbar improvements */
    .navbar {
        padding: 1rem 0;
    }

    .navbar__container {
        padding: 0 1.5rem;
    }

    .navbar__logo {
        height: 40px;
    }

    .navbar__menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        width: 100%;
    }

    .navbar__menu.active {
        display: flex;
    }

    .navbar__hamburger {
        display: flex;
    }

    .navbar__link {
        font-size: 1rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.3);
        display: block;
        width: 100%;
    }

    .navbar__link::after {
        display: none;
    }

    /* General improvements */
    body {
        line-height: 1.7;
    }

    .full-menu-section {
        padding: 4rem 2rem;
    }

    .full-menu-title {
        font-size: 2.5rem;
    }

    .full-menu-subtitle {
        font-size: 1rem;
    }

    .category-title {
        font-size: 1rem;
    }

    .item-name {
        font-size: 1.1rem;
    }

    .item-price {
        font-size: 0.95rem;
    }

    .item-description {
        font-size: 0.9rem;
    }
}

/* ===== NIGHT SECTION ===== */
.night-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    clip-path: inset(0);
}

.night-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.night-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.night-bg-video::-webkit-media-controls {
    display: none !important;
}

/* Reservation Modal */
.reserve-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.reserve-modal.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.reserve-modal-content {
    background: #f5f0e8 !important;
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2001;
    color: #1a1410 !important;
}

.reserve-modal-icon {
    font-size: 3.5rem;
    color: #d97060;
    margin-bottom: 1.5rem;
    animation: scaleIn 0.5s ease;
}

.reserve-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    color: #1a1410;
    margin-bottom: 1.2rem;
    font-weight: 400;
    line-height: 1.2;
}

.reserve-modal-text {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    color: #1a1410;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.reserve-modal-subtext {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.reserve-modal-button {
    background: #1a1410;
    color: #f5f0e8;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.reserve-modal-button:hover {
    background: #d97060;
    color: white;
}

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

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* Inquiry Modal */
.inquiry-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.inquiry-modal.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.inquiry-modal-content {
    background: #f5f0e8;
    padding: 3rem 2.5rem;
    border-radius: 8px;
    text-align: left;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.inquiry-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.inquiry-modal-close:hover {
    color: #1a1410;
}

.inquiry-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1a1410;
    margin: 0 0 0.5rem 0;
    font-weight: 400;
}

.inquiry-modal-subtitle {
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 1.5rem;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.inquiry-group {
    display: flex;
    flex-direction: column;
}

.inquiry-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999999;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.inquiry-group input,
.inquiry-group select,
.inquiry-group textarea {
    padding: 0.8rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #d4c9bc;
    color: #1a1410;
    font-family: 'Lora', serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    resize: vertical;
}

.inquiry-group input::placeholder,
.inquiry-group textarea::placeholder {
    color: #c4b5a0;
}

.inquiry-group input:focus,
.inquiry-group select:focus,
.inquiry-group textarea:focus {
    outline: none;
    border-bottom-color: #1a1410;
}

.inquiry-group select {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1410' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 16px;
    padding-right: 20px;
}

.inquiry-group select option {
    background: #ffffff;
    color: #1a1410;
}

.inquiry-button {
    padding: 1rem 1.5rem;
    background: #1a1410;
    color: #f5f0e8;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.inquiry-button:hover {
    background: #d97060;
    transform: translateY(-2px);
}

.night-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.night-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 2rem;
}

.night-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 15vw, 10rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.night-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 400;
}

/* ===== EVENTS SECTION ===== */
.events-section {
    padding: 6rem 3rem;
    background: #f5f0e8;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.events-wrapper {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.events-image {
    overflow: hidden;
    border-radius: 8px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f7f4;
}

.events-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 1rem;
}

.events-content {
    padding: 0 2rem;
}

.events-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c85a54;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.events-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #1a1410;
    margin-bottom: 3rem;
    line-height: 1.1;
}

.events-list {
    margin-bottom: 3rem;
}

.events-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5ddd1;
}

.events-item:last-child {
    border-bottom: 2px solid #d4c9bc;
}

.events-item-name {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    color: #1a1410;
    font-weight: 400;
}

.events-item-capacity {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999999;
    font-weight: 500;
}

.events-button {
    padding: 1rem 2rem;
    background: transparent;
    color: #1a1410;
    border: 1px solid #1a1410;
    border-radius: 0px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.events-button:hover {
    background: #1a1410;
    color: #ffffff;
}

/* ===== RESERVE SECTION ===== */
.reserve-section {
    padding: 6rem 3rem;
    background: #f5f0e8;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.reserve-wrapper {
    width: 100%;
    max-width: 600px;
}

.reserve-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 0px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.reserve-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c85a54;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.reserve-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #1a1410;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.reserve-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999999;
    margin-bottom: 2.5rem;
}

.reserve-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reserve-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.reserve-group {
    display: flex;
    flex-direction: column;
}

.reserve-group.full {
    grid-column: 1 / -1;
}

.reserve-field-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999999;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.reserve-group input,
.reserve-group select {
    padding: 0.8rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #d4c9bc;
    color: #1a1410;
    font-family: 'Lora', serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.reserve-group input::placeholder {
    color: #c4b5a0;
}

.reserve-group input:focus,
.reserve-group select:focus {
    outline: none;
    border-bottom-color: #1a1410;
}

.reserve-group select {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1410' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 20px;
    padding-right: 25px;
}

.reserve-group select option {
    background: #ffffff;
    color: #1a1410;
}

/* Time input group */
.time-input-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.time-select {
    flex: 1;
    padding: 0.8rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #d4c9bc;
    color: #1a1410;
    font-family: 'Lora', serif;
    font-size: 1rem;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1410' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 16px;
    padding-right: 20px;
    transition: border-color 0.3s ease;
}

.time-select:focus {
    outline: none;
    border-bottom-color: #1a1410;
}

.time-select option {
    background: #ffffff;
    color: #1a1410;
    padding: 0.5rem;
}

.time-separator {
    color: #1a1410;
    font-size: 1.2rem;
    font-weight: 300;
    padding: 0.8rem 0;
}

.reserve-button {
    padding: 1.2rem;
    background: #1a1410;
    color: #ffffff;
    border: none;
    border-radius: 0px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.reserve-button:hover {
    background: #2a2315;
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
    background: #0f0c0a;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 3rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #666666;
    margin: 0 0 0.8rem 0;
    font-weight: 500;
}

.footer-value {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1.8;
    margin: 0;
    font-weight: 300;
}

.footer-value a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-value a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-copyright {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #666666;
    margin: 0;
    font-weight: 400;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-link:hover {
    color: #ffffff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .section__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section__image {
        grid-column: 1;
    }

    .section__container--reverse {
        direction: ltr;
    }

    .section__container--reverse .section__image {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1.5rem 0;
    }

    .navbar__container {
        padding: 0 1.5rem;
    }

    .navbar__menu {
        gap: 1.5rem;
    }

    .navbar__link {
        font-size: 0.65rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .section__container {
        gap: 2rem;
    }

    .section__image {
        height: 300px;
    }

    .hero__title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .form__row {
        grid-template-columns: 1fr;
    }

    .menu__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .navbar__menu {
        gap: 1rem;
    }

    .navbar__link {
        font-size: 0.6rem;
    }

    .menu__grid {
        grid-template-columns: 1fr;
    }

    .hero__title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .section__title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }
}

/* Accordion Styles */
.category-header {
    cursor: pointer;
    user-select: none;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.category-header:hover {
    padding-left: 10px;
}

.toggle-icon {
    font-size: 14px;
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.category-header.expanded .toggle-icon {
    transform: rotate(180deg);
}

.category-content {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 1000px;
    }
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 768px) {
    /* Reset and base */
    * {
        box-sizing: border-box;
    }

    /* Navbar */
    .navbar {
        padding: 1rem 0;
    }

    .navbar__container {
        padding: 0 1rem;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .navbar__logo {
        height: 35px;
        flex-shrink: 0;
    }

    .navbar__menu {
        gap: 0.8rem;
        flex-wrap: wrap;
        justify-content: flex-end;
        width: 100%;
        order: 3;
    }

    .navbar__link {
        font-size: 0.55rem;
        letter-spacing: 0.1em;
    }

    /* Hero */
    .hero {
        min-height: 100vh;
        padding: 0;
    }

    .hero__content {
        padding: 3rem 1.5rem;
    }

    .hero__title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero__description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .hero__scroll {
        font-size: 0.65rem;
    }

    /* Sections */
    .terrace-wrapper,
    .events-wrapper,
    .reserve-wrapper,
    .kitchen-wrapper,
    .cocktails-wrapper,
    .menu-wrapper {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .terrace-image,
    .menu-image {
        height: 350px !important;
    }

    .kitchen-images {
        flex-direction: column !important;
        gap: 1rem !important;
        height: auto !important;
        align-items: stretch !important;
    }

    .kitchen-img-main,
    .kitchen-img-secondary,
    .kitchen-video {
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        object-fit: scale-down !important;
        background: #1a1410;
    }

    .cocktails-image {
        height: 300px !important;
    }

    /* Titles and text */
    h1 {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.6rem !important;
    }

    h3 {
        font-size: 1.2rem !important;
    }

    /* Section padding */
    section {
        padding: 2.5rem 1.5rem !important;
    }

    .terrace-section,
    .menu-section,
    .events-section,
    .reserve-section,
    .cocktails-section {
        padding: 3rem 1.5rem !important;
    }

    .kitchen-section {
        padding: 2.5rem 1.5rem !important;
    }

    /* Content alignment */
    .terrace-content,
    .kitchen-content,
    .events-content,
    .cocktails-content,
    .menu-content {
        padding: 0 !important;
    }

    /* Labels and styling */
    .terrace-label,
    .menu-label,
    .events-label,
    .kitchen-label,
    .reserve-label {
        font-size: 0.7rem;
        margin-bottom: 0.8rem;
    }

    .terrace-title,
    .menu-title,
    .events-title,
    .kitchen-title,
    .reserve-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        letter-spacing: 0.5px;
    }

    .terrace-description,
    .kitchen-description,
    .cocktails-description {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    /* Events section */
    .events-image {
        height: 280px !important;
        padding: 1rem !important;
    }

    .events-img {
        max-width: 100%;
        height: 100%;
    }

    .events-list {
        margin-bottom: 1.5rem;
    }

    .events-item {
        padding: 1rem 0;
        border-bottom: 1px solid #e5ddd1;
    }

    .events-item-name {
        font-size: 1rem;
    }

    .events-item-capacity {
        font-size: 0.8rem;
    }

    .events-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.7rem;
    }

    /* Reserve section */
    /* Reserve section */
    .reserve-card {
        padding: 2rem 1.5rem;
        box-shadow: none;
    }

    .reserve-title {
        font-size: 1.6rem;
    }

    .reserve-form {
        gap: 1.5rem;
    }

    .reserve-row {
        gap: 1rem;
    }

    .reserve-group input,
    .reserve-group select,
    .time-select {
        padding: 0.7rem 0;
        font-size: 1rem;
    }

    .reserve-button {
        padding: 1rem;
        font-size: 0.75rem;
        margin-top: 0.5rem;
    }

    /* Time input on mobile */
    .time-input-group {
        gap: 0.3rem;
    }

    .time-separator {
        padding: 0.7rem 0;
    }

    /* Menu items */
    .menu-category {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .category-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .menu-category-items {
        gap: 0.8rem;
    }

    .full-menu-item {
        border-left: 2px solid #d97060;
        padding-left: 1rem;
    }

    .item-header {
        flex-direction: column;
        gap: 0.25rem;
    }

    .item-name {
        font-size: 0.85rem;
    }

    .item-price {
        font-size: 0.8rem;
    }

    .item-description {
        font-size: 0.7rem;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 2rem 1.5rem !important;
    }

    .footer-info {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .footer-label {
        font-size: 0.65rem;
    }

    .footer-value {
        font-size: 0.9rem;
    }

    /* Modals */
    .reserve-modal-content,
    .inquiry-modal-content {
        padding: 2rem 1.5rem !important;
        max-width: 95% !important;
    }

    .reserve-modal-title,
    .inquiry-modal-title {
        font-size: 1.5rem;
    }

    .inquiry-form {
        gap: 1.2rem;
    }

    .inquiry-label {
        font-size: 0.65rem;
        margin-bottom: 0.6rem;
    }

    .inquiry-group input,
    .inquiry-group select,
    .inquiry-group textarea {
        padding: 0.6rem 0;
        font-size: 1rem;
    }

    .inquiry-button {
        padding: 0.9rem 1.5rem;
        font-size: 0.75rem;
    }

    /* Dining section */
    .dining-section {
        min-height: 70vh;
    }

    /* Cocktails content */
    .cocktails-info {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
