/* ============================================
   ПАБ «ИРЛАНДЕЦ» — Фирменный стиль
   Цветовая палитра: бирюзовый кирпич, тёмное дерево, янтарный свет
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Основные цвета (с фото) */
    --teal-brick: #1a6b5a;        /* бирюзовый/зелёный кирпич */
    --teal-dark: #0f4a3d;         /* тёмный бирюзовый */
    --teal-light: #2a8b72;        /* светлый бирюзовый */
    --wood-dark: #3a2215;         /* тёмное дерево (барная стойка) */
    --wood-medium: #5c3a1e;       /* среднее дерево (столы) */
    --wood-light: #8b6240;        /* светлое дерево */
    --brick-red: #8b4513;         /* красный кирпич */
    --brick-warm: #a0522d;        /* тёплый кирпич */
    --amber: #d4a030;             /* янтарный (свет, пиво) */
    --amber-light: #f0c860;       /* светлый янтарный */
    --amber-glow: rgba(212, 160, 48, 0.15); /* свечение */
    
    /* Нейтральные */
    --bg-dark: #0d0d0d;           /* почти чёрный */
    --bg-charcoal: #1a1a1a;       /* тёмный фон */
    --bg-warm: #1c1510;           /* тёмный тёплый */
    --surface: #241e16;           /* поверхность */
    --surface-light: #2e261e;     /* светлая поверхность */
    --text-primary: #f5f0e8;      /* основной текст */
    --text-secondary: #c4b8a8;    /*.secondary текст */
    --text-muted: #8a7e6e;        /* приглушённый текст */
    --white: #fff;
    --cream: #f8f3eb;
    
    /* Акценты */
    --guinness-black: #1a1a1a;
    --guinness-cream: #f5e6c8;
    --red-accent: #c0392b;        /* красный акцент */
    --green-accent: #27ae60;      /* зелёный (ирландский) */
    
    /* Типографика */
    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-gothic: 'UnifrakturMaguntia', cursive;
    --font-body: 'Roboto', 'Helvetica Neue', sans-serif;
    
    /* Размеры */
    --nav-height: 72px;
    --container-max: 1200px;
    --container-padding: 24px;
    
    /* Тени */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 30px rgba(212, 160, 48, 0.15);
    
    /* Переходы */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Текстура кирпича на фоне */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 49px,
            rgba(26, 107, 90, 0.02) 49px,
            rgba(26, 107, 90, 0.02) 50px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 24px,
            rgba(26, 107, 90, 0.015) 24px,
            rgba(26, 107, 90, 0.015) 25px
        );
    pointer-events: none;
    z-index: 0;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --- Container --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 1;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 12px;
}

.section-tag.center {
    display: block;
    text-align: center;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--text-primary);
    margin-bottom: 48px;
}

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

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: var(--transition-slow);
}

.btn:hover::after {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--amber), var(--amber-light));
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(212, 160, 48, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 160, 48, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--amber);
}

.btn-secondary:hover {
    background: rgba(212, 160, 48, 0.1);
    border-color: var(--amber-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--amber);
    border: 1px solid var(--amber);
}

.btn-outline:hover {
    background: var(--amber);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 48px;
    font-size: 1rem;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 160, 48, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.95);
    box-shadow: var(--shadow-md);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 1.6rem;
    color: var(--green-accent);
    filter: drop-shadow(0 0 8px rgba(39, 174, 96, 0.3));
}

.logo-text {
    background: linear-gradient(135deg, var(--text-primary), var(--amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-secondary);
    transition: var(--transition);
    border-radius: 4px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--amber);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link-cta {
    background: linear-gradient(135deg, var(--amber), var(--amber-light));
    color: var(--bg-dark) !important;
    font-weight: 500;
    padding: 10px 24px;
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    box-shadow: 0 4px 15px rgba(212, 160, 48, 0.3);
    transform: translateY(-1px);
}

/* Мобильное меню */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--bg-dark);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(13,13,13,0.7) 0%, rgba(13,13,13,0.4) 40%, rgba(13,13,13,0.6) 70%, rgba(13,13,13,0.95) 100%),
        radial-gradient(ellipse at 30% 20%, rgba(26, 107, 90, 0.15) 0%, transparent 50%);
}

.hero-boat {
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.boat-svg {
    width: 100%;
    height: auto;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-15px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 24px 80px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.1;
}

.title-accent {
    background: linear-gradient(135deg, var(--text-primary), var(--amber), var(--amber-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 10px rgba(212, 160, 48, 0.2));
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.hero-scroll span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 8px;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--amber);
    border-bottom: 2px solid var(--amber);
    transform: rotate(45deg);
    margin: 0 auto;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 1; }
    50% { transform: rotate(45deg) translate(5px, 5px); opacity: 0.5; }
}

/* --- Features Section --- */
.features {
    padding: 100px 0;
    background: var(--bg-charcoal);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--amber), transparent);
    opacity: 0.3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.feature-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: 8px;
    background: var(--surface);
    border: 1px solid rgba(212, 160, 48, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal-brick), var(--amber));
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 160, 48, 0.2);
    box-shadow: var(--shadow-glow);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- About Preview --- */
.about-preview {
    padding: 100px 0;
    background: var(--bg-dark);
}

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

.about-preview-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 24px;
    color: var(--text-primary);
}

.about-preview-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.about-preview-text .btn {
    margin-top: 24px;
}

.visual-frame {
    position: relative;
    padding: 60px 40px;
    background: 
        linear-gradient(135deg, rgba(26, 107, 90, 0.1), rgba(212, 160, 48, 0.05));
    border: 1px solid rgba(212, 160, 48, 0.15);
    border-radius: 8px;
    text-align: center;
}

.frame-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: var(--amber);
    opacity: 0.4;
}

.frame-tl { top: -1px; left: -1px; border-top: 2px solid; border-left: 2px solid; }
.frame-tr { top: -1px; right: -1px; border-top: 2px solid; border-right: 2px solid; }
.frame-bl { bottom: -1px; left: -1px; border-bottom: 2px solid; border-left: 2px solid; }
.frame-br { bottom: -1px; right: -1px; border-bottom: 2px solid; border-right: 2px solid; }

.visual-quote {
    font-family: var(--font-gothic);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--amber);
    display: block;
    margin-bottom: 12px;
}

.visual-content p {
    color: var(--text-secondary);
    font-style: italic;
}

/* --- Menu Preview --- */
.menu-preview {
    padding: 100px 0;
    background: var(--bg-charcoal);
    position: relative;
}

.menu-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(26, 107, 90, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 160, 48, 0.05) 0%, transparent 50%);
}

.menu-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.menu-preview-card {
    padding: 40px 32px;
    background: var(--surface);
    border: 1px solid rgba(212, 160, 48, 0.08);
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.menu-preview-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 160, 48, 0.2);
    box-shadow: var(--shadow-glow);
}

.menu-card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.menu-preview-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.menu-preview-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.menu-price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--amber);
}

.menu-preview-cta {
    text-align: center;
    margin-top: 48px;
    position: relative;
}

/* --- Atmosphere / Gallery Preview --- */
.atmosphere {
    padding: 100px 0;
    background: var(--bg-dark);
}

.atmosphere-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
}

.atmosphere-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

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

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

.atmosphere-item .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 2;
    opacity: 0;
    transition: var(--transition);
}

.atmosphere-item:hover .gallery-overlay {
    opacity: 1;
}

.atmosphere-large {
    grid-row: span 2;
}

.atmosphere-wide {
    grid-column: span 2;
}

.atmosphere-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.atmosphere-placeholder span {
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-primary);
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    opacity: 0;
    transition: var(--transition);
}

.atmosphere-item:hover .atmosphere-placeholder span {
    opacity: 1;
}

/* Фоны для плейсхолдеров */
.atmosphere-placeholder[data-bg="brick"] {
    background: linear-gradient(135deg, var(--brick-red), var(--brick-warm), var(--teal-brick));
}

.atmosphere-placeholder[data-bg="boat"] {
    background: linear-gradient(135deg, var(--wood-dark), var(--wood-medium), var(--amber));
}

.atmosphere-placeholder[data-bg="guitar"] {
    background: linear-gradient(135deg, var(--brick-warm), var(--wood-medium), var(--teal-dark));
}

.atmosphere-placeholder[data-bg="piano"] {
    background: linear-gradient(135deg, var(--wood-dark), var(--wood-light), var(--amber));
}

.atmosphere-placeholder[data-bg="bar"] {
    background: linear-gradient(135deg, var(--teal-dark), var(--wood-dark), var(--amber-glow));
}

.atmosphere-item:hover .atmosphere-placeholder {
    transform: scale(1.05);
}

.atmosphere-cta {
    text-align: center;
    margin-top: 48px;
}

/* --- Testimonials --- */
.testimonials {
    padding: 80px 0;
    background: var(--bg-charcoal);
    text-align: center;
    position: relative;
}

.testimonials::before,
.testimonials::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--amber);
    opacity: 0.3;
}

.testimonials::before { top: 0; }
.testimonials::after { bottom: 0; }

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--amber);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: -20px;
}

.testimonial-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto 24px;
    line-height: 1.8;
}

.testimonial-author {
    font-size: 0.85rem;
    color: var(--amber);
    font-weight: 500;
}

/* --- CTA Section --- */
.cta-section {
    padding: 100px 0;
    background: 
        radial-gradient(ellipse at center, rgba(212, 160, 48, 0.08), transparent 60%),
        var(--bg-dark);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 16px;
    color: var(--text-primary);
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 1rem;
}

/* --- Footer --- */
.footer {
    padding: 60px 0 30px;
    background: var(--bg-charcoal);
    border-top: 1px solid rgba(212, 160, 48, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-brand .logo-icon {
    font-size: 2rem;
    margin-bottom: 4px;
}

.footer-brand .logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 12px;
}

.footer h4 {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 16px;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--amber);
}

.footer-info ul li {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 1px solid rgba(212, 160, 48, 0.1);
}

.social-link:hover {
    background: var(--amber);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(212, 160, 48, 0.3);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(212, 160, 48, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-slogan {
    color: var(--amber) !important;
    font-family: var(--font-display);
    font-size: 1rem !important;
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* --- Inner Pages --- */
.page-header {
    padding: 140px 0 60px;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(26, 107, 90, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-dark), var(--bg-charcoal));
    text-align: center;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--amber), transparent);
    opacity: 0.3;
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-section {
    padding: 80px 0;
}

.page-section:nth-child(even) {
    background: var(--bg-charcoal);
}

/* --- Menu Page --- */
.menu-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.menu-category-btn {
    padding: 10px 24px;
    background: var(--surface);
    border: 1px solid rgba(212, 160, 48, 0.1);
    border-radius: 4px;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.menu-category-btn:hover,
.menu-category-btn.active {
    background: var(--amber);
    color: var(--bg-dark);
    border-color: var(--amber);
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 24px;
    background: var(--surface);
    border-radius: 8px;
    border: 1px solid rgba(212, 160, 48, 0.05);
    transition: var(--transition);
}

.menu-item:hover {
    border-color: rgba(212, 160, 48, 0.15);
    box-shadow: var(--shadow-sm);
}

.menu-item-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.menu-item-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.menu-item-price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--amber);
    white-space: nowrap;
    margin-left: 16px;
}

/* --- Gallery Page --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

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

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

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 0.9rem;
}

/* Лайтбокс */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--amber);
    border-color: var(--amber);
    color: var(--bg-dark);
}

/* --- Booking Page --- */
.booking-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: var(--surface);
    border-radius: 8px;
    border: 1px solid rgba(212, 160, 48, 0.1);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-charcoal);
    border: 1px solid rgba(212, 160, 48, 0.15);
    border-radius: 4px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(212, 160, 48, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.about-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.about-value {
    padding: 24px;
    background: var(--surface);
    border-radius: 8px;
    border-left: 3px solid var(--amber);
}

.about-value h4 {
    font-size: 0.9rem;
    color: var(--amber);
    margin-bottom: 8px;
}

.about-value p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* --- Contacts Page --- */
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-card {
    padding: 32px;
    background: var(--surface);
    border-radius: 8px;
    border: 1px solid rgba(212, 160, 48, 0.1);
}

.contact-info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--amber);
}

.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.contact-item-icon {
    font-size: 1.2rem;
    margin-top: 2px;
}

.contact-item-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: var(--surface);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 160, 48, 0.1);
    margin-top: 24px;
}

.map-placeholder span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.work-schedule {
    margin-top: 24px;
}

.work-schedule h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(212, 160, 48, 0.05);
    font-size: 0.85rem;
}

.schedule-row .day {
    color: var(--text-secondary);
}

.schedule-row .time {
    color: var(--amber);
    font-weight: 500;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-preview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 16px;
        --nav-height: 64px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 32px;
        gap: 4px;
        transition: var(--transition);
        border-left: 1px solid rgba(212, 160, 48, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 12px 16px;
    }
    
    .nav-link-cta {
        margin-top: 16px;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .atmosphere-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 150px;
    }
    
    .atmosphere-large {
        grid-row: span 1;
    }
    
    .atmosphere-wide {
        grid-column: span 2;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .menu-items {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .atmosphere-grid {
        grid-template-columns: 1fr;
    }
    
    .atmosphere-wide {
        grid-column: span 1;
    }
}

/* --- Дополнительные эффекты --- */

/* Пульс для кнопки бронирования */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 15px rgba(212, 160, 48, 0.2); }
    50% { box-shadow: 0 0 25px rgba(212, 160, 48, 0.4); }
}

.nav-link-cta {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Свечение для заголовков */
.hero-title {
    text-shadow: 0 0 60px rgba(212, 160, 48, 0.1);
}

/* Кастомный скроллбар */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--teal-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--teal-brick);
}

/* Выделение текста */
::selection {
    background: rgba(212, 160, 48, 0.3);
    color: var(--text-primary);
}

/* Эффект кирпичной стены для секций */
.brick-pattern {
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 38px,
            rgba(26, 107, 90, 0.03) 38px,
            rgba(26, 107, 90, 0.03) 40px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 78px,
            rgba(26, 107, 90, 0.02) 78px,
            rgba(26, 107, 90, 0.02) 80px
        );
}

/* Страница успеха бронирования */
.booking-success {
    text-align: center;
    padding: 60px 40px;
    background: var(--surface);
    border-radius: 8px;
    border: 1px solid rgba(39, 174, 96, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.booking-success .success-icon {
    font-size: 4rem;
    margin-bottom: 16px;
    display: block;
}

.booking-success h2 {
    color: var(--green-accent);
    margin-bottom: 12px;
}

.booking-success p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Загрузка изображений */
.img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}
