/* Reset & Variables */
:root {
    --primary: #CB3A1A;
    --secondary: #111111;
    --text: #74787C;
    --text-dark: #333333;
    --white: #FFFFFF;
    --bg-light: #FAF4EE;
    --bg-dark: #121110;
    --bg-gray: #F6F6F6;
    --border: #EAEAEA;
    --max-width: 1400px;
    --font-main: 'Jost', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 3vw, 2rem); }

.text-center { text-align: center; }

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 30px;
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Round Buttons */
.btn-round {
    border-radius: 50px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--secondary);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

/* Top Bar */
.top-bar {
    background: #1A1A1A;
    color: #CCCCCC;
    padding: 12px 0;
    font-size: 13px;
    font-weight: 500;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-hours,
.top-bar-contact {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar .divider {
    color: #666;
    margin: 0 12px;
    font-size: 12px;
}

.top-bar a {
    color: #CCCCCC;
    transition: color 0.3s ease;
    font-weight: 500;
}

.top-bar a:hover {
    color: var(--white);
}

/* Header */
.header {
    position: fixed;
    top: 38px;
    width: 100%;
    background: #1A1A1A;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 5px 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo img {
    height: 65px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 45px;
}

.nav-menu a {
    color: #FFFFFF;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;
    position: relative;
    opacity: 0.95;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #FFFFFF;
    opacity: 1;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Book Button */
.btn-book {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.btn-book:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-book svg {
    width: 16px;
    height: 16px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

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

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

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Video */
.hero-video {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 120px;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg, 
        rgba(18, 17, 16, 0.4) 0%, 
        rgba(18, 17, 16, 0.6) 50%, 
        rgba(18, 17, 16, 0.4) 100%
    );
    z-index: 1;
}

.hero-video .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    width: 90%;
    padding: 0 20px;
}

.hero-video .hero-title {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-video .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-video .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 50px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    color: var(--white);
    text-align: center;
    padding: 120px 20px 80px;
    margin-top: 120px;
}

.page-header h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    color: var(--white);
}

/* Home Page Intro Section */
.intro-section {
    background: var(--white);
}

.intro-content {
    max-width: 1200px;
    margin: 0 auto;
}

.intro-text {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text);
}

.intro-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.intro-card {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.intro-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.intro-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.intro-card p {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.intro-time {
    display: inline-block;
    padding: 8px 16px;
    background: var(--white);
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 5px;
}

.intro-cta {
    text-align: center;
    margin-top: 3rem;
}

/* About Section */
.about {
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-time {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 15px;
    background: var(--bg-light);
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
    border-radius: 3px;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
}

.about-image img {
    border-radius: 5px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Story Section */
.story-section {
    background: var(--bg-light);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text);
}

/* Menu Tabs */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.menu-tab.active,
.menu-tab:hover {
    background: var(--primary);
    color: var(--white);
}

.menu-category {
    display: none;
}

.menu-category.active {
    display: block;
}

/* Modern Menu Section */
.menu-content {
    max-width: 1200px;
    margin: 0 auto;
}

.menu-section {
    margin-bottom: 3rem;
}

.menu-section h3 {
    color: var(--secondary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

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

.menu-item {
    background: var(--white);
    padding: 1.25rem;
    border-left: 3px solid var(--primary);
    transition: all 0.3s ease;
}

.menu-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

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

.item-header h4 {
    color: var(--secondary);
    font-size: 1.2rem;
    margin: 0;
}

.price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
    margin-left: 1rem;
}

.item-description {
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

.dietary {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 2px 6px;
    background: #f0f0f0;
    border-radius: 3px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
}

.dietary-inline {
    color: #666;
    font-size: 0.9rem;
}

/* Menu Header Note */
.menu-header-note {
    background: #FFF8F0;
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 5px;
    border-left: 3px solid var(--primary);
}

.menu-header-note p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 500;
}

/* Extras Grid */
.menu-extras {
    background: linear-gradient(135deg, #faf4ee 0%, #f8f2eb 100%);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.menu-extras h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.extra-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.extra-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(203, 58, 26, 0.15);
    border-color: #CB3A1A;
}

.extra-item span {
    color: var(--primary);
    font-weight: 600;
}

/* Drinks Grid */
.menu-drinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.menu-items.compact .menu-item-simple {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px dotted #ddd;
    transition: all 0.2s ease;
}

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

.menu-item-simple:hover {
    padding-left: 0.5rem;
    background: #fafafa;
}

/* Wine Section Styles */
.wine-section {
    margin-top: 3rem;
}

.wine-section > h3 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary);
}

.wine-category {
    margin-bottom: 3rem;
}

.wine-category h4 {
    color: var(--secondary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wine-table {
    display: grid;
    gap: 0.5rem;
}

.wine-header {
    display: grid;
    grid-template-columns: 2fr 100px 100px 100px;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: #FAF4EE;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #666;
    border-radius: 6px 6px 0 0;
}

.wine-header span:not(:first-child) {
    text-align: center;
}

.wine-item {
    display: grid;
    grid-template-columns: 2fr 100px 100px 100px;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.wine-item:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border-color: #CB3A1A;
}

.wine-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.wine-name {
    color: #111111;
    font-weight: 600;
    font-size: 1.05rem;
}

.wine-origin {
    color: #74787C;
    font-size: 0.9rem;
}

.wine-price {
    text-align: center;
    color: #CB3A1A;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wine-price.unavailable::after {
    content: '—';
    color: #ccc;
}

.wine-item.bottle-only {
    background: #fafafa;
}

/* Special Banners */
.menu-special-banner {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.menu-special-banner p {
    margin: 0;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Balkan Food Dictionary */
.menu-dictionary {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.menu-dictionary h3 {
    margin-bottom: 2rem;
}

.dictionary-items {
    display: grid;
    gap: 1.5rem;
}

.dictionary-item h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.pronunciation {
    color: #666;
    font-size: 0.9rem;
    font-weight: 400;
    font-style: italic;
}

.dictionary-item p {
    color: var(--text);
    line-height: 1.6;
}

.menu-message {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
    text-align: center;
}

.menu-message p {
    margin: 0.5rem 0;
}

.prijatno {
    font-size: 1.2rem;
    color: var(--primary);
    margin-top: 1rem;
}

/* Footer Info */
.menu-footer {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 5px;
    text-align: center;
}

.menu-footer p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: #666;
}

.service-charge {
    font-weight: 600;
    color: var(--secondary);
}

.dietary-info {
    font-size: 0.85rem !important;
}

.allergy-notice {
    color: var(--primary) !important;
    font-weight: 500;
}

.note-bottom {
    font-style: italic;
}

/* Menu Book CTA */
.menu-book-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: #FFFFFF;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: #111111;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.gallery-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #CB3A1A;
}

/* Masonry Grid Layout */
.gallery-grid {
    column-count: 3;
    column-gap: 10px;
    padding: 0;
}

/* Gallery Items */
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #1a1a1a;
    margin-bottom: 10px;
    break-inside: avoid;
    display: block;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Hover Effects */
.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(203, 58, 26, 0);
    transition: background 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-item:hover::before {
    background: rgba(203, 58, 26, 0.2);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 0px solid rgba(255, 255, 255, 0.8);
    transition: border-width 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.gallery-item:hover::after {
    border-width: 10px;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* View Icon */
.view-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    z-index: 3;
}

.gallery-item:hover .view-icon {
    transform: translate(-50%, -50%) scale(1);
}

.view-icon svg {
    width: 24px;
    height: 24px;
    fill: #CB3A1A;
}

/* Viewer (Lightbox) Styles */
.viewer {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.98);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.viewer.active {
    opacity: 1;
    visibility: visible;
}

.viewer-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.viewer img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.viewer.active img {
    opacity: 1;
    transform: scale(1);
}

/* Viewer Controls */
.viewer-controls {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
    z-index: 10001;
}

.viewer-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.viewer-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.viewer-close {
    position: relative;
}

.viewer-close::before,
.viewer-close::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 2px;
    background: white;
}

.viewer-close::before {
    transform: rotate(45deg);
}

.viewer-close::after {
    transform: rotate(-45deg);
}

/* Navigation */
.viewer-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.viewer-nav:hover {
    background: rgba(203, 58, 26, 0.2);
    border-color: rgba(203, 58, 26, 0.5);
}

.viewer-prev { 
    left: 20px;
    border-radius: 0 10px 10px 0;
}

.viewer-next { 
    right: 20px;
    border-radius: 10px 0 0 10px;
}

.viewer-nav svg {
    width: 24px;
    height: 24px;
    fill: white;
}

/* Progress Bar */
.viewer-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
}

.viewer-progress-bar {
    height: 100%;
    background: #CB3A1A;
    transition: width 0.3s ease;
}

/* Loading state */
.gallery-item.loading {
    min-height: 200px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item.fade-in {
    animation: fadeIn 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    opacity: 0;
}

/* Instagram Feed Section */
.instagram-feed {
    background: var(--bg-light);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.instagram-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.instagram-grid img:hover {
    transform: scale(1.05);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.info-item {
    margin-bottom: 25px;
}

.info-item strong {
    color: var(--secondary);
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item p {
    font-size: 18px;
    color: var(--text-dark);
}

.info-item a:hover {
    color: var(--primary);
}

.contact-map {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.reservation-cta {
    text-align: center;
    padding: 60px 30px;
    background: var(--bg-dark);
    border-radius: 5px;
}

.reservation-cta p {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.footer-links a {
    color: #8F9495;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact p {
    color: #8F9495;
    margin-bottom: 10px;
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #272624;
    text-align: center;
}

.footer-bottom p {
    color: #8F9495;
    font-size: 14px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: var(--white);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner p {
    margin: 0;
    flex: 1;
}

.cookie-banner a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    background: var(--primary);
    color: var(--white);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.cookie-buttons button:hover {
    background: var(--secondary);
}

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

/* Mobile Responsive */
@media (max-width: 1024px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    /* Top Bar Mobile */
    .top-bar {
        font-size: 11px;
        padding: 10px 0;
    }
    
    .top-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .top-bar-hours {
        display: none;
    }
    
    .top-bar-contact {
        justify-content: center;
    }
    
    .header {
        top: 32px;
    }
    
    /* Page Header Mobile */
    .page-header {
        padding: 100px 20px 60px;
        margin-top: 105px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 105px;
        flex-direction: column;
        background: #1A1A1A;
        width: 100%;
        padding: 40px 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        transition: left 0.3s ease;
    }
    
    .nav-menu a {
        font-size: 16px;
        padding: 10px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-actions .btn-book {
        display: none;
    }
    
    /* Hero Video Mobile */
    .hero-video {
        margin-top: 105px;
    }
    
    .hero-video video {
        display: none;
    }
    
    .video-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('assets/imgs/banner/Image1.webp') center/cover;
        z-index: 0;
    }
    
    .hero-video .hero-title {
        font-size: 2rem;
    }
    
    .hero-video .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-video .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-video .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* Intro Cards Mobile */
    .intro-cards {
        grid-template-columns: 1fr;
    }
    
    /* Other Sections Mobile */
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-services {
        grid-template-columns: 1fr;
    }
    
    .about-cta {
        flex-direction: column;
    }
    
    .about-cta .btn {
        width: 100%;
    }
    
    .menu-category {
        grid-template-columns: 1fr;
    }
    
    .menu-section h3 {
        font-size: 1.5rem;
    }
    
    .item-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .price {
        margin-left: 0;
    }
    
    .extras-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-drinks-grid {
        grid-template-columns: 1fr;
    }
    
    /* Gallery Mobile */
    .gallery {
        padding: 60px 0;
    }
    
    .gallery-grid {
        column-count: 1;
        column-gap: 0;
    }
    
    .gallery-item {
        margin-bottom: 2px;
    }
    
    .viewer-nav {
        width: 60px;
        height: 60px;
    }
    
    .viewer-prev { left: 10px; }
    .viewer-next { right: 10px; }
    
    .view-icon {
        width: 45px;
        height: 45px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}