/* assets/css/style.css */
/* Royal Bliss Restaurant - Main Stylesheet */

:root {
    --black: #0a0705;
    --charcoal: #1a1410;
    --brown: #6b3f1f;
    --brown-lt: #a0622a;
    --red: #9b1c1c;
    --red-lt: #c0392b;
    --gold: #d4a843;
    --gold-lt: #f0c96a;
    --cream: #fdf6ec;
    --white: #ffffff;
    --text-dim: #c9b99a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--cream);
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--black);
}
::-webkit-scrollbar-thumb {
    background: var(--brown);
    border-radius: 3px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .4s ease;
}

nav.scrolled {
    background: rgba(10,7,5,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212,168,67,0.15);
    padding: .9rem 4rem;
}

.nav-logo a {
    text-decoration: none;
}

.nav-logo .script {
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: .02em;
}

.nav-logo .tagline {
    font-size: .58rem;
    letter-spacing: .35em;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-top: -.1rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    position: relative;
    transition: color .3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform .3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Buttons */
.btn-outline {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: .55rem 1.4rem;
    font-family: 'Josefin Sans', sans-serif;
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s;
    cursor: pointer;
    background: transparent;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-solid {
    background: var(--red);
    color: var(--white);
    padding: .55rem 1.4rem;
    font-family: 'Josefin Sans', sans-serif;
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--red);
    transition: all .3s;
    cursor: pointer;
}

.btn-solid:hover {
    background: var(--red-lt);
    border-color: var(--red-lt);
}

.btn-white {
    background: var(--white);
    color: var(--red);
    padding: .8rem 2rem;
    font-family: 'Josefin Sans', sans-serif;
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    transition: all .3s;
}

.btn-white:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

/* Hero Section */
#hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 4rem 6rem 4rem;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-size: .65rem;
    letter-spacing: .5em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp .8s .3s forwards;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 1.8rem;
    opacity: 0;
    animation: fadeUp .8s .5s forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-title .red-accent {
    color: var(--red);
}

.hero-desc {
    font-size: .85rem;
    line-height: 1.9;
    color: var(--text-dim);
    max-width: 380px;
    margin-bottom: 2.8rem;
    opacity: 0;
    animation: fadeUp .8s .7s forwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    opacity: 0;
    animation: fadeUp .8s .9s forwards;
}

.hero-divider {
    width: 1px;
    height: 50px;
    background: rgba(212,168,67,.3);
    margin: 0 .5rem;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: .8rem;
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.hero-meta span {
    color: var(--gold);
    font-size: 1.1rem;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-img-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 3px;
}

.hero-img-cell {
    overflow: hidden;
    position: relative;
}

.hero-img-cell::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,7,5,.5) 0%, transparent 70%);
}

.hero-img-cell:nth-child(1) {
    background: linear-gradient(135deg, #3d1a08 0%, #6b3f1f 100%);
}

.hero-img-cell:nth-child(2) {
    background: linear-gradient(135deg, #1a0a02 0%, #4a2010 100%);
    grid-row: 1 / 3;
}

.hero-img-cell:nth-child(3) {
    background: linear-gradient(135deg, #9b1c1c 0%, #6b1010 100%);
}

.hero-img-cell::before {
    content: attr(data-icon);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    opacity: .15;
    z-index: 1;
}

.hero-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 5;
    background: rgba(10,7,5,.85);
    border: 1px solid rgba(212,168,67,.3);
    backdrop-filter: blur(8px);
    padding: 1rem 1.4rem;
}

.hero-badge .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--gold);
    line-height: 1;
}

.hero-badge .label {
    font-size: .58rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--text-dim);
}

/* Marquee Band */
.marquee-band {
    background: var(--red);
    padding: .9rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.marquee-inner {
    display: flex;
    gap: 3rem;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    font-size: .62rem;
    letter-spacing: .4em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.marquee-item::after {
    content: '✦';
    color: rgba(255,255,255,.5);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* Sections */
section {
    padding: 6rem 0;
}

.section-label {
    font-size: .62rem;
    letter-spacing: .5em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 300;
    line-height: 1.1;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

/* About Section */
#about {
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-frame {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(145deg, var(--brown) 0%, var(--black) 100%);
    position: relative;
}

.about-frame::before {
    content: '🍽️';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    opacity: .2;
}

.about-frame-border {
    position: absolute;
    inset: -12px;
    border: 1px solid rgba(212,168,67,.25);
    pointer-events: none;
}

.about-stats {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--red);
    padding: 1.5rem 2rem;
}

.about-stats .big {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--white);
    line-height: 1;
}

.about-stats .small {
    font-size: .6rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
}

.about-text p {
    font-size: .88rem;
    line-height: 2;
    color: var(--text-dim);
    margin-bottom: 1.4rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.feat-item {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
}

.feat-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: rgba(212,168,67,.1);
    border: 1px solid rgba(212,168,67,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
}

.feat-label {
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--cream);
}

.feat-sub {
    font-size: .7rem;
    color: var(--text-dim);
    margin-top: .2rem;
}

/* Menu Section */
#menu {
    background: var(--black);
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.menu-cats {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.cat-btn {
    padding: .45rem 1.2rem;
    font-family: 'Josefin Sans', sans-serif;
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,.15);
    background: transparent;
    color: var(--text-dim);
    cursor: pointer;
    transition: all .3s;
}

.cat-btn.active,
.cat-btn:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
}

.menu-card {
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform .3s;
}

.menu-card:hover {
    transform: translateY(-4px);
}

.menu-card:hover .menu-card-overlay {
    opacity: 1;
}

.menu-img {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--brown) 0%, var(--charcoal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255,255,255,.15);
    position: relative;
    overflow: hidden;
}

.menu-img .dish-emoji {
    font-size: 2.5rem;
    opacity: .4;
}

.menu-badge {
    position: absolute;
    top: .8rem;
    right: .8rem;
    background: var(--red);
    color: var(--white);
    font-size: .55rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: .25rem .6rem;
}

.menu-card-body {
    padding: 1.2rem 1.4rem 1.4rem;
}

.menu-card-cat {
    font-size: .58rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .4rem;
}

.menu-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: .5rem;
}

.menu-card-desc {
    font-size: .72rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--gold);
}

.menu-price sup {
    font-size: .7rem;
    vertical-align: super;
}

.add-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--red);
    background: transparent;
    color: var(--red);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-btn:hover {
    background: var(--red);
    color: var(--white);
}

.menu-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(155,28,28,.08);
    border: 1px solid rgba(155,28,28,.3);
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
}

/* QR Feature Section */
#qr-feature {
    background: linear-gradient(135deg, var(--charcoal) 0%, #120c08 100%);
    position: relative;
    overflow: hidden;
}

.qr-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.qr-visual {
    display: flex;
    justify-content: center;
}

.qr-mockup {
    width: 240px;
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 40px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(212,168,67,.2);
    text-align: center;
    position: relative;
}

.qr-mockup-logo {
    font-family: 'Great Vibes', cursive;
    color: var(--brown);
    font-size: 1.4rem;
    margin-bottom: .5rem;
}

.qr-code-box {
    width: 160px;
    height: 160px;
    margin: 0 auto 1rem;
    background: #0a0705;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 2px;
    padding: 10px;
}

.qr-dot {
    background: var(--black);
    border-radius: 1px;
}

.qr-table-label {
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--charcoal);
    font-family: 'Josefin Sans', sans-serif;
}

.qr-table-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--red);
    font-weight: 700;
    line-height: 1;
}

.qr-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.qr-step {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.qr-step-num {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border: 1px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
}

.qr-step-title {
    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: .3rem;
}

.qr-step-desc {
    font-size: .75rem;
    color: var(--text-dim);
    line-height: 1.7;
}

/* Experience Section */
#experience {
    background: var(--black);
}

.exp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5px;
    margin-top: 3rem;
}

.exp-card {
    background: var(--charcoal);
    padding: 2.5rem 2rem;
    border-bottom: 2px solid transparent;
    transition: border-color .3s, background .3s;
    position: relative;
    overflow: hidden;
}

.exp-card:hover {
    background: #201510;
    border-bottom-color: var(--gold);
}

.exp-card::before {
    content: attr(data-num);
    position: absolute;
    top: -1.5rem;
    right: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    font-weight: 700;
    color: rgba(255,255,255,.025);
    line-height: 1;
}

.exp-icon {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

.exp-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--cream);
    margin-bottom: .7rem;
}

.exp-desc {
    font-size: .75rem;
    color: var(--text-dim);
    line-height: 1.8;
}

/* Gallery */
#gallery {
    background: var(--charcoal);
    padding: 5rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 3px;
}

.gallery-cell {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-cell:first-child {
    grid-row: 1/3;
}

.gallery-inner {
    width: 100%;
    height: 100%;
    transition: transform .5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    opacity: .5;
}

.gallery-cell:hover .gallery-inner {
    transform: scale(1.05);
}

.g1 { background: linear-gradient(135deg, #3d1a08, #8b4513); }
.g2 { background: linear-gradient(135deg, #6b1010, #2d0000); }
.g3 { background: linear-gradient(135deg, #1a3a1a, #0a200a); }
.g4 { background: linear-gradient(135deg, #3a2a1a, #6b4f2a); }
.g5 { background: linear-gradient(135deg, #2a1a3a, #4a2a6a); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,7,5,.5);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity .3s;
}

.gallery-cell:hover .gallery-overlay {
    opacity: 1;
}

.gallery-label {
    font-size: .65rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
}

/* Testimonials */
#testimonials {
    background: var(--black);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 3rem;
}

.testi-card {
    background: var(--charcoal);
    padding: 2.5rem;
    border-top: 1px solid transparent;
    transition: border-color .3s;
}

.testi-card:hover {
    border-top-color: var(--gold);
}

.testi-stars {
    color: var(--gold);
    font-size: .8rem;
    margin-bottom: 1.2rem;
    letter-spacing: .2em;
}

.testi-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--brown);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.testi-name {
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--cream);
}

.testi-role {
    font-size: .65rem;
    color: var(--text-dim);
}

/* Catering CTA */
#catering {
    background: linear-gradient(135deg, var(--red) 0%, #6b1010 100%);
    position: relative;
    overflow: hidden;
}

.catering-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 3rem;
}

.catering-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: .8rem;
}

.catering-desc {
    font-size: .85rem;
    color: rgba(255,255,255,.75);
    line-height: 1.8;
}

/* Contact Section */
#contact {
    background: var(--charcoal);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.map-placeholder {
    background: var(--black);
    aspect-ratio: 16/10;
    border: 1px solid rgba(212,168,67,.15);
    position: relative;
    overflow: hidden;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    font-size: .6rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(10,7,5,.8);
    padding: .4rem .8rem;
}

.contact-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--cream);
}

.contact-row {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: 1rem;
}

.contact-icon {
    color: var(--gold);
    font-size: 1rem;
    width: 20px;
}

.contact-text {
    font-size: .82rem;
    color: var(--text-dim);
}

.contact-hours {
    margin-top: 2rem;
}

.contact-hours h4 {
    font-size: .65rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: .5rem 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
    font-size: .75rem;
}

.hours-day {
    color: var(--cream);
    letter-spacing: .05em;
}

.hours-time {
    color: var(--text-dim);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 500;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    animation: pulse-wa 2s ease-in-out infinite;
    transition: transform .3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse-wa {
    0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,.7); }
}

/* Cart Icon */
.cart-icon {
    position: fixed;
    top: 1.2rem;
    right: 4rem;
    z-index: 200;
    background: var(--red);
    border: none;
    color: var(--white);
    width: 44px;
    height: 44px;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s;
}

.cart-icon:hover {
    background: var(--red-lt);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--gold);
    color: var(--black);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: .6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
footer {
    background: var(--black);
    border-top: 1px solid rgba(212,168,67,.1);
    padding: 3rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
    margin-bottom: 1.5rem;
}

.footer-brand .script {
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
    color: var(--gold);
}

.footer-brand p {
    font-size: .75rem;
    color: var(--text-dim);
    line-height: 1.9;
    margin-top: .8rem;
    max-width: 240px;
}

.footer-col h4 {
    font-size: .65rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 1.2rem;
}

.footer-col a {
    display: block;
    font-size: .75rem;
    color: var(--text-dim);
    text-decoration: none;
    margin-bottom: .6rem;
    transition: color .3s;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .65rem;
    color: var(--text-dim);
    letter-spacing: .1em;
}

.footer-payments {
    display: flex;
    gap: .5rem;
    align-items: center;
}

.pay-badge {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    padding: .2rem .6rem;
    font-size: .6rem;
    letter-spacing: .1em;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    nav {
        padding: 1rem 1.5rem;
    }
    
    nav.scrolled {
        padding: .8rem 1.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    #hero {
        grid-template-columns: 1fr;
        min-height: 100svh;
    }
    
    .hero-left {
        padding: 6rem 1.5rem 3rem;
    }
    
    .hero-right {
        display: none;
    }
    
    .about-grid,
    .qr-grid,
    .contact-grid,
    .catering-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .exp-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-cell:first-child {
        grid-row: auto;
    }
    
    .testi-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .cart-icon {
        top: auto;
        bottom: 2rem;
        right: 2rem;
    }
}

@media (max-width: 600px) {
    .exp-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Additional Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Container padding adjustment */
    .container {
        padding: 0 1rem !important;
    }
    
    /* Section padding adjustment */
    section {
        padding: 3rem 0 !important;
    }
    
    /* Heading size adjustments */
    .section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem) !important;
    }
    
    /* Button adjustments */
    .btn-solid, .btn-outline {
        padding: 0.4rem 1rem !important;
        font-size: 0.6rem !important;
    }
    
    /* Footer social links */
    .social-links {
        gap: 0.5rem;
    }
    
    .social-links a {
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
    }
}

@media (max-width: 480px) {
    /* Further adjustments for very small screens */
    .section-label {
        font-size: 0.55rem !important;
        letter-spacing: 0.3em !important;
    }
    
    .section-title {
        line-height: 1.2 !important;
    }
    
    /* Footer brand text */
    .footer-brand .script {
        font-size: 1.8rem !important;
    }
    
    .footer-brand p {
        font-size: 0.7rem !important;
        line-height: 1.6 !important;
    }
    
    /* Footer columns */
    .footer-col h4 {
        font-size: 0.6rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .footer-col a {
        font-size: 0.7rem !important;
        margin-bottom: 0.4rem !important;
    }
}