/* ===== Modern Alpine Design System ===== */
/* Mobile-first CSS for Dom v Kamniški Bistrici */

/* ----- Fonts ----- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ----- CSS Variables ----- */
:root {
    --white: #FAFAFA;
    --green-dark: #2D5A27;
    --green-mid: #4A7C3F;
    --green-light: #E8F5E1;
    --brown-dark: #3E2723;
    --brown-mid: #5C4033;
    --brown-light: #8D6E63;
    --wood: #D4A76A;
    --wood-light: #E6C88A;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-500: #9E9E9E;
    --gray-700: #616161;
    --text: #3E2723;
    --text-light: #5C4033;
    --text-muted: #8D6E63;
    --overlay-dark: rgba(30, 20, 10, 0.55);
    --overlay-light: rgba(45, 90, 39, 0.15);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1280px;
    --header-height: 72px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: var(--header-height);
}

h1, h2, h3, h4, .font-display {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 600;
    line-height: 1.25;
    color: var(--brown-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1rem, 2vw, 1.25rem); }

a {
    color: var(--green-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}
a:hover { color: var(--green-mid); }

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

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

ul { list-style: none; }

/* ----- Container ----- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: background var(--transition-smooth), box-shadow var(--transition-smooth);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
    transition: opacity var(--transition-fast);
    flex-shrink: 0;
}
.logo:hover { opacity: 0.85; color: var(--brown-dark); }

.logo-img {
    height: 52px;
    width: auto;
    display: block;
}

.logo picture {
    display: flex;
    align-items: center;
}

/* Icon system */
.icon-svg {
    width: 36px;
    height: 36px;
    color: var(--green-dark);
    display: block;
}

.icon-svg-sm {
    width: 22px;
    height: 22px;
    color: var(--green-dark);
    display: block;
}

.icon-inline {
    width: 16px;
    height: 16px;
    vertical-align: -3px;
    display: inline;
    color: var(--text-muted);
}

.icon-inline-sm {
    width: 14px;
    height: 14px;
    vertical-align: -2px;
    display: inline;
    color: var(--text-muted);
}

.icon-weather {
    width: 52px;
    height: 52px;
    color: var(--wood);
    display: block;
}

.icon-spin {
    width: 28px;
    height: 28px;
    animation: spin 1.5s linear infinite;
    color: var(--text-muted);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Override SVG color via currentColor */
.icon-svg,
.icon-svg-sm,
.icon-weather,
.icon-inline,
.icon-inline-sm {
    /* SVG uses stroke="currentColor" so the element's color controls the icon */
}

/* Offer icon circle */
.offer-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    background: var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-icon .icon-svg {
    color: var(--green-dark);
}

/* Contact icon circle */
.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon .icon-svg-sm {
    color: var(--green-dark);
}

/* For-item icon */
.for-item .icon-svg-sm {
    color: var(--green-dark);
}

/* Weather icon coloring */
.weather-icon .icon-weather {
    color: var(--wood);
}

/* Desktop Nav */
.main-nav { display: none; }

.main-nav a {
    position: relative;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.35rem 0;
    transition: color var(--transition-fast);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-dark);
    transition: width var(--transition-smooth);
}

.main-nav a:hover { color: var(--green-dark); }
.main-nav a:hover::after { width: 100%; }
.main-nav a.active { color: var(--green-dark); }
.main-nav a.active::after { width: 100%; }

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    transition: background var(--transition-fast);
    cursor: pointer;
}
.lang-current:hover { background: var(--gray-200); }

.lang-current .arrow {
    font-size: 0.6rem;
    transition: transform var(--transition-fast);
}
.lang-switcher.open .lang-current .arrow { transform: rotate(180deg); }

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 160px;
    padding: 0.35rem 0;
    z-index: 1002;
}

.lang-switcher.open .lang-dropdown { display: block; }

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
    transition: background var(--transition-fast);
    text-align: left;
}
.lang-option:hover { background: var(--green-light); }
.lang-option.active { color: var(--green-dark); font-weight: 600; background: var(--green-light); }

.lang-flag { font-size: 1.1rem; flex-shrink: 0; }

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    gap: 5px;
    z-index: 1001;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brown-dark);
    border-radius: 2px;
    transition: all var(--transition-smooth);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: calc(var(--header-height) + 2rem) 2rem 2rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--brown-dark);
    font-weight: 500;
    transition: color var(--transition-fast), transform var(--transition-fast);
}
.mobile-menu a:hover { color: var(--green-dark); transform: scale(1.05); }
.mobile-menu a.active { color: var(--green-dark); }

.mobile-menu .mobile-lang {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-300);
}

.mobile-menu .mobile-lang button {
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    background: var(--gray-100);
    transition: all var(--transition-fast);
}
.mobile-menu .mobile-lang button:hover,
.mobile-menu .mobile-lang button.active {
    background: var(--green-dark);
    color: white;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100svh;
    overflow: hidden;
    margin-top: calc(-1 * var(--header-height));
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide.active img {
    animation: heroZoom 6s ease-out forwards;
}

@keyframes heroZoom {
    0%   { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        var(--overlay-dark) 0%,
        rgba(30, 20, 10, 0.2) 50%,
        var(--overlay-dark) 100%
    );
    z-index: 2;
}

.hero-content {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    width: 90%;
    max-width: 700px;
}

.hero-content h1 {
    color: white;
    font-size: clamp(2rem, 6vw, 3.8rem);
    font-weight: 600;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    font-weight: 300;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: all var(--transition-smooth);
    padding: 0;
}

.hero-dot.active {
    background: white;
    border-color: white;
    width: 28px;
    border-radius: 5px;
}

/* Hero Short (for inner pages) */
.hero-short {
    height: 55vh;
    height: 55svh;
}

.hero-short .hero-content { bottom: 20%; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-xl);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: all var(--transition-smooth);
    white-space: nowrap;
}

.btn-primary {
    background: var(--green-dark);
    color: white;
    box-shadow: 0 4px 16px rgba(45, 90, 39, 0.3);
}
.btn-primary:hover {
    background: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 90, 39, 0.4);
    color: white;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.7);
}
.btn-outline:hover {
    background: white;
    color: var(--green-dark);
    border-color: white;
}

/* ===== SECTIONS ===== */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background: var(--wood);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.section-mint { background: var(--green-light); }
.section-wood { background: linear-gradient(135deg, rgba(212, 167, 106, 0.12), rgba(212, 167, 106, 0.04)); }

/* ===== WELCOME ===== */
.welcome-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.welcome-text p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.welcome-text p.lead {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--brown-mid);
    line-height: 1.5;
}

.welcome-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.welcome-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

/* ===== QUICK OFFER ===== */
.quick-offer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.offer-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.offer-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    background: var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.offer-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== MINI GALLERY ===== */
.mini-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background var(--transition-smooth);
}

.gallery-item:hover::after {
    background: rgba(0, 0, 0, 0.1);
}

/* ===== WEATHER WIDGET ===== */
.weather-widget {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 420px;
    margin: 0 auto;
    transition: all var(--transition-smooth);
}

.weather-widget:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.weather-icon {
    font-size: 2.8rem;
    flex-shrink: 0;
}

.weather-info { flex: 1; }

.weather-temp {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--brown-dark);
    line-height: 1;
}

.weather-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: capitalize;
}

.weather-location {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* ===== MENU PAGE ===== */
.menu-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.5rem 0 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    mask-image: linear-gradient(to right, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
}

.menu-tabs::-webkit-scrollbar { display: none; }

.menu-tab {
    flex-shrink: 0;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    background: var(--gray-100);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.menu-tab:hover { background: var(--gray-200); }
.menu-tab.active {
    background: var(--green-dark);
    color: white;
}

.menu-category {
    display: none;
}

.menu-category.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

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

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
    border-left: 3px solid transparent;
}

.menu-item:hover {
    box-shadow: var(--shadow-md);
    border-left-color: var(--wood);
    transform: translateX(4px);
}

.menu-item-name {
    font-weight: 500;
    color: var(--text);
    font-size: 0.95rem;
}

.menu-item-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

.menu-item-price {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--green-dark);
    white-space: nowrap;
    margin-left: 1rem;
}

/* Menu item icon (category thumbnail) */
.menu-item-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    margin-right: 0.85rem;
    padding: 8px;
    background: var(--green-light);
    border-radius: 50%;
    box-sizing: border-box;
    transition: transform var(--transition-fast);
    object-fit: cover;
}

.menu-item-icon.photo {
    padding: 0;
    background: var(--gray-100);
}

.menu-item:hover .menu-item-icon {
    transform: scale(1.1);
}

/* Season Promo */
.season-promo {
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    color: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.season-promo h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.season-promo p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.season-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Lighter icon background for season-promo dark cards */
.season-promo .menu-item-icon {
    background: rgba(255, 255, 255, 0.15);
}

/* Full-bleed image cards inside season-promo */
.season-promo .menu-item--promo {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 0.15rem;
    min-height: 170px;
    padding: 1.25rem;
    border-left: none;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: default;
}

.season-promo .menu-item--promo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.7) 0%,
        rgba(0,0,0,0.25) 50%,
        rgba(0,0,0,0.05) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.season-promo .menu-item--promo:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.season-promo .menu-item--promo > * {
    position: relative;
    z-index: 2;
}

.season-promo .menu-item--promo .menu-item-name {
    font-size: 1rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.season-promo .menu-item--promo .menu-item-price {
    font-size: 1.1rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* Fallback card (no photo, e.g. magnets) */
.season-promo .menu-item--promo-fallback {
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 120px;
    background: rgba(255,255,255,0.08);
}

.season-promo .menu-item--promo-fallback::before {
    display: none;
}

.season-promo .menu-item--promo-fallback .menu-item-icon {
    width: 36px;
    height: 36px;
    margin-right: 0;
    margin-bottom: 0.5rem;
    padding: 6px;
    background: rgba(255,255,255,0.15);
}

/* ===== GALLERY PAGE ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.gallery-grid .gallery-item {
    aspect-ratio: auto;
}

.gallery-grid .gallery-item:nth-child(3n+1) { grid-row: span 2; }
.gallery-grid .gallery-item:nth-child(5n+2) { grid-row: span 2; }
.gallery-grid .gallery-item:nth-child(7n+3) { grid-row: span 2; }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 92vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-xl);
}

.lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    color: white;
    font-size: 2rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
    z-index: 2001;
}
.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 2.5rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
    z-index: 2001;
}
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }
.lightbox-prev { left: 0.5rem; }
.lightbox-next { right: 0.5rem; }

/* ===== ABOUT PAGE ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

.about-text p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.for-whom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 2rem;
}

.for-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    transition: all var(--transition-fast);
}

.for-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.for-item .icon { font-size: 1.3rem; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.contact-detail p, .contact-detail a {
    color: var(--text);
    font-size: 0.95rem;
}

.hours-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.hours-row .day { font-weight: 500; }

.rain-note {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    font-style: italic;
    color: var(--accent);
}

/* Map */
.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 350px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: var(--gray-100);
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-link svg {
    width: 1.2rem;
    height: 1.2rem;
    flex-shrink: 0;
}

.social-link:hover {
    color: white;
}

.social-link--facebook:hover {
    background: #1877F2;
}

.social-link--instagram:hover {
    background: #E4405F;
}

/* Footer social icons */
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
}

.footer-social a svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: rgba(255, 255, 255, 0.7);
    transition: fill var(--transition-fast);
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-social a:hover svg {
    fill: white;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--brown-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 3rem 0 2rem;
    font-size: 0.9rem;
}

/* Footer icons (loaded as <img>) → white */
.site-footer .icon-inline {
    filter: brightness(0) invert(1);
    opacity: 0.75;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-col p, .footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-col a:hover { color: var(--wood-light); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* ===== ANIMATIONS ===== */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-in {
    animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE: Tablet (768px+) ===== */
@media (min-width: 768px) {
    :root { --header-height: 80px; }

    .container { padding: 0 2rem; }
    .header-inner { padding: 0 2rem; }

    /* Nav */
    .main-nav {
        display: flex;
        align-items: center;
        gap: 1.75rem;
    }
    .hamburger { display: none; }
    .mobile-menu { display: none !important; }

    .logo .logo-img { height: 62px; }

    /* Hero */
    .hero-section { height: 90vh; height: 90svh; }
    .hero-short { height: 50vh; height: 50svh; }

    /* Welcome */
    .welcome-grid { grid-template-columns: 1fr 1fr; }

    /* Quick Offer */
    .quick-offer { grid-template-columns: repeat(3, 1fr); }

    /* Mini Gallery */
    .mini-gallery { grid-template-columns: repeat(3, 1fr); gap: 1rem; }

    /* Menu Items */
    .menu-items { grid-template-columns: 1fr 1fr; }

    /* Gallery */
    .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }

    /* About */
    .about-grid { grid-template-columns: 1fr 1fr; }
    .for-whom { grid-template-columns: repeat(3, 1fr); }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr 1fr; }

    /* Footer */
    .footer-grid { grid-template-columns: repeat(3, 1fr); }

    /* Section Spacing */
    .section { padding: 6rem 0; }

    /* Lightbox nav */
    .lightbox-prev { left: 2rem; }
    .lightbox-next { right: 2rem; }
}

/* ===== RESPONSIVE: Desktop (1024px+) ===== */
@media (min-width: 1024px) {
    .hero-section { height: 85vh; height: 85svh; }
    .hero-short { height: 55vh; height: 55svh; }

    .hero-content {
        bottom: 18%;
        max-width: 750px;
    }

    .menu-items { grid-template-columns: repeat(3, 1fr); }

    .gallery-grid { grid-template-columns: repeat(4, 1fr); }

    .contact-grid { grid-template-columns: 1fr 1.2fr; }

    .section { padding: 7rem 0; }
}

/* ===== RESPONSIVE: Large Desktop (1440px+) ===== */
@media (min-width: 1440px) {
    .container { padding: 0 3rem; }
    .header-inner { padding: 0 3rem; }

    .main-nav { gap: 2.25rem; }
    .main-nav a { font-size: 0.95rem; }

    .hero-content { max-width: 800px; }

    .menu-items { grid-template-columns: repeat(4, 1fr); }
}
