:root {
    --color-gold: #d4af37;
    --color-dark-green: #2C3826;
    --color-light-green: #33442A;
    --color-cream: #FEEEBC;
    --color-text-light: #A4AF8B;
    --color-text-dark: #746C51;
    --color-white: #fff;
    --color-black: #000;
    --color-light-cream: #f4f1e8;
    --color-menu-text: #D8E1D1;
    --color-menu-text-light: #E7F1E1;
    --color-menu-text-muted: #C9D7C5;
    --color-menu-text-dark: #ACB8A8;
    --color-divider: #CCBD8C;
    --color-divider-dark: #8A7F5E;
    --color-divider-light: #BFB288;
    --color-divider-cream: #C2B68F;
    --transition-fast: all 0.3s ease;
    --transition-medium: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.8s ease;
    --transition-menu: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
    --z-mobile-menu: 1002;
    --z-mobile-header: 1001;
    --z-fullpage-menu: 999;
    --z-sidebar: 10000;
}

@font-face {
    font-family: 'FabiolaCapitals';
    src: url('../fonts/FabiolaCapitals-Regular.woff2') format('woff2'),
        url('../fonts/FabiolaCapitals-Regular.woff') format('woff'),
        url('../fonts/FabiolaCapitals-Regular.ttf') format('truetype'),
        url('../fonts/FabiolaCapitals-Regular.eot') format('embedded-opentype'),
        url('../fonts/FabiolaCapitals-Regular.svg') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family:'Bordonaro-Spur';
    src: url('../fonts/Bordonaro-Spur.eot');
	src: url('../fonts/Bordonaro-Spur.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Bordonaro-Spur.woff2') format('woff2'),
		url('../fonts/Bordonaro-Spur.woff') format('woff'),
		url('../fonts/Bordonaro-Spur.ttf') format('truetype'),
		url('../fonts/Bordonaro-Spur.otf') format('opentype'),
		url('../fonts/Bordonaro-Spur.svg') format('svg');
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+0021-01D4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
  -webkit-user-drag: none;   /* Safari/Chrome */
  user-select: none;         /* Metin seçimini engeller */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

body {
    overflow: hidden;
    height: 100vh;
}

body.dragging {
    cursor: grabbing;
    user-select: none;
}

body.menu-open {
    overflow: hidden;
}

/* ===== MOBILE HEADER ===== */
.mobile-header {
    position: fixed;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--color-dark-green);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    z-index: var(--z-mobile-header);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: top 0.3s ease-in-out;
}

.mobile-header.show {
    top: 0;
}

.mobile-lang {
    color: var(--color-cream);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    text-decoration: none;
}

.mobile-logo {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-gold);
    letter-spacing: 2px;
    transform: rotate(90deg);
}

.mobile-logo img {
    height: 70px;
}

.mobile-menu-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: var(--z-mobile-menu);
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background-color: var(--color-cream);
    margin: 2px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-button.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background-color: var(--color-gold);
}

.mobile-menu-button.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-button.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background-color: var(--color-gold);
}

/* ===== FULL PAGE MENU ===== */
.fullpage-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--color-dark-green);
    z-index: var(--z-fullpage-menu);
    transform: translateX(-100%);
    transition: var(--transition-menu);
    display: flex;
    flex-direction: column;
}

.fullpage-menu.active {
    transform: translateX(0);
}

.menu-content {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    grid-column-gap: 5rem;
    height: 100vh;
    padding: 0;
}

.menu-divider {
    background: var(--color-light-green);
    width: 1px;
    height: 70%;
    align-self: center;
    justify-self: center;
}

.menu-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0 2rem 180px;
    background: transparent;
    height: 100vh;
}

.fullpage-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.fullpage-nav-list li {
    margin-bottom: 0;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease forwards;
}

.fullpage-nav-list li:nth-child(1) {
    animation-delay: 0.1s;
}

.fullpage-nav-list li:nth-child(2) {
    animation-delay: 0.2s;
}

.fullpage-nav-list li:nth-child(3) {
    animation-delay: 0.3s;
}

.fullpage-nav-list li:nth-child(4) {
    animation-delay: 0.4s;
}

.fullpage-nav-list li:nth-child(5) {
    animation-delay: 0.5s;
}

.fullpage-nav-list li:nth-child(6) {
    animation-delay: 0.6s;
}

.fullpage-nav-list a {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
    display: block;
    position: relative;
    padding: 0;
}

.big-menu-list a {
    font-family: 'FabiolaCapitals', serif;
    color: var(--color-text-light);
    font-size: 120px;
    line-height: 1;
    font-weight: 400;
}

html[lang="tr"] .big-menu-list a {
    font-family: 'Bordonaro-Spur', serif;
    letter-spacing: 0;
}

.fullpage-nav-list a:hover {
    color: var(--color-cream);
}

.fullpage-nav-list a.active {
    color: var(--color-cream);
}

.menu-info {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease forwards;
    animation-delay: 0.7s;
}

.menu-info p {
    color: rgba(244, 241, 232, 0.6);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin: 0;
}

.menu-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 4rem 6rem 0;
    background: transparent;
    position: relative;
}

.menu-details {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    height: 100%;
    max-width: 400px;
    color: var(--color-menu-text);
    justify-content: space-around;
}

.address-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.address-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.address-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.address-line {
    font-family: 'Sorts Mill Goudy', 'Marcellus SC', 'Anek Gurmukhi', Georgia, 'Times New Roman', serif;
    color: var(--color-text-light);
    font-size: 1.4rem;
    line-height: 1.4;
    font-weight: 400;
}

.google-map-link {
    font-family: 'Sorts Mill Goudy', 'Marcellus SC', 'Anek Gurmukhi', Georgia, 'Times New Roman', serif;
    color: var(--color-text-light);
    text-decoration: underline;
    font-size: 1rem;
    text-decoration-color: rgba(201, 215, 197, 0.5);
    transition: var(--transition-fast);
}

.google-map-link:hover {
    color: var(--color-cream);
    text-decoration-color: var(--color-cream);
}

.contact-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease forwards;
    animation-delay: 1.0s;
}

.info-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.info-title {
    font-family: 'Sorts Mill Goudy', 'Marcellus SC', 'Anek Gurmukhi', Georgia, 'Times New Roman', serif;
    font-size: 0.85rem;
    color: var(--color-text-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.info-text {
    font-family: 'Sorts Mill Goudy', 'Marcellus SC', 'Anek Gurmukhi', Georgia, 'Times New Roman', serif;
    color: var(--color-text-light);
    line-height: 1.5;
    font-size: 1.4rem;
    font-weight: 400;
}

.info-link {
    color: var(--color-text-light);
    text-decoration: underline;
    text-decoration-color: rgba(201, 215, 197, 0.5);
    transition: var(--transition-fast);
}

.info-link:hover {
    color: var(--color-cream);
    text-decoration-color: var(--color-cream);
}

.social-section {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease forwards;
    animation-delay: 1.2s;
}

.social-link {
    font-family: 'Sorts Mill Goudy', 'Marcellus SC', 'Anek Gurmukhi', Georgia, 'Times New Roman', serif;
    color: var(--color-text-light);
    text-decoration: underline;
    font-size: 1rem;
    text-decoration-color: rgba(201, 215, 197, 0.5);
    transition: var(--transition-fast);
}

.social-link:hover {
    color: var(--color-cream);
    text-decoration-color: var(--color-cream);
}

.menu-watermark {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease;
}

.menu-open .menu-watermark {
    opacity: 1;
    transform: translateX(0);
    animation: slideInFromRight 1s ease forwards;
    animation-delay: 1.4s;
}

.menu-watermark {
    transition-delay: 0s;
}

.menu-open .menu-watermark {
    transition-delay: 1.4s;
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.watermark-svg {
    height: 100%;
    width: auto;
    max-height: 100vh;
    transform: rotate(0deg);
    object-fit: contain;
    pointer-events: none;
}

.menu-headline {
    font-size: clamp(4rem, 12vw, 12rem);
    font-weight: 900;
    color: var(--color-gold);
    margin: 0;
    line-height: 0.8;
    letter-spacing: -0.02em;
}

.menu-subline {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-light-cream);
    margin: 1rem 0;
    letter-spacing: 0.1em;
}

.menu-tagline {
    font-size: clamp(1rem, 2.5vw, 2rem);
    font-weight: 400;
    color: rgba(244, 241, 232, 0.8);
    margin: 0;
    letter-spacing: 0.3em;
}


@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translate3d(-30px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInUpCentered {
    from {
        opacity: 0;
        transform: translateY(calc(-50% + 30px));
    }
    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translate3d(50px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRightCentered {
    from {
        opacity: 0;
        transform: translate(50px, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(0, -50%) scale(1);
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* ===== SIDEBAR NAVIGATION ===== */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 100px;
    height: 100vh;
    background: var(--color-dark-green);
    z-index: var(--z-sidebar);
    display: flex;
    flex-direction: column;
    padding: 2rem 0 2rem 6px;
    transition: var(--transition-medium);
}

.sidebar-header {
    padding: 0 1rem;
}

.menu-title {
    font-family: 'Anek Gurmukhi', sans-serif;
    color: var(--color-cream);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin: 0;
    text-align: center;
    transition: var(--transition-medium);
}

.menu-button {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.menu-button:hover {
    transform: scale(1.05);
}

.menu-button:hover .menu-title {
    color: var(--color-gold);
}

.menu-button:hover .underline-top,
.menu-button:hover .underline-bottom {
    background: var(--color-gold);
}

.menu-double-underline {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 0.3rem;
}

.underline-top,
.underline-bottom {
    width: 40px;
    height: 2px;
    background: var(--color-cream);
    transition: var(--transition-medium);
    border-radius: 1px;
}

.menu-open .menu-title {
    color: var(--color-gold);
    opacity: 0;
    transform: scale(0.8);
}

.menu-open .underline-top {
    background: var(--color-gold);
    transform: rotate(45deg) translateY(4px);
    transform-origin: center;
}

.menu-open .underline-bottom {
    background: var(--color-gold);
    transform: rotate(-45deg) translateY(-4px);
    transform-origin: center;
}

.menu-open .menu-double-underline {
    position: relative;
}

.sidebar-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    margin-bottom: 2rem;
}

.raise-text {
    font-family: 'Anek Gurmukhi', sans-serif;
    color: rgba(254, 238, 188, 0.8);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    transition: color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sidebar-brand {
    margin: 2rem 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -75%);
}

.barrel-logo-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
    padding: 0.5rem 0;
}

.barrel-logo-link:hover {
    transform: scale(1.08);
}

.barrel-logo {
    height: auto;
    width: 100%;
    max-width: 60px;
    max-height: 150px;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    filter: none;
}

.barrel-logo-link:hover .barrel-logo {
    filter: brightness(1.2) saturate(1.3);
}

.sidebar-location {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.location-text {
    font-family: 'Anek Gurmukhi', sans-serif;
    color: rgba(254, 238, 188, 0.6);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    transition: color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sidebar-footer {
    padding: 1rem;
    margin-top: auto;
}

.rr-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.rr-logo-svg {
    height: auto;
    width: 100%;
    max-width: 25px;
    max-height: 30px;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: none;
}

.rr-logo:hover {
    transform: scale(1.1);
}

.rr-logo:hover .rr-logo-svg {
    filter: brightness(1.3) saturate(1.2);
}

.language-selector {
    margin-top: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.language-btn {
    text-decoration: none;
    display: flex;
    align-items: center;
    background: none;
    border: none;
    color: var(--color-cream);
    font-family: 'Anek Gurmukhi', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.1em;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    line-height: 1;
}

.language-btn:hover {
    color: var(--color-cream);
    transform: translateY(-1px);
}

.language-text {
    font-weight: 600;
}

.progress-indicator {
    position: absolute;
    right: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(254, 238, 188, 0.1);
    border-radius: 0;
    transition: background 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.progress-bar {
    width: 100%;
    height: 0%;
    background: var(--color-cream);
    border-radius: 1px;
    transition: height 0.3s ease, background 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sidebar.sidebar-light .menu-title {
    color: var(--color-dark-green);
}

.sidebar.sidebar-light .raise-text {
    color: rgba(44, 56, 38, 0.8);
}

.sidebar.sidebar-light .underline-top,
.sidebar.sidebar-light .underline-bottom {
    background: var(--color-dark-green);
}

.sidebar.sidebar-light .menu-button:hover .menu-title {
    color: var(--color-dark-green);
}

.sidebar.sidebar-light .menu-button:hover .underline-top,
.sidebar.sidebar-light .menu-button:hover .underline-bottom {
    background: var(--color-dark-green);
}

.sidebar.sidebar-light .barrel-logo {
    filter: brightness(0.2) saturate(1);
}

.sidebar.sidebar-light .barrel-logo-link:hover .barrel-logo {
    filter: brightness(0.3) saturate(1.2);
}

.sidebar.sidebar-light .location-text {
    color: rgba(44, 56, 38, 0.8);
}

.sidebar.sidebar-light .rr-logo-svg {
    filter: brightness(0.2) saturate(1);
}

.sidebar.sidebar-light .rr-logo:hover .rr-logo-svg {
    filter: brightness(0.3) saturate(1.2);
}

.sidebar.sidebar-light .language-btn {
    color: var(--color-dark-green);
}

.sidebar.sidebar-light .language-btn:hover {
    color: var(--color-dark-green);
}

.sidebar.sidebar-light .progress-indicator {
    background: rgba(44, 56, 38, 0.2);
}

.sidebar.sidebar-light .progress-bar {
    background: var(--color-dark-green);
}

/* ===== MAIN CONTAINER ===== */
.horizontal-container {
    display: flex;
    height: 100vh;
    margin-left: 100px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: auto;
    scroll-snap-type: none;
}

.horizontal-container::-webkit-scrollbar {
    display: none;
}

.horizontal-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.barrel-section {
    min-width: 100vw;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    scroll-snap-align: none;
    flex-shrink: 0;
}

.section-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.section-content h1 {
    font-family: 'FabiolaCapitals', serif;
    font-weight: 400;
    font-size: clamp(3rem, 8vw, 8rem);
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    line-height: 0.9;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

html[lang="tr"] .section-content h1 {
    font-family: 'Bordonaro-Spur', serif;
    letter-spacing: 0;
}

.section-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section-content.show {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ===== SECTION 1: HERO ===== */
.section-1 {
    background: var(--color-dark-green);
    color: var(--color-cream);
    padding: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    height: 100vh;
    width: 100%;
    position: relative;
    align-items: stretch;
    padding: 0;
    gap: 0;
}

.hero-left {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative;
    background: transparent;
    padding: 0;
}

.saliente-wrapper {
    opacity: 0;
    animation: slideInLeft 1.2s ease forwards;
    animation-delay: 0.3s;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.saliente-image {
    height: 100vh;
    width: auto;
    object-fit: contain;
    max-width: none;
}

.saliente-mobile {
    display: none;
}

.hero-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    height: 100vh;
    padding: 0 5rem 0 5rem;
    position: relative;
}

.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.6s;
    width: 100%;
    max-width: 600px;
}

.welcome-text {
    margin-bottom: 8rem;
}

.welcome-subtitle {
    font-family: 'FabiolaCapitals', 'Bordonaro-Spur', serif;
    font-weight: 400;
    font-size: 4.75rem;
    color: var(--color-cream);
    margin: 0 0 2rem 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.9s;
    text-transform: uppercase;
}

html[lang="tr"] .welcome-subtitle {
    font-family: 'Bordonaro-Spur', serif;
    letter-spacing: 0;
    margin: 0;
}

.welcome-title {
    font-family: 'FabiolaCapitals', serif;
    font-weight: 400;
    font-size: clamp(4rem, 15vw, 14rem);
    line-height: 0.85;
    letter-spacing: 0.02em;
    color: var(--color-cream);
    margin: 0;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1.2s;
    text-transform: uppercase;
}

html[lang="tr"] .welcome-title {
    font-family: 'Bordonaro-Spur', serif;
    letter-spacing: 0;
    line-height: 0.75;
}

.hero-description {
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.scroll-text {
    font-family: 'Sorts Mill Goudy', serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: rgba(254, 238, 188, 0.7);
    margin: 0;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 1.5s;
    text-transform: uppercase;
    white-space: nowrap;
}

.scroll-icon {
    width: 60px;
    height: 30px;
    border-radius: 15px;
    position: relative;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 1.8s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-tagline {
    font-family: 'Sorts Mill Goudy', serif;
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(254, 238, 188, 0.6);
    margin: 0;
    max-width: 350px;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 2.1s;
    text-align: left;
}

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

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-main-image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 0;
    transition: all 0.8s ease;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.hero-image-primary {
    opacity: 0;
    animation: slideInUpCentered 1.2s ease forwards;
    animation-delay: 2s;
    right: 9%;
    left: auto;
    width: 100%;
    height: 100%;
}

.hero-image-secondary {
    opacity: 0;
    animation: slideInRightCentered 1.2s ease forwards;
    animation-delay: 1.8s;
    right: 0;
    left: auto;
    top: 50%;
    width: 65%;
    height: auto;
    max-height: 100%;
}

/* ===== SEASONAL IMAGE ADJUSTMENTS ===== */
/* Warm Season (Summer) - Specific adjustments for hero-right-image-1-1.png and hero-right-image-1-2.png */
.season-warm-season.hero-image-primary {
    right: 10%;
    width: 100%;
    height: 100%;
}

.season-warm-season.hero-image-secondary {
    width: 65%;
    right: 0;
}

/* Cold Season (Winter) - Specific adjustments for hero-right-image-2-1.png and hero-right-image-2-2.png */
.season-cold-season.hero-image-primary {
    right: 9%;
    width: 100%;
    height: 100%;
}

.season-cold-season.hero-image-secondary {
    width: 65%;
    right: 0;
}

/* ===== HERO ANIMATIONS ===== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

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

/* ===== SECTION 2: ABOUT ===== */
.section-2 {
    background: var(--color-cream);
    color: var(--color-dark-green);
    padding: 0;
    min-width: 250vw;
    width: 250vw;
}

.about-strip {
    display: grid;
    grid-template-columns: 70vw 100vw 50vw 30vw;
    width: 250vw;
    height: 100vh;
}

.about-panel {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.about-panel--intro {
    background: var(--color-cream);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 45% 1px 55%;
    grid-gap: 0 4rem;
    height: 100%;
    align-items: end;
    padding: 0 4rem;
}

.about-barman-svg {
    height: auto;
    width: auto;
    max-height: 100vh;
    object-fit: contain;
    object-position: bottom;
    align-self: end;
    transform: translateY(1rem);
}

.about-divider {
    background-color: var(--color-text-light);
    width: 1px;
    height: 100%;
    align-self: stretch;
}

.about-title {
    font-family: 'FabiolaCapitals', serif;
    font-weight: 400;
    font-size: clamp(3rem, 6.8vw, 4rem);
    line-height: 0.9;
    margin-bottom: 5rem;
}

html[lang="tr"] .about-title {
    font-family: 'Bordonaro-Spur', serif;
    letter-spacing: 0;
}

.about-body {
    font-family: 'Sorts Mill Goudy', serif;
    font-size: 1rem;
    line-height: 1.4;
    max-width: 40ch;
    color: var(--color-text-dark);
    margin-bottom: auto;
}

.about-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 80%;
}

.about-logo-block {
    text-align: right;
}

.about-symbol {
    height: 126px;
    width: auto;
}

.about-logo {
    height: 58px;
    width: auto;
}

.about-logo-note {
    display: block;
    font-family: 'Sorts Mill Goudy', serif;
    font-size: 0.75rem;
    color: var(--color-divider-dark);
    margin-top: 0.5rem;
}

.about-intro-copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 5rem 0;
}

.about-closing-copy {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 5rem 0;
    height: 100%;
}

.about-panel--visual {
    background: var(--color-dark-green) url('../images/about-image.jpg') center center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    filter: saturate(1.05);
}

.parallax-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-panel--closing {
    background: var(--color-cream);
}

.about-panel--video {
    background: var(--color-dark-green);
    color: var(--color-cream);
}

.about-closing-grid {
    display: grid;
    grid-template-columns: 52% 48%;
    align-items: end;
    height: 100%;
    padding: 0 6rem;
}

.about-subtitle {
    font-family: 'FabiolaCapitals', serif;
    font-weight: 400;
    font-size: clamp(2.2rem, 4.8vw, 4rem);
    line-height: 1.0;
    margin-bottom: 5rem;
}

html[lang="tr"] .about-subtitle {
    font-family: 'Bordonaro-Spur', serif;
    letter-spacing: 0;
}

.about-follow small {
    display: block;
    font-family: 'Sorts Mill Goudy', serif;
    font-size: 1rem;
    color: var(--color-text-dark);
    margin: 1.5rem 0 0.25rem 0;
}

.about-follow a {
    font-family: 'Sorts Mill Goudy', serif;
    color: var(--color-text-dark);
    font-size: 1.25rem;
    text-decoration: underline;
}

.about-man-svg {
    height: auto;
    width: auto;
    max-height: 100vh;
    object-fit: contain;
    object-position: bottom;
    align-self: end;
    transform: translateY(3rem);
}

.about-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s ease, transform .8s ease;
}

.about-reveal.show {
    opacity: 1;
    transform: translateY(0);
}

.video-intro-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-intro-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-intro-content:hover {
    transform: scale(1.02);
}

.video-intro-title {
    position: absolute;
    top: 5rem;
    left: 5rem;
    z-index: 2;
}

.video-intro-title h2 {
    font-family: 'FabiolaCapitals', serif;
    font-size: clamp(24px, 3vw, 48px);
    font-weight: 400;
    color: var(--color-cream);
    line-height: 1;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.video-intro-play {
    position: absolute;
    bottom: 5rem;
    left: 5rem;
    z-index: 2;
}

.play-button {
    width: clamp(20px, 2.5vw, 30px);
    height: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.video-intro-content:hover .play-button {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.video-intro-text {
    position: absolute;
    bottom: 5rem;
    right: 5rem;
    z-index: 2;
}

.video-intro-text span {
    font-family: 'Sorts Mill Goudy', serif;
    font-size: 14px;
    color: var(--color-cream);
    letter-spacing: 0.05em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.video-intro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/about-intro-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 0.5s ease;
    z-index: 5;
    cursor: pointer;
}

.video-intro-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.intro-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 10;
    pointer-events: none;
}

.intro-video.visible {
    opacity: 1;
    pointer-events: auto;
}

.video-controls-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 15;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-controls-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.video-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(44, 56, 38, 0.9);
    color: var(--color-cream);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
}

.video-close-btn:hover {
    background: rgba(44, 56, 38, 1);
    transform: scale(1.1);
}

.video-play-pause-btn {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(44, 56, 38, 0.9);
    color: var(--color-cream);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
}

.video-play-pause-btn:hover {
    background: rgba(44, 56, 38, 1);
    transform: scale(1.1);
}

.video-volume-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(44, 56, 38, 0.9);
    color: var(--color-cream);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
}

.video-volume-btn:hover {
    background: rgba(44, 56, 38, 1);
    transform: scale(1.1);
}

/* ===== SECTION 4: DAY AND NIGHT ===== */
.section-4 {
    width: 560vw;
}

.daylight-container {
    background-color: var(--color-cream);
    display: flex;
    width: 280vw;
    height: 100vh;
    position: relative;
}

.daylight-panel {
    display: grid;
    grid-template-columns: 60vw 40vw;
    height: 100vh;
    position: relative;
    width: 100vw;
    flex-shrink: 0;
}

.daylight-left {
    display: grid;
    grid-template-columns: 500px 1fr;
    height: 100vh;
    background: var(--color-cream);
    position: relative;
}

.barrel-life-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 5rem 8rem;
    height: 100%;
}

.barrel-life-title {
    font-family: 'FabiolaCapitals', serif;
    font-weight: 400;
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 0.9;
    color: var(--color-dark-green);
    margin: 0;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    transform: rotate(180deg);
    align-self: center;
}

html[lang="tr"] .barrel-life-title {
    font-family: 'Bordonaro-Spur', serif;
    letter-spacing: 0;
}

.daylight-symbols {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.daylight-rr-symbol {
    height: 57px;
    width: auto;
}

.daylight-sun-vector {
    height: 240px;
    width: auto;
}

.barrel-life-text {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 4rem;
    height: 100%;
    text-align: right;
    position: relative;
}

.barrel-life-text p {
    font-family: 'Sorts Mill Goudy', serif;
    font-size: 1rem;
    line-height: 1.4;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    max-width: 40ch;
}

.barrel-life-text p:last-child {
    margin-bottom: 0;
}

.barrel-life-text::after {
    content: '';
    width: 100px;
    height: 1px;
    background-color: var(--color-divider-light);
    align-self: center;
    position: absolute;
    left: 60%;
    top: 50%;
    transform: translateY(-50%) scaleX(0);
    transform-origin: left center;
    transition: transform 0.8s ease;
    transition-delay: 0.8s;
}

.daylight-right {
    background: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.daylight-cocktail-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

.daylight-title-overlay {
    position: absolute;
    bottom: 0;
    left: 57%;
    transform: translateX(-50%);
    z-index: 100;
    width: 100vw;
    text-align: center;
}

.daylight-main-title {
    font-family: 'FabiolaCapitals', serif;
    font-weight: 400;
    font-size: 300px;
    margin: 0;
    line-height: 1;
    color: var(--color-dark-green);
    text-shadow: none;
}

html[lang="tr"] .daylight-main-title {
    font-family: 'Bordonaro-Spur', serif;
    letter-spacing: 0;
}

.daylight-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
    transition-delay: 0.2s;
}

.daylight-reveal.show {
    opacity: 1;
    transform: translateY(0);
}

.barrel-life-title.daylight-reveal.show {
    opacity: 1;
    transform: rotate(180deg) translateY(0);
}

.barrel-life-title.daylight-reveal {
    transition-delay: 0.1s;
}

.daylight-rr-symbol.daylight-reveal {
    transition-delay: 0.3s;
}

.daylight-sun-vector.daylight-reveal {
    transition-delay: 0.5s;
}

.barrel-life-text p:nth-child(1).daylight-reveal {
    transition-delay: 0.4s;
}

.barrel-life-text p:nth-child(2).daylight-reveal {
    transition-delay: 0.6s;
}

.daylight-panel .barrel-life-text.show::after {
    transform: translateY(-50%) scaleX(1);
}

.daylight-cocktail-image.daylight-reveal {
    transition-delay: 0.2s;
    transform: translateX(60px);
}

.daylight-cocktail-image.daylight-reveal.show {
    transform: translateX(0);
}

.daylight-main-title.daylight-reveal {
    transition-delay: 0.8s;
    transform: scale(0.8);
}

.daylight-main-title.daylight-reveal.show {
    transform: scale(1);
}

.snack-drinking-panel {
    width: 60vw;
    height: 100vh;
    background: var(--color-cream) url('../images/daylight-snack-drinking-sport-bg.svg') no-repeat center center;
    background-size: contain;
    position: relative;
    overflow: hidden;
}

.snack-drinking-content {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 6rem 4rem 4rem 4rem;
}

.snack-title {
    font-family: 'FabiolaCapitals', serif;
    font-weight: 400;
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: var(--color-dark-green);
    margin: 0 0 2.5rem 0;
    line-height: 1;
    z-index: 10;
    position: relative;
    text-align: center;
}

html[lang="tr"] .snack-title {
    font-family: 'Bordonaro-Spur', serif;
    letter-spacing: 0;
}

.snack-text-content {
    max-width: 520px;
    margin: 0 auto 0 auto;
    z-index: 10;
    position: relative;
    text-align: center;
}

.snack-text-1,
.snack-text-2 {
    font-family: 'Sorts Mill Goudy', serif;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
}

.snack-text-1 {
    font-size: 1rem;
    line-height: 1.4;
}

.snack-text-2 {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Desktop: Hide mobile snack image */
.snack-mobile-image {
    display: none;
}

.food-parallax-container {
    position: absolute;
    bottom: 0rem;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    z-index: 5;
}

.food-item {
    position: absolute;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.food-napkin {
    bottom: 100px;
    right: 0;
    z-index: 1;
}

.food-plate {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 650px;
}

.food-sauce {
    top: -100px;
    right: -100px;
    z-index: 3;
    width: 260px;
}

.food-img {
    width: 100%;
}

.napkin-img {
    width: auto;
    height: auto;
}

.plate-img {
    width: 100%;
}

.sauce-img {
    width: 100%;
}

.snack-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.3s;
}

.snack-reveal.show {
    opacity: 1;
    transform: translateY(0);
}

.snack-title.snack-reveal {
    transition-delay: 0.2s;
}

.snack-text-1.snack-reveal {
    transition-delay: 0.4s;
}

.snack-text-2.snack-reveal {
    transition-delay: 0.6s;
}

.napkin-img.snack-reveal {
    transition-delay: 0.8s;
    transform: translateY(100px) rotate(-5deg);
}

.napkin-img.snack-reveal.show {
    transform: translateY(0) rotate(0deg);
}

.plate-img.snack-reveal {
    transition-delay: 1s;
    transform: translateY(120px) scale(0.9);
}

.plate-img.snack-reveal.show {
    transform: translateY(0) scale(1);
}

.sauce-img.snack-reveal {
    transition-delay: 1.2s;
    transform: translateY(80px) translateX(40px);
}

.sauce-img.snack-reveal.show {
    transform: translateY(0) translateX(0);
}

.sport-reveal {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sport-reveal.show {
    opacity: 1;
    transform: translateX(0);
}

.sport-title.sport-reveal {
    transition-delay: 0.2s;
}

.sport-title-main.sport-reveal {
    transition-delay: 0.4s;
    transform: translateX(-60px) scale(0.95);
}

.sport-title-main.sport-reveal.show {
    transform: translateX(0) scale(1);
}

.sport-bottom-left-text.sport-reveal {
    transition-delay: 0.5s;
    transform: translateX(-40px) translateY(20px);
}

.sport-bottom-left-text.sport-reveal.show {
    transform: translateX(0) translateY(0);
}

.sport-text-content.sport-reveal {
    transition-delay: 0.6s;
    transform: translateY(40px) translateX(40px);
}

.sport-text-content.sport-reveal.show {
    transform: translateY(0) translateX(0);
}

.sport-vertical-text.sport-reveal {
    opacity: 0;
    transform: translateX(30px) rotate(5deg);
    transition-delay: 0.8s;
}

.sport-vertical-text.sport-reveal.show {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
}

.vertical-slider-panel {
    background: var(--color-cream);
    width: 60vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.vertical-slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    cursor: grab;
    user-select: none;
    overflow-y: auto;
    overflow-x: hidden;
}

.vertical-slider-container::-webkit-scrollbar {
    display: none;
}

.vertical-slider-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.slider-track {
    display: flex;
    flex-direction: column;
    width: 60vw;
    min-height: 100%;
    align-items: center;
}

.slider-image {
    width: 100%;
    height: 80vh;
    flex-shrink: 0;
    margin-bottom: 40px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.slider-image:last-child {
    margin-bottom: 0;
}

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sport-stream-panel {
    width: 60vw;
    height: 100vh;
    background: var(--color-cream) url('../images/daylight-sport-stream-vector.svg') no-repeat center top;
    background-size: 70%;
    position: relative;
    overflow: hidden;
}

.sport-stream-container {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

.sport-stream-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    padding: 6rem 8rem;
}

.sport-text-section {
    grid-column: 1;
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    height: 100%;
}

.sport-title {
    font-family: 'FabiolaCapitals', serif;
    font-weight: 400;
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: var(--color-dark-green);
    margin: 0;
    line-height: 1;
}

html[lang="tr"] .sport-title {
    font-family: 'Bordonaro-Spur', serif;
    letter-spacing: 0;
}

.sport-title-main {
    font-family: 'FabiolaCapitals', serif;
    font-weight: 400;
    font-size: clamp(4rem, 10vw, 10.25rem);
    color: var(--color-dark-green);
    margin: 0;
    line-height: 0.9;
    text-transform: uppercase;
}

html[lang="tr"] .sport-title-main {
    font-family: 'Bordonaro-Spur', serif;
    letter-spacing: 0;
}

.sport-bottom-left-text p {
    font-family: 'Sorts Mill Goudy', serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-dark);
    margin: 0;
    max-width: 200px;
}

.sport-text-content {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-self: end;
    justify-self: end;
    max-width: 320px;
}

.sport-text-content p {
    font-family: 'Sorts Mill Goudy', serif;
    font-size: 1rem;
    line-height: 1.4;
    color: var(--color-text-dark);
    margin: 0;
    text-align: right;
}

.sport-vertical-text {
    writing-mode: vertical-lr;
    text-orientation: mixed;
    position: absolute;
    right: 8rem;
    top: 6rem;
    font-family: 'FabiolaCapitals', serif;
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: var(--color-text-dark);
    font-weight: 300;
}

html[lang="tr"] .sport-vertical-text {
    font-family: 'Bordonaro-Spur', serif;
    letter-spacing: 0;
}

.interior-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.2s;
}

.interior-reveal.show {
    opacity: 1;
    transform: translateY(0);
}

.interior-title.interior-reveal {
    transition-delay: 0.1s;
    transform: translateX(-40px);
}

.interior-title.interior-reveal.show {
    transform: translateX(0);
}

.interior-text-block-1.interior-reveal {
    transition-delay: 0.3s;
}

.interior-text-block-2.interior-reveal {
    transition-delay: 0.5s;
    transform: translateX(-30px);
}

.interior-text-block-2.interior-reveal.show {
    transform: translateX(0);
}

.interior-text-block-3.interior-reveal {
    transition-delay: 0.7s;
}

.interior-label.interior-reveal {
    transition-delay: 0.9s;
    transform: rotate(-2deg) scale(0.9);
}

.interior-label.interior-reveal.show {
    transform: rotate(0deg) scale(1);
}

.interior-right-panel.interior-reveal {
    transition-delay: 0.4s;
    transform: scale(1.05);
    opacity: 0.8;
}

.interior-right-panel.interior-reveal.show {
    transform: scale(1);
    opacity: 1;
}

/* ===== SECTION 3: INTERIOR ===== */
.section-3 {
    background-attachment: fixed;
    background-image: url('../images/interior-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-cream);
    min-width: 120vw;
    width: 120vw;
    padding: 0;
}

.interior-container {
    display: grid;
    grid-template-columns: 60vw 1fr;
    width: 120vw;
    height: 100vh;
}

.interior-left-panel {
    background-image: url('../images/interior-mask-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.interior-content {
    padding: 5rem 8rem;
    height: 100%;
    display: grid;
    grid-template-areas:
        "title text1"
        "title text2"
        "title barrel"
        "text3 barrel";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.interior-title {
    grid-area: title;
    font-family: 'FabiolaCapitals', serif;
    font-weight: 400;
    font-size: clamp(2.2rem, 3vw, 5.5rem);
    line-height: 1;
    margin: 0;
    color: var(--color-cream);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    align-self: start;
}

html[lang="tr"] .interior-title {
    font-family: 'Bordonaro-Spur', serif;
    letter-spacing: 0;
}

.interior-text-blocks {
    display: contents;
}

.interior-text-block-1 {
    grid-area: text1;
    font-family: 'Sorts Mill Goudy', serif;
    font-size: 1rem;
    line-height: 1.4;
    color: var(--color-text-light);
    margin: 0;
    align-self: start;
}

.interior-text-block-2 {
    grid-area: text2;
    font-family: 'Sorts Mill Goudy', serif;
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--color-text-light);
    margin: 0;
    align-self: start;
}

.interior-text-block-3 {
    grid-area: text3;
    font-family: 'Sorts Mill Goudy', serif;
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--color-text-light);
    margin: 0;
    align-self: end;
}

.interior-label {
    position: absolute;
    bottom: 3rem;
    right: -6rem;
    font-family: 'FabiolaCapitals', serif;
    font-weight: 400;
    font-size: clamp(3rem, 6vw, 6rem);
    color: var(--color-cream);
    z-index: 3;
}

html[lang="tr"] .interior-label {
    font-family: 'Bordonaro-Spur', serif;
    letter-spacing: 0;
}

.interior-right-panel {
    position: relative;
    overflow: hidden;
}

/* ===== SECTION 5: FOOD MENU ===== */
.section-5 {
    background: var(--color-cream);
    color: var(--color-dark-green);
    padding: 0;
}

.food-menu-wrapper {
    display: flex;
    width: 100%;
    height: 100vh;
}

.food-menu-left {
    width: 70vw;
    padding: 5rem 4rem 4rem 8rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.food-menu-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 5rem;
}

.food-menu-heading {
    font-family: 'FabiolaCapitals', serif;
    font-weight: 400;
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: var(--color-dark-green);
    margin: 0;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    line-height: .7;
}

html[lang="tr"] .food-menu-heading {
    font-family: 'Bordonaro-Spur', serif;
    letter-spacing: 0;
}

.food-menu-brand {
    height: 3rem;
    width: auto;
}

.food-menu-content {
    display: flex;
    flex: 1;
    gap: 4rem;
    overflow: hidden;
}

.food-categories-section {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
}

.food-items-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.food-categories-wrapper {
    margin-bottom: 2rem;
    position: relative;
}

.food-category {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.food-category-text {
    font-family: 'FabiolaCapitals', serif;
    font-weight: 400;
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    color: var(--color-divider-cream);
    transition: all 0.3s ease;
    transform-origin: left center;
    white-space: nowrap;
}

html[lang="tr"] .food-category-text {
    font-family: 'Bordonaro-Spur', serif;
    letter-spacing: 0;
}

.food-category.active .food-category-text {
    color: var(--color-dark-green);
    transform: scale(1.1);
}

.food-category-line {
    display: none;
}

.food-categories-dynamic-line {
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 120px;
    background-color: var(--color-dark-green);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: left center;
    opacity: 1;
    z-index: 10;
}

.food-items-scroll {
    flex: 1;
    overflow-y: auto;
    padding-right: 1.5rem;
    max-height: 100vh;
}

.food-items-scroll::-webkit-scrollbar {
    width: 4px;
}

.food-items-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.food-items-scroll::-webkit-scrollbar-thumb {
    background: var(--color-divider-cream);
    border-radius: 0px;
}

.food-items-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--color-dark-green);
}

.food-items-group {
    display: none;
}

.food-items-group.active {
    display: block;
}

.food-item-card {
    margin-bottom: 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    border: none;
}

.food-item-card:hover {
    transform: translateX(8px);
}

.food-item-card:last-child {
    margin-bottom: 0;
}

.food-item-name {
    font-family: 'Sorts Mill Goudy', serif;
    font-weight: 400;
    font-size: clamp(1.4rem, 1.8vw, 1.8rem);
    color: var(--color-dark-green);
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
    text-transform: none;
}

.food-item-desc {
    font-family: 'Sorts Mill Goudy', serif;
    font-size: clamp(0.9rem, 1vw, 1rem);
    color: rgba(44, 56, 38, 0.6);
    margin: 0;
    line-height: 1.5;
    font-style: italic;
}

/* ===== DRINKS LIST STYLES ===== */
.drinks-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.drink-item {
    font-family: 'Sorts Mill Goudy', serif;
    font-size: 1rem;
    line-height: 1.4;
    color: var(--color-text-dark);
    padding: 0.25rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-fast);
}

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

.drink-item:hover {
    color: var(--color-gold);
    transform: translateX(5px);
}

.food-menu-right {
    width: 30vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.food-display-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.6s ease;
}

/* ===== SECTION 6: CONTACT ===== */
.section-6 {
    background: var(--color-dark-green) url('../images/contact-bg.png') no-repeat right center;
    background-size: contain;
    color: var(--color-cream);
    padding: 0;
    position: relative;
    overflow: hidden;
    min-width: 80vw;
    width: 100vw;
}

.menu-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.menu-reveal.show {
    opacity: 1;
    transform: translateY(0);
}

.food-menu-header.menu-reveal {
    transition-delay: 0.1s;
}

.food-categories-wrapper.menu-reveal {
    transition-delay: 0.2s;
}

.food-category.menu-reveal:nth-child(2) {
    transition-delay: 0.3s;
}

.food-category.menu-reveal:nth-child(3) {
    transition-delay: 0.4s;
}

.food-category.menu-reveal:nth-child(4) {
    transition-delay: 0.5s;
}

.food-category.menu-reveal:nth-child(5) {
    transition-delay: 0.6s;
}

.food-category.menu-reveal:nth-child(6) {
    transition-delay: 0.7s;
}

.food-category.menu-reveal:nth-child(7) {
    transition-delay: 0.8s;
}

.food-items-section.menu-reveal {
    transition-delay: 0.4s;
    transform: translateX(40px);
}

.food-items-section.menu-reveal.show {
    transform: translateX(0);
}

.food-menu-right.menu-reveal {
    transition-delay: 0.6s;
    transform: scale(0.95) translateX(30px);
}

.food-menu-right.menu-reveal.show {
    transform: scale(1) translateX(0);
}

.contact-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

.contact-reveal.show {
    opacity: 1;
    transform: translateY(0);
}

.contact-title.contact-reveal {
    transition-delay: 0.1s;
    transform: translateY(50px) scale(0.95);
}

.contact-title.contact-reveal.show {
    transform: translateY(0) scale(1);
}

.contact-address.contact-reveal {
    transition-delay: 0.3s;
    transform: translateX(-40px);
}

.contact-address.contact-reveal.show {
    transform: translateX(0);
}

.contact-reservation.contact-reveal {
    transition-delay: 0.5s;
    transform: translateX(-30px);
}

.contact-reservation.contact-reveal.show {
    transform: translateX(0);
}

.contact-instagram.contact-reveal {
    transition-delay: 0.7s;
    transform: translateX(-20px);
}

.contact-instagram.contact-reveal.show {
    transform: translateX(0);
}

.contact-logo-barrel.contact-reveal {
    transition-delay: 0.4s;
    transform: scale(0.8) rotate(-5deg);
}

.contact-logo-barrel.contact-reveal.show {
    transform: scale(1) rotate(0deg);
}

.contact-logo-osloux.contact-reveal {
    transition-delay: 0.8s;
    transform: translateY(30px) scale(0.9);
}

.contact-logo-osloux.contact-reveal.show {
    transform: translateY(0) scale(1);
}

.contact-copyright.contact-reveal {
    transition-delay: 0.9s;
    transform: translateY(20px);
}

.contact-copyright.contact-reveal.show {
    transform: translateY(0);
}

.contact-container {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: start;
}

.contact-content {
    width: 50%;
    padding: 5rem 8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 4rem;
    position: relative;
    z-index: 3;
    height: 50vw;
}

.contact-title h1 {
    font-family: 'FabiolaCapitals', serif;
    font-weight: 400;
    font-size: clamp(28px, 4vw, 36px);
    letter-spacing: 0.1em;
    margin: 0;
    line-height: 1;
    color: var(--color-cream);
    writing-mode: vertical-lr;
    text-orientation: mixed;
    transform: rotate(180deg);
}

html[lang="tr"] .contact-title h1 {
    font-family: 'Bordonaro-Spur', serif;
    letter-spacing: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.contact-address {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-address-title {
    font-family: 'Sorts Mill Goudy', serif;
    font-size: clamp(10px, 1.2vw, 12px);
    color: var(--color-text-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.contact-address-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.address-line {
    font-family: 'Sorts Mill Goudy', serif;
    color: var(--color-text-light);
    font-size: clamp(14px, 1.8vw, 20px);
    line-height: 1.4;
    font-weight: 400;
}

.contact-google-map {
    font-family: 'Sorts Mill Goudy', serif;
    color: var(--color-text-light);
    text-decoration: underline;
    font-size: clamp(12px, 1.8vw, 16px);
    text-decoration-color: rgba(164, 175, 139, 0.5);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    align-self: flex-start;
}

.contact-google-map:hover {
    color: var(--color-cream);
    text-decoration-color: var(--color-cream);
}

.contact-reservation {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.contact-reservation-title {
    font-family: 'Sorts Mill Goudy', serif;
    font-size: clamp(10px, 1.5vw, 12px);
    color: var(--color-text-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-phone {
    font-family: 'Sorts Mill Goudy', serif;
    color: var(--color-text-light);
    line-height: 1.5;
    font-size: clamp(14px, 2.5vw, 30px);
    font-weight: 400;
}

.contact-instagram {
    display: flex;
    flex-direction: column;
}

.contact-instagram-link {
    font-family: 'Sorts Mill Goudy', serif;
    color: var(--color-text-light);
    text-decoration: underline;
    font-size: clamp(16px, 1.8vw, 20px);
    text-decoration-color: rgba(164, 175, 139, 0.5);
    transition: all 0.3s ease;
    align-self: flex-start;
}

.contact-instagram-link:hover {
    color: var(--color-cream);
    text-decoration-color: var(--color-cream);
}

.contact-logo-barrel {
    position: absolute;
    bottom: 5rem;
    left: 8rem;
    z-index: 4;
}

.contact-barrel-logo {
    width: clamp(80px, 8vw, 124px);
    height: auto;
}

.contact-logo-osloux {
    position: absolute;
    top: 5rem;
    right: 5rem;
    z-index: 4;
}

.osloux-logo {
    height: clamp(180px, 15vw, 240px);
    width: auto;
}

.contact-copyright {
    position: absolute;
    bottom: 5rem;
    left: calc(12rem + 96px + 1rem);
    z-index: 4;
    display: flex;
    align-items: center;
}

.copyright-text {
    font-family: 'Sorts Mill Goudy', serif;
    font-size: clamp(10px, 1.2vw, 12px);
    color: var(--color-text-light);
    letter-spacing: 0.05em;
}

.barrel-section {
    transition: transform 0.3s ease;
}

.section-content h1 {
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

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

/* ===== HERO SCROLL ANIMATION ===== */
.mouse-scroll-svg {
    width: 120px;
    height: auto;
    opacity: 0.85;
    animation: mouseScrollX 2.2s ease-in-out infinite;
}

@keyframes mouseScrollX {
    0% {
        transform: translateX(0);
        opacity: 0.7;
    }
    40% {
        transform: translateX(15px);
        opacity: 1;
    }
    60% {
        transform: translateX(-10px);
        opacity: 1;
    }
    100% {
        transform: translateX(0);
        opacity: 0.7;
    }
}

.night-container {
    display: flex;
    width: 280vw;
    height: 100vh;
    position: relative;
    background: var(--color-dark-green);
}

.night-panel {
    display: grid;
    grid-template-columns: 60vw 40vw;
    height: 100vh;
    position: relative;
    width: 100vw;
    flex-shrink: 0;
    background: var(--color-dark-green);
}

.night-left {
    display: grid;
    grid-template-columns: 500px 1fr;
    height: 100vh;
    background: var(--color-dark-green);
    position: relative;
}

.night-symbols {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.night-rr-symbol {
    height: 57px;
    width: auto;
}

.night-sun-vector {
    height: 240px;
    width: auto;
}

.night-right {
    position: relative;
    overflow: hidden;
}

.night-cocktail-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7) contrast(1.1);
}

.night-title-overlay {
    position: absolute;
    bottom: 0;
    left: 57%;
    transform: translateX(-50%);
    z-index: 100;
    width: 100vw;
    text-align: center;
}

.night-main-title {
    font-family: 'FabiolaCapitals', serif;
    font-weight: 400;
    font-size: 300px;
    margin: 0;
    line-height: 1;
    color: var(--color-cream);
    text-shadow: none;
}

html[lang="tr"] .night-main-title {
    font-family: 'Bordonaro-Spur', serif;
    letter-spacing: 0;
}

.night-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
    transition-delay: 0.2s;
}

.night-reveal.show {
    opacity: 1;
    transform: translateY(0);
}

.barrel-life-title.night-reveal.show {
    opacity: 1;
    transform: rotate(180deg) translateY(0);
}

.barrel-life-title.night-reveal {
    transition-delay: 0.1s;
    color: var(--color-cream);
}

.night-rr-symbol.night-reveal {
    transition-delay: 0.3s;
}

.night-sun-vector.night-reveal {
    transition-delay: 0.5s;
}

.barrel-life-text p:nth-child(1).night-reveal {
    transition-delay: 0.4s;
    color: var(--color-cream);
}

.barrel-life-text p:nth-child(2).night-reveal {
    transition-delay: 0.6s;
    color: var(--color-cream);
}

.night-panel .barrel-life-text.show::after {
    transform: translateY(-50%) scaleX(1);
}

.night-cocktail-image.night-reveal {
    transition-delay: 0.2s;
    transform: translateX(60px);
}

.night-cocktail-image.night-reveal.show {
    transform: translateX(0);
}

.night-main-title.night-reveal {
    transition-delay: 0.8s;
    transform: scale(0.8);
}

.night-main-title.night-reveal.show {
    transform: scale(1);
}

.night-snack-drinking-panel {
    width: 60vw;
    height: 100vh;
    background: var(--color-dark-green) url('../images/night-eating-drinking-music-bg.svg') no-repeat center center;
    background-size: contain;
    position: relative;
    overflow: hidden;
}

.night-snack-drinking-content {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 6rem 4rem 4rem 4rem;
}

.night-snack-bg-wrapper {
    position: absolute;
    bottom: 15%;
    right: 8%;
    z-index: 1;
}

.night-snack-bg-pattern {
    width: 400px;
    height: auto;
    opacity: 0.6;
    filter: brightness(0) saturate(100%) invert(88%) sepia(12%) saturate(1234%) hue-rotate(17deg) brightness(102%) contrast(94%);
}

.night-snack-title {
    font-family: 'FabiolaCapitals', serif;
    font-weight: 400;
    font-size: 3.5rem;
    color: var(--color-cream);
    margin: 0 0 2.5rem 0;
    line-height: 1;
    z-index: 10;
    position: relative;
    text-align: center;
}

html[lang="tr"] .night-snack-title {
    font-family: 'Bordonaro-Spur', serif;
    letter-spacing: 0;
}

.night-snack-text-content {
    max-width: 520px;
    margin: 0 auto 0 auto;
    z-index: 10;
    position: relative;
    text-align: center;
}

.night-snack-text-1,
.night-snack-text-2 {
    font-family: 'Sorts Mill Goudy', serif;
    color: var(--color-divider);
    margin-bottom: 1.5rem;
}

.night-snack-text-1 {
    font-size: 1rem;
    line-height: 1.4;
}

.night-snack-text-2 {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Desktop: Hide mobile night snack image */
.night-snack-mobile-image {
    display: none;
}

/* Desktop: Hide mobile menu */
.mobile-menu-wrapper {
    display: none;
}

.night-food-parallax-container {
    position: absolute;
    bottom: 0rem;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    z-index: 5;
}

.night-food-item {
    position: absolute;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.night-food-napkin {
    bottom: 70px;
    right: 0;
    z-index: 1;
}

.night-food-plate {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 750px;
}

.night-food-sauce {
    top: 57px;
    right: -100px;
    z-index: 3;
    width: 260px;
}

.night-food-img {
    width: 100%;
    height: 100%;
}

.night-napkin-img {
    width: 100%;
    height: 100%;
}

.night-plate-img {
    width: 100%;
    height: 100%;
}

.night-sauce-img {
    width: 100%;
    height: 100%;
}

.night-vertical-slider-panel {
    width: 60vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--color-dark-green);
}

.night-vertical-slider-container {
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    user-select: none;
    cursor: grab;
}

.night-vertical-slider-container::-webkit-scrollbar {
    display: none;
}

.night-vertical-slider-container {
    scrollbar-width: none;
}

.night-slider-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60vw;
    min-height: 100%;
}

.night-slider-image {
    width: 100%;
    height: 80vh;
    margin-bottom: 40px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.night-slider-image:last-child {
    margin-bottom: 0;
}

.night-slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7) contrast(1.1);
}

.night-sport-stream-panel {
    width: 60vw;
    height: 100vh;
    background: var(--color-dark-green) url('../images/night-events-vector.svg') no-repeat center center;
    background-size: 60%;
    position: relative;
    overflow: hidden;
}

.night-sport-stream-container {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

.night-sport-stream-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    padding: 6rem 8rem;
}

.night-sport-text-section {
    grid-column: 1;
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.night-sport-title {
    font-family: 'FabiolaCapitals', serif;
    font-weight: 400;
    font-size: 64px;
    color: var(--color-cream);
    margin: 0;
    line-height: 1;
}

html[lang="tr"] .night-sport-title {
    font-family: 'Bordonaro-Spur', serif;
    letter-spacing: 0;
}

.night-sport-title-main {
    font-family: 'FabiolaCapitals', serif;
    font-weight: 400;
    font-size: 164px;
    color: var(--color-cream);
    margin: 0;
    line-height: 0.9;
    text-transform: uppercase;
}

html[lang="tr"] .night-sport-title-main {
    font-family: 'Bordonaro-Spur', serif;
    letter-spacing: 0;
}

.night-sport-bottom-left-text p {
    font-family: 'Sorts Mill Goudy', serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin: 0;
    max-width: 200px;
}

.night-sport-text-content {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-self: end;
    justify-self: end;
    max-width: 320px;
}

.night-sport-text-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--color-text-light);
    margin: 0;
    text-align: right;
}

.night-sport-vertical-text {
    writing-mode: vertical-lr;
    text-orientation: mixed;
    position: absolute;
    right: 8rem;
    top: 6rem;
    font-family: 'FabiolaCapitals', serif;
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: var(--color-cream);
    font-weight: 300;
}

html[lang="tr"] .night-sport-vertical-text {
    font-family: 'Bordonaro-Spur', serif;
    letter-spacing: 0;
}

.night-snack-title.night-reveal {
    transition-delay: 0.2s;
    color: var(--color-cream);
}

.night-snack-text-1.night-reveal {
    transition-delay: 0.4s;
    color: var(--color-cream);
}

.night-snack-text-2.night-reveal {
    transition-delay: 0.6s;
    color: var(--color-cream);
}

.night-napkin-img.night-reveal {
    transition-delay: 0.8s;
    transform: translateY(100px) rotate(-5deg);
}

.night-napkin-img.night-reveal.show {
    transform: translateY(0) rotate(0deg);
}

.night-plate-img.night-reveal {
    transition-delay: 1s;
    transform: translateY(120px) scale(0.9);
}

.night-plate-img.night-reveal.show {
    transform: translateY(0) scale(1);
}

.night-sauce-img.night-reveal {
    transition-delay: 1.2s;
    transform: translateY(80px) translateX(40px);
}

.night-sauce-img.night-reveal.show {
    transform: translateY(0) translateX(0);
}

.night-sport-title.night-reveal {
    transition-delay: 0.2s;
    color: var(--color-cream);
}

.night-sport-title-main.night-reveal {
    transition-delay: 0.4s;
    transform: translateX(-60px) scale(0.95);
    color: var(--color-cream);
}

.night-sport-title-main.night-reveal.show {
    transform: translateX(0) scale(1);
}

.night-sport-bottom-left-text.night-reveal {
    transition-delay: 0.5s;
    transform: translateX(-40px) translateY(20px);
    color: var(--color-cream);
}

.night-sport-bottom-left-text.night-reveal.show {
    transform: translateX(0) translateY(0);
}

.night-sport-text-content.night-reveal {
    transition-delay: 0.6s;
    transform: translateY(40px) translateX(40px);
    color: var(--color-cream);
}

.night-sport-text-content.night-reveal.show {
    transform: translateY(0) translateX(0);
}

.night-sport-vertical-text.night-reveal {
    opacity: 0;
    transform: translateX(30px) rotate(5deg);
    transition-delay: 0.8s;
}

.night-sport-vertical-text.night-reveal.show {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
}

@media (max-width: 768px) {
    body {
        cursor: default;
        overflow: auto;
    }
    html,
    body {
        overflow-x: hidden !important;
        overflow-y: auto !important;
        scroll-behavior: auto !important;
        height: auto !important;
    }
    .section-content {
        opacity: 1 !important;
        transform: none !important;
    }
    .about-reveal,
    .daylight-reveal,
    .night-reveal,
    .snack-reveal,
    .sport-reveal,
    .interior-reveal,
    .menu-reveal,
    .contact-reveal,
    .hero-content,
    .saliente-wrapper,
    .hero-image-wrapper,
    .hero-main-image,
    .hero-image-primary,
    .hero-image-secondary,
    .welcome-subtitle,
    .welcome-title,
    .scroll-text,
    .scroll-icon,
    .hero-tagline,
    .section-content {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
    .hero-left,
    .hero-center,
    .hero-right {
        opacity: 1 !important;
    }
    .fullpage-nav-list li {
        opacity: 1 !important;
        transform: none !important;
    }
    .video-intro-section {
        opacity: 1 !important;
        height: calc(100vh - 60px) !important;
    }
    .food-item-card,
    .food-category,
    .food-menu-header {
        opacity: 1 !important;
    }
    .hero-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr auto;
        padding: 0;
        gap: 0;
        min-height: auto;
        align-items: center;
    }
    .hero-left {
        order: 1;
        height: auto;
        padding: 0;
        justify-content: center;
    }
    .saliente-wrapper {
        animation-delay: 0.2s;
        height: auto;
        width: 100%;
    }
    .saliente-image {
        display: none;
    }
    .saliente-mobile {
        display: block;
        width: 100%;
    }
    .hero-center {
        order: 2;
        padding: 0;
        flex: 1;
        text-align: center;
        align-items: center;
        justify-content: start;
        height: auto;
        margin-top: -3rem;
    }
    .hero-content {
        max-width: 100%;
    }
    .welcome-text {
        margin-bottom: 3rem;
    }
    .welcome-subtitle {
        color: var(--color-text-light);
        font-size: clamp(1.2rem, 4vw, 1.5rem);
        letter-spacing: 0.15em;
        margin-bottom: 1rem;
    }
    .welcome-title {
        font-size: 7rem;
        line-height: 0.9;
        letter-spacing: 0.02em;
    }
    .hero-description {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 1.5rem;
        text-align: center;
        justify-items: center;
    }
    .scroll-text {
        display: none;
    }
    .scroll-icon {
        display: none;
    }
    .hero-tagline {
        font-size: 0.8rem;
        line-height: 1.6;
        max-width: 320px;
        order: 3;
        text-align: center;
    }
    .hero-right {
        display: none;
        order: 3;
        height: 60vh;
        margin: 0;
        border-radius: 8px;
        overflow: hidden;
    }
    .hero-image-wrapper {
        height: 100%;
        width: 100%;
        border-radius: 8px;
    }
    .hero-main-image {
        border-radius: 8px;
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .hero-image-primary,
    .hero-image-secondary {
        position: relative;
        right: auto;
        left: auto;
        width: 100%;
        height: 100%;
    }
    .section-2 {
        min-width: 100vw;
        width: 100vw;
        overflow-x: hidden;
        height: auto;
        min-height: auto;
    }
    .about-strip {
        display: flex;
        flex-direction: column;
        width: 100vw;
        height: auto;
        min-height: auto;
    }
    .about-panel {
        width: 100vw;
        height: auto;
        min-height: 60vh;
        margin-bottom: 0;
    }
    .about-panel--visual {
        height: 50vh;
        background-attachment: scroll;
    }
    .about-panel--video {
        min-height: 50vh;
    }
    .about-intro-grid,
    .about-closing-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        padding: 4rem 1.5rem 2rem;
        justify-items: center;
        text-align: center;
        gap: 2rem;
        align-items: center;
    }
    .about-divider {
        display: none;
    }
    .about-intro-copy,
    .about-closing-copy {
        order: 3;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 0;
        height: auto;
    }
    .about-intro-vector,
    .about-closing-vector {
        display: none;
    }
    .about-barman-svg,
    .about-man-svg {
        height: 40vh;
        width: auto;
        max-width: 200px;
        transform: none;
        object-fit: contain;
    }
    .about-title {
        font-size: clamp(4rem, 8vw, 3rem);
        text-align: center;
        margin-bottom: 0;
    }
    .about-subtitle {
        font-size: clamp(3rem, 6vw, 2.2rem);
        text-align: center;
        margin-bottom: 0;
    }
    .about-body {
        margin: 0 auto;
        max-width: 350px;
        text-align: center;
        font-size: 1rem;
        line-height: 1.5;
    }
    .about-logos {
        gap: 3rem;
        align-items: center;
        width: 100%;
    }
    .about-logos .about-symbol {
        height: 80px;
    }
    .about-logos .about-logo {
        height: 32px;
    }
    .about-logo-block {
        text-align: right;
    }
    .about-follow {
        text-align: center;
    }
    .about-follow small {
        text-align: center;
    }
    .video-intro-title h2 {
        font-size: 4rem !important;
    }
    .video-intro-content {
        padding: 1.5rem;
    }
    .video-intro-title {
        top: 1.5rem;
        left: 1.5rem;
    }
    .video-intro-play {
        bottom: 1.5rem;
        left: 1.5rem;
    }
    .video-intro-text {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    .video-intro-text span {
        font-size: 12px;
    }
    .video-intro-content {
        padding: 1rem;
    }
    .video-intro-title {
        top: 1rem;
        left: 1rem;
    }
    .video-intro-play {
        bottom: 1rem;
        left: 1rem;
    }
    .video-intro-text {
        bottom: 1rem;
        right: 1rem;
    }
    .video-intro-text span {
        font-size: 11px;
    }
    .section-4 {
        width: 100vw;
        height: auto;
        min-height: auto;
        display: flex;
        flex-direction: column;
    }
    .daylight-container,
    .night-container {
        display: flex;
        flex-direction: column;
        width: 100vw;
        height: auto;
        min-height: auto;
        position: static;
    }
    .daylight-panel,
    .night-panel {
        display: flex;
        flex-direction: column;
        width: 100vw;
        height: auto;
        min-height: 100vh;
        padding: 3rem 0;
    }
    .daylight-left,
    .night-left {
        display: flex;
        flex-direction: column;
        width: 100vw;
        height: auto;
        background: var(--color-cream);
        padding: 2rem 1.5rem;
        text-align: center;
    }
    .night-left {
        background: var(--color-dark-green);
    }
    .barrel-life-section {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 0;
        height: auto;
        gap: 1rem;
    }
    .barrel-life-title {
        writing-mode: sideways-lr;
        text-orientation: initial;
        transform: none;
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        text-align: center;
        margin: 0;
    }
    .daylight-symbols,
    .night-symbols {
        flex-direction: row;
        gap: 1.5rem;
        align-items: center;
        justify-content: center;
        width: 33%;
    }
    .daylight-symbols:nth-child(2),
    .night-symbols:nth-child(2) {
        order: 1;
    }
    .daylight-rr-symbol,
    .night-rr-symbol {
        height: 35px;
    }
    .daylight-sun-vector,
    .night-sun-vector {
        height: 120px;
    }
    .barrel-life-text {
        padding: 2rem 1.5rem;
        text-align: center;
        height: auto;
    }
    .barrel-life-text::after {
        display: none;
    }
    .barrel-life-text p {
        font-size: 0.9rem;
        line-height: 1.5;
        max-width: 350px;
        margin: 0 auto 1.5rem auto;
    }
    .daylight-right,
    .night-right {
        width: 100vw;
        height: 50vh;
        margin: 2rem 0;
    }
    .daylight-cocktail-image,
    .night-cocktail-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .daylight-title-overlay,
    .night-title-overlay {
        position: relative;
        left: auto;
        transform: none;
        width: 100vw;
        text-align: center;
        margin: -4rem 0 0 0;
    }
    .daylight-main-title,
    .night-main-title {
        font-size: clamp(4rem, 20vw, 8rem);
        margin: 0;
    }
    .snack-drinking-panel,
    .night-snack-drinking-panel {
        width: 100vw;
        height: auto;
        min-height: 70vh;
        background-image: none;
        padding: 0;
    }
    .snack-drinking-content,
    .night-snack-drinking-content {
        padding: 0;
    }
    .snack-title,
    .night-snack-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 2rem;
    }
    .snack-text-content,
    .night-snack-text-content {
        max-width: 350px;
        margin: 0 auto 3rem auto;
    }
    .snack-text-1,
    .snack-text-2,
    .night-snack-text-1,
    .night-snack-text-2 {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    .food-parallax-container,
    .night-food-parallax-container {
        display: none;
    }
    .food-item,
    .night-food-item {
        position: static;
        margin: 0 0.5rem;
    }
    .food-img,
    .night-food-img {
        width: auto;
        height: 80px;
        max-width: 80px;
    }
    .vertical-slider-panel,
    .night-vertical-slider-panel {
        width: 100vw;
        height: auto;
        margin: 0;
    }
    .vertical-slider-container,
    .night-vertical-slider-container {
        height: auto;
    }
    .slider-track,
    .night-slider-track {
        width: 100vw;
        min-height: 40vh;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
    }
    .slider-image,
    .night-slider-image {
        width: 80vw;
        height: 30vh;
        margin-bottom: 0;
        margin-right: 2rem;
        flex-shrink: 0;
    }
    .slider-image:last-child,
    .night-slider-image:last-child {
        margin-right: 0;
    }
    .sport-stream-panel,
    .night-sport-stream-panel {
        width: 100vw;
        height: auto;
        min-height: 60vh;
        background-size: contain;
        background-position: center top;
        padding: 3rem 1.5rem;
    }
    .sport-stream-container,
    .night-sport-stream-container {
        height: 60vh;
    }
    .sport-stream-content,
    .night-sport-stream-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 0;
        text-align: center;
    }
    .sport-text-section,
    .night-sport-text-section {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
        text-align: center;
    }
    .sport-title,
    .night-sport-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin: 0;
    }
    .sport-title-main,
    .night-sport-title-main {
        font-size: clamp(3rem, 12vw, 5rem);
        margin: 0;
        line-height: 1;
        text-align: right;
    }
    .sport-bottom-left-text,
    .night-sport-bottom-left-text {
        text-align: center;
        width: 100%;
    }
    .sport-bottom-left-text p,
    .night-sport-bottom-left-text p {
        max-width: 300px;
        margin: 0 auto;
        text-align: center;
    }
    .sport-bottom-left-text p {
        color: var(--color-dark-green);
    }
    .night-sport-bottom-left-text p {
        color: var(--color-cream);
    }
    .sport-text-content,
    .night-sport-text-content {
        max-width: 350px;
        margin: 0 auto;
        text-align: center;
    }
    .sport-text-content p,
    .night-sport-text-content p {
        text-align: center;
        font-size: 0.9rem;
        line-height: 1.5;
    }
    .sport-text-content p {
        color: var(--color-dark-green);
    }
    .night-sport-text-content p {
        color: var(--color-cream);
    }
    .sport-vertical-text,
    .night-sport-vertical-text {
        position: static;
        writing-mode: horizontal-tb;
        text-orientation: initial;
        text-align: center;
        font-size: 0.8rem;
        letter-spacing: 0.1em;
        margin-top: 2rem;
    }
    .section-3 {
        background-color: var(--color-dark-green);
        background-image: none;
        min-width: 100vw;
        width: 100vw;
        height: auto !important;
        min-height:  auto !important;
        background-attachment: scroll;
    }
    .interior-container {
        display: flex;
        flex-direction: column;
        width: 100vw;
        height: auto;
        min-height: auto;
    }
    .interior-left-panel {
        width: 100%;
        order: 1;
    }
    .interior-right-panel {
        width: 100%;
        height: 50vh;
        order: 2;
        background: url('../images/interior-image.jpg') center center;
        background-size: cover;
        background-attachment: scroll;
        position: relative;
    }
    .interior-content {
        padding: 3rem 1.5rem;
        display: grid;
        grid-template-areas:
            "title"
            "text1"
            "text2"
            "text3"
            "barrel";
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto auto;
        gap: 2rem;
        text-align: center;
        justify-items: center;
        height: auto;
    }
    .interior-title {
        grid-area: title;
        font-size: clamp(3rem, 8vw, 4rem);
        margin: 0;
        text-align: center;
        max-width: 100%;
    }
    .interior-text-blocks {
        display: contents;
    }
    .interior-text-block-1 {
        grid-area: text1;
        font-size: 1.1rem;
        text-align: center;
        max-width: 400px;
        margin: 0;
    }
    .interior-text-block-2 {
        grid-area: text2;
        font-size: 0.9rem;
        margin: 0;
        text-align: center;
        max-width: 350px;
    }
    .interior-text-block-3 {
        grid-area: text3;
        font-size: 1rem;
        text-align: center;
        max-width: 400px;
        margin: 0;
    }
    .interior-label {
        left: 50%;
        bottom: -4rem;
        right: auto;
        font-size: 4rem;
        color: var(--color-cream);
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        transform: translateX(-50%) !important;
    }
    .interior-content {
        padding: 4rem 1rem 2rem;
        display: grid;
        grid-template-areas:
            "title"
            "text1"
            "text2"
            "text3"
            "barrel";
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto auto;
        gap: 1.5rem;
        text-align: center;
        justify-items: center;
        height: auto;
    }
    .interior-title {
        grid-area: title;
        font-size: clamp(2.5rem, 10vw, 4rem);
        margin: 0;
        text-align: center;
        max-width: 100%;
    }
    .interior-text-blocks {
        display: contents;
    }
    .interior-text-block-1 {
        grid-area: text1;
        font-size: 1rem;
        text-align: center;
        max-width: 320px;
        margin: 0;
    }
    .interior-text-block-2 {
        grid-area: text2;
        font-size: 0.85rem;
        margin: 0;
        text-align: center;
        max-width: 300px;
    }
    .interior-text-block-3 {
        grid-area: text3;
        font-size: 0.95rem;
        text-align: center;
        max-width: 320px;
        margin: 0;
    }
    .interior-right-panel {
        height: 40vh;
    }
    .food-menu-wrapper {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }
    .food-menu-left {
        width: 100vw;
        padding: 2rem 1.5rem;
        height: auto;
    }
    .food-menu-header {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 3rem;
        text-align: center;
    }
    .food-menu-heading {
        writing-mode: horizontal-tb;
        text-orientation: initial;
        font-size: clamp(2rem, 8vw, 3rem);
        text-align: center;
    }
    .food-menu-brand {
        height: 2rem;
    }
    .food-menu-content {
        flex-direction: column;
        gap: 2rem;
    }
    .food-categories-section {
        flex: none;
        width: 100%;
    }
    .food-categories-wrapper {
        margin-bottom: 2rem;
    }
    .food-category {
        margin-bottom: 1rem;
        justify-content: center;
        text-align: center;
    }
    .food-category-text {
        font-size: clamp(1.2rem, 5vw, 1.8rem);
        text-align: center;
    }
    .food-categories-dynamic-line {
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
    }
    .food-items-section {
        flex: none;
        width: 100%;
    }
    .food-items-scroll {
        max-height: 60vh;
        padding-right: 0.5rem;
    }
    .food-item-card {
        margin-bottom: 2rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(44, 56, 38, 0.1);
    }
    .food-item-card:hover {
        transform: none;
    }
    .food-item-name {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
        margin-bottom: 0.8rem;
        text-align: center;
    }
    .food-item-desc {
        font-size: clamp(0.8rem, 3vw, 0.9rem);
        text-align: center;
        max-width: 320px;
        margin: 0 auto;
    }
    .food-menu-right {
        width: 100vw;
        height: 50vh;
        margin-top: 2rem;
    }
    .food-display-img {
        border-radius: 8px;
        margin: 0 1.5rem;
        width: calc(100vw - 3rem);
        height: 100%;
    }
    .food-category {
        min-height: 48px;
        display: flex;
        align-items: center;
        padding: 0.5rem;
        cursor: pointer;
        border-radius: 4px;
        transition: background-color 0.3s ease;
    }
    .food-category:hover,
    .food-category:focus {
        background-color: rgba(44, 56, 38, 0.05);
    }
    .food-category.active {
        background-color: rgba(44, 56, 38, 0.1);
    }
    .food-item-card {
        min-height: 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 1rem;
        cursor: pointer;
        border-radius: 8px;
        transition: background-color 0.3s ease;
    }
    .food-item-card:hover,
    .food-item-card:focus {
        background-color: rgba(44, 56, 38, 0.03);
    }
    .mobile-menu-button {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
    }
    .video-close-btn,
    .video-play-pause-btn,
    .video-volume-btn {
        min-width: 48px;
        min-height: 48px;
    }
    .language-btn {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem;
    }
    .fullpage-nav-list a,
    .google-map-link,
    .info-link,
    .social-link,
    .contact-google-map,
    .contact-instagram-link,
    .social-section {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 0;
        justify-content: center;
    }
    .hero-description {
        gap: 2rem;
    }
    .contact-content {
        padding: 3rem 1.5rem;
        gap: 3rem;
    }
    .mobile-logo {
        font-size: 1.5rem;
        font-weight: bold;
    }
    .fullpage-nav-list a {
        font-size: 3rem;
        line-height: 1;
        justify-content: center;
    }
    .address-line {
        font-size: clamp(1rem, 4vw, 1.2rem);
        line-height: 1.4;
    }
    .contact-phone {
        font-size: clamp(1.2rem, 5vw, 1.8rem);
        line-height: 1.3;
    }
    .fullpage-menu {
        padding-top: 80px;
    }
    .menu-content {
        padding: 2rem 1.5rem;
        height: calc(100vh - 80px);
    }
    .menu-left {
        padding: 2rem 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .menu-right {
        padding: 2rem 0;
    }
    .food-items-scroll::-webkit-scrollbar {
        width: 6px;
    }
    .food-items-scroll::-webkit-scrollbar-thumb {
        background: var(--color-divider-cream);
        border-radius: 3px;
    }
    .food-items-scroll::-webkit-scrollbar-track {
        background: transparent;
    }
    .mobile-header {
        display: flex;
    }
    .sidebar {
        display: none;
    }
    .sidebar-header {
        padding: 0 0.5rem;
    }
    .menu-button {
        padding: 0.3rem;
    }
    .menu-title {
        font-size: 0.7rem;
    }
    .underline-top,
    .underline-bottom {
        width: 30px;
        height: 1.5px;
    }
    .raise-text {
        font-size: 0.5rem;
    }
    .barrel-logo {
        max-width: 35px;
        max-height: 90px;
    }
    .location-text {
        font-size: 0.5rem;
    }
    .rr-logo-svg {
        max-width: 18px;
        max-height: 22px;
    }
    .horizontal-container {
        margin-left: 0;
        padding-top: 0;
        flex-direction: column;
        overflow-y: auto;
        overflow-x: hidden;
        scroll-snap-type: none;
        scroll-behavior: auto;
        height: auto;
        min-height: 100vh;
    }
    .barrel-section {
        min-width: 100vw;
        width: 100vw;
        min-height: 100vh;
        height: auto;
        scroll-snap-align: none;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }
    .section-content h1 {
        font-size: clamp(2rem, 6vw, 4rem);
    }
    .nav-menu a {
        font-size: 0.7rem;
        padding: 0.3rem;
        min-width: 25px;
    }
    .progress-indicator {
        height: 100%;
    }
    .fullpage-menu {
        padding-top: 60px;
    }
    .menu-content {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto 1fr;
        grid-column-gap: 0;
        grid-row-gap: 1rem;
    }
    .menu-left {
        padding: 0;
        background: transparent;
        gap: 1rem;
        height: auto;
    }
    .menu-divider {
        width: 60%;
        height: 1px;
        justify-self: center;
        align-self: center;
    }
    .menu-right {
        padding: 0;
        height: auto;
    }
    .menu-details {
        gap: 1rem;
        text-align: center;
    }
    .address-section {
        gap: 1rem;
    }
    .address-content {
        gap: 1rem;
    }
    .address-line {
        font-size: 1.1rem;
    }
    .contact-section {
        gap: 1.5rem;
    }
    .info-text {
        font-size: 1.1rem;
    }
    .menu-watermark {
        display: none;
    }
    .big-menu-list a {
        font-size: clamp(3rem, 8vw, 5rem);
        line-height: 1.0;
    }
    .fullpage-nav-list {
        gap: 2rem !important;
        justify-content: space-evenly;
    }
    .menu-close {
        top: 1.5rem;
        right: 1.5rem;
    }
    .section-6 {
        min-width: 100vw;
        width: 100vw;
        height: 60vh;
        min-height: 60vh;
        background-size: cover;
        background-position: right -150px top 0;
    }
    .contact-container {
        height: auto;
        min-height: 60vh;
        flex-direction: column;
        align-items: stretch;
        padding: 3rem 0;
    }
    .contact-content {
        width: 100%;
        height: auto;
        padding: 2rem 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 3rem;
        align-items: start;
        text-align: left;
    }
    .contact-title h1 {
        writing-mode: horizontal-tb;
        text-orientation: initial;
        transform: none;
        text-align: left;
        font-size: clamp(2rem, 8vw, 3rem);
    }
    .contact-info {
        gap: 3rem;
        align-items: start;
        text-align: left;
    }
    .contact-address,
    .contact-reservation,
    .contact-instagram {
        text-align: left;
    }
    .contact-content {
        width: 100%;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }
    .contact-title h1 {
        font-size: clamp(24px, 3.5vw, 36px);
    }
    .contact-info {
        gap: 2rem;
    }
    .contact-address-title,
    .contact-reservation-title {
        font-size: clamp(10px, 1vw, 14px);
    }
    .address-line,
    .contact-phone {
        font-size: clamp(14px, 1.4vw, 18px);
    }
    .contact-google-map,
    .contact-instagram-link {
        font-size: clamp(14px, 1.4vw, 16px);
    }
    .contact-logo-barrel {
        bottom: 1.5rem;
        left: 1.5rem;
    }
    .contact-barrel-logo {
        width: clamp(48px, 5vw, 80px);
        height: auto;
    }
    .contact-logo-osloux {
        bottom: 1.5rem;
        right: auto;
        left: 50%;
        top: auto;
        transform: translateX(-50%);
        height: 80px;
    }
    .osloux-logo {
        height: clamp(120px, 14vw, 160px);
        transform: rotate(90deg);
    }
    .contact-copyright {
        bottom: 2rem;
        left: auto;
        right: 1.5rem;
    }
    .copyright-text {
        font-size: clamp(8px, 1vw, 14px);
    }
    .fullpage-nav-list a {
        font-size: 3rem;
    }
    .menu-headline {
        font-size: clamp(3rem, 15vw, 8rem);
    }
    .menu-subline {
        font-size: clamp(1rem, 5vw, 2rem);
    }
    .menu-tagline {
        font-size: clamp(0.8rem, 3vw, 1.5rem);
    }
    
    .drink-item {
        font-size: 0.9rem;
        padding: 0.2rem 0;
    }
    
    .drinks-list {
        gap: 0.3rem;
    }
    
    /* Mobile-only night snack image */
    .night-snack-mobile-image {
        display: block;
        width: 100%;
        margin: 0;
        text-align: center;
    }
    
    .night-snack-mobile-img {
        width: 100%;
        max-width: 400px;
        height: auto;
    }
    
    /* Mobile-only snack image */
    .snack-mobile-image {
        display: block;
        width: 100%;
        margin: 0;
        text-align: center;
    }
    
    .snack-mobile-img {
        width: 100%;
        max-width: 400px;
        height: auto;
    }
    
    /* Mobile Menu Styles */
    .food-menu-wrapper {
        display: none;
    }
    
    .mobile-menu-wrapper {
        display: block;
        background: var(--color-cream);
        padding: 4rem 1.5rem 2rem;
        min-height: 100vh;
    }
    
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 2rem;
        padding: 1rem 0;
        position: relative;
    }
    
    .mobile-menu-header::before {
        content: "BARREL";
        font-family: 'FabiolaCapitals', serif;
        font-size: 20px;
        color: var(--color-dark-green);
    }

    html[lang="tr"] .mobile-menu-header::before {
        font-family: 'Bordonaro-Spur', serif;
        letter-spacing: 0;
    }

    .mobile-menu-heading {
        font-family: 'FabiolaCapitals', serif;
        font-size: 48px;
        color: var(--color-dark-green);
        margin: 0;
        text-align: center;
        flex: 1;
        line-height: 1;
    }
    
    html[lang="tr"] .mobile-menu-heading {
        font-family: 'Bordonaro-Spur', serif;
        letter-spacing: 0;
    }

    .mobile-menu-brand {
        display: none;
    }
    
    html[lang="tr"] .mobile-menu-brand {
        font-family: 'Bordonaro-Spur', serif;
        letter-spacing: 0;
    }

    .mobile-menu-year {
        font-family: 'FabiolaCapitals', serif;
        font-size: 20px;
        color: var(--color-dark-green);
    }

    html[lang="tr"] .mobile-menu-year {
        font-family: 'Bordonaro-Spur', serif;
        letter-spacing: 0;
    }
    
    .mobile-menu-categories {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .mobile-category {
        border-bottom: none;
    }
    
    .mobile-category-header {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        cursor: pointer;
        background: transparent;
        border: none;
    }
    
    .mobile-category-title {
        font-family: 'FabiolaCapitals', serif;
        font-size: 40px;
        font-weight: 400;
        color: var(--color-divider-cream);
        margin: 0;
        letter-spacing: 0.1em;
        text-align: center;
    }

    html[lang="tr"] .mobile-category-title {
        font-family: 'Bordonaro-Spur', serif;
        letter-spacing: 0;
    }

    .mobile-category-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .mobile-category.active .mobile-category-content {
        max-height: 2000px;
        padding-bottom: 1rem;
    }
    
    .mobile-food-item {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding: 0;
        background: transparent;
        border-radius: 0;
    }
    
    .mobile-food-image {
        flex-shrink: 0;
        width: 80px;
        height: 60px;
        border-radius: 0;
        overflow: hidden;
    }
    
    .mobile-food-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .mobile-food-details {
        flex: 1;
    }
    
    .mobile-food-name {
        font-family: 'Sorts Mill Goudy', serif;
        font-size: 1rem;
        color: var(--color-dark-green);
        margin: 0 0 0.5rem 0;
        font-weight: 600;
    }
    
    .mobile-food-desc {
        font-family: 'Sorts Mill Goudy', serif;
        font-size: 0.85rem;
        color: rgba(44, 56, 38, 0.7);
        margin: 0;
        line-height: 1.3;
    }
    
    /* Mobile Drinks Subcategory Styles */
    .mobile-drinks-subcategory {
        margin-bottom: 2rem;
    }
    
    .mobile-drinks-subtitle {
        font-family: 'Sorts Mill Goudy', serif;
        font-size: 1rem;
        color: var(--color-dark-green);
        margin: 0 0 1rem 0;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        border-bottom: 1px solid rgba(44, 56, 38, 0.2);
        padding-bottom: 0.5rem;
    }
    
    .mobile-drinks-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .mobile-drink-item {
        font-family: 'Sorts Mill Goudy', serif;
        font-size: 0.85rem;
        color: rgba(44, 56, 38, 0.8);
        padding: 0.3rem 0;
        border-bottom: 1px solid rgba(44, 56, 38, 0.1);
        line-height: 1.3;
    }
    
    .mobile-drink-item:last-child {
        border-bottom: none;
    }
}