/* ========================================
   CINEMATIC RESTAURANT WEBSITE
   Hotel Sugran Family Garden & Restaurant
   ======================================== */

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0a0a0a;
    color: #f5f5f5;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========== TYPOGRAPHY ========== */
.heading-font {
    font-family: 'Playfair Display', serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

/* ========== CINEMATIC EFFECTS ========== */

/* Film Grain Overlay */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.1) 0px,
            transparent 1px,
            transparent 2px,
            rgba(0, 0, 0, 0.1) 3px
        );
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    animation: grain 8s steps(10) infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    30% { transform: translate(3%, -15%); }
    50% { transform: translate(12%, 9%); }
    70% { transform: translate(9%, 4%); }
    90% { transform: translate(-1%, 7%); }
}

/* Cinematic Scroll Reveal Animations */
[data-scroll-reveal] {
    opacity: 0;
    transform: translateY(100px) scale(0.95);
    transition: all 1.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

[data-scroll-reveal].revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ========== COLOR PALETTE ========== */
:root {
    --dark-bg: #0a0a0a;
    --warm-dark: #1a1210;
    --darker-warm: #0d0907;
    --gold: #d4a574;
    --gold-light: #e8b87d;
    --gold-dark: #c17b3c;
    --text-light: #f5f5f5;
    --text-gray: #b8b8b8;
    --text-dark-gray: #808080;
}

/* ========== UTILITY CLASSES ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== NAVIGATION ========== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
    transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

#navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-bottom-color: rgba(212, 165, 116, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(212, 165, 116, 0.5));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--text-gray);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    transition: all 0.4s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a0e0a 0%, #2d1810 30%, #1a0e0a 70%, #0d0907 100%);
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 80% 50%, rgba(193, 123, 60, 0.15) 0%, transparent 60%);
    animation: pulseGlow 10s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.3) 50%, rgba(10, 10, 10, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
}

.hero-label {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 500;
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 0.3s forwards;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 0.6s forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.9s;
}

.title-highlight {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-divider {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 2.5rem auto;
    opacity: 0;
    animation: fadeInScale 1.2s ease-out 1.2s forwards;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 1.5s forwards;
}

.highlight-text {
    color: var(--gold);
    font-weight: 600;
}

.hero-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 1.8s forwards;
}

.location-icon {
    font-size: 1.4rem;
    filter: drop-shadow(0 0 8px rgba(212, 165, 116, 0.6));
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 2.1s forwards;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--gold);
    border-radius: 0;
    transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: left 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark-bg);
}

.btn-primary::before {
    background: var(--dark-bg);
}

.btn-primary:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
}

.btn-secondary:hover {
    color: var(--dark-bg);
}

/* ========== SCROLL INDICATOR ========== */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeIn 1.2s ease-out 2.5s forwards, float 3s ease-in-out infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--gold);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--gold);
    border-radius: 2px;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(20px); }
}

.scroll-indicator p {
    font-size: 0.75rem;
    color: var(--text-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

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

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

@keyframes float {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -10px); }
}

/* ========== SECTION STYLES ========== */
section {
    padding: 150px 0;
    position: relative;
}

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

.section-label {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 2rem;
    color: var(--text-light);
}

.section-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 2rem auto 0;
    line-height: 1.8;
}

/* ========== STORY SECTION ========== */
.story-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--warm-dark) 50%, var(--dark-bg) 100%);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.story-subtitle {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.story-paragraph {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(26, 18, 16, 0.6);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 165, 116, 0.6);
    box-shadow: 0 20px 60px rgba(212, 165, 116, 0.15);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-dark-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ========== WHY CHOOSE US SECTION ========== */
.why-section {
    background: linear-gradient(135deg, var(--darker-warm) 0%, var(--dark-bg) 100%);
}

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

.why-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(26, 18, 16, 0.4);
    border: 1px solid rgba(212, 165, 116, 0.15);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.why-card:hover {
    transform: translateY(-15px);
    border-color: rgba(212, 165, 116, 0.5);
    box-shadow: 0 25px 70px rgba(212, 165, 116, 0.2);
    background: rgba(26, 18, 16, 0.7);
}

.why-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(212, 165, 116, 0.5));
}

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

.why-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========== MENU SECTION ========== */
.menu-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--warm-dark) 50%, var(--dark-bg) 100%);
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.menu-tab {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid rgba(212, 165, 116, 0.3);
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 0;
}

.menu-tab:hover,
.menu-tab.active {
    background: var(--gold);
    color: var(--dark-bg);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

.menu-content {
    display: none;
}

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

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.menu-item {
    padding: 2rem;
    background: rgba(26, 18, 16, 0.5);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    position: relative;
}

.menu-item:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 165, 116, 0.5);
    box-shadow: 0 20px 50px rgba(212, 165, 116, 0.15);
}

.menu-item.featured {
    background: rgba(212, 165, 116, 0.1);
    border-color: var(--gold);
}

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

.menu-item h4 {
    font-size: 1.4rem;
    color: var(--gold);
}

.menu-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-light);
}

.menu-description {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.menu-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--gold);
    color: var(--dark-bg);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
}

/* ========== SPECIALTIES SECTION ========== */
.specialties-section {
    background: linear-gradient(135deg, var(--darker-warm) 0%, var(--dark-bg) 100%);
}

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

.specialty-card {
    background: rgba(26, 18, 16, 0.6);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 8px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.specialty-card:hover {
    transform: translateY(-15px);
    border-color: rgba(212, 165, 116, 0.6);
    box-shadow: 0 30px 80px rgba(212, 165, 116, 0.2);
}

.specialty-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.specialty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.specialty-card:hover .specialty-image img {
    transform: scale(1.1);
}

.specialty-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.8) 100%);
}

.specialty-content {
    padding: 2.5rem;
}

.specialty-content h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.specialty-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.specialty-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.5rem 1.2rem;
    background: rgba(212, 165, 116, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
}

/* ========== ATMOSPHERE SECTION ========== */
.atmosphere-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--warm-dark) 50%, var(--dark-bg) 100%);
}

.atmosphere-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.gallery-item.large {
    grid-row: span 2;
    height: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    background: linear-gradient(0deg, rgba(10, 10, 10, 0.95) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: var(--text-gray);
}

/* ========== REVIEWS SECTION ========== */
.reviews-section {
    background: linear-gradient(135deg, var(--darker-warm) 0%, var(--dark-bg) 100%);
}

.rating-highlight {
    text-align: center;
    padding: 3rem;
    background: rgba(26, 18, 16, 0.6);
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    max-width: 500px;
    margin: 0 auto 5rem;
}

.rating-stars {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.star {
    color: var(--gold);
    margin: 0 0.2rem;
}

.star.filled {
    color: var(--gold);
}

.star.half {
    background: linear-gradient(90deg, var(--gold) 50%, var(--text-dark-gray) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-number {
    font-size: 4.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.rating-text {
    color: var(--text-gray);
    font-size: 1.1rem;
}

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

.review-card {
    padding: 2.5rem;
    background: rgba(26, 18, 16, 0.5);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 165, 116, 0.5);
    box-shadow: 0 25px 60px rgba(212, 165, 116, 0.2);
}

.review-stars {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.review-text {
    color: var(--text-gray);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.author-name {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.author-label {
    color: var(--text-dark-gray);
    font-size: 0.85rem;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--warm-dark) 50%, var(--dark-bg) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(212, 165, 116, 0.5));
}

.contact-details h4 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-gray);
    line-height: 1.7;
}

.features-list {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(26, 18, 16, 0.5);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 8px;
}

.features-list h4 {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

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

.feature-item {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.contact-map {
    height: 100%;
    min-height: 500px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(26, 18, 16, 0.6);
    border: 2px solid rgba(212, 165, 116, 0.2);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
}

.map-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(212, 165, 116, 0.5));
}

.map-title {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.map-location {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark-bg);
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    padding: 4rem 0;
}

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

.footer-brand h3 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-gray);
    margin-bottom: 0.3rem;
}

.footer-tagline {
    color: var(--gold);
    font-style: italic;
}

.footer-divider {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 2rem auto;
}

.footer-copyright {
    color: var(--text-dark-gray);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ========== CUSTOM SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 12px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

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

    .atmosphere-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-row: span 1;
        height: 400px;
    }

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

@media (max-width: 768px) {
    section {
        padding: 100px 0;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .story-stats {
        grid-template-columns: 1fr;
    }

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

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

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

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

@media (max-width: 480px) {
    .container,
    .container-wide {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .logo-main {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.75rem;
    }
}