/* ── RESET & ROOT ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --gold: #D4A843;
    --gold-light: #F0C870;
    --gold-faint: rgba(212, 168, 67, 0.12);
    --cream: #FBF7EF;
    --dark: #0D0A05;
    --dark2: #16110A;
    --dark3: #1F1710;
    --surface: rgba(255, 255, 255, 0.04);
    --surface2: rgba(255, 255, 255, 0.07);
    --border: rgba(212, 168, 67, 0.2);
    --border2: rgba(212, 168, 67, 0.35);
    --text-dim: rgba(251, 247, 239, 0.55);
    --text-muted: rgba(251, 247, 239, 0.35);
    --radius-lg: 20px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --raduni-orange-color: #e55e29;
    --raduni-red-color: #b72231;
    --raduni-yellow-color: #f8bc2e;
}

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

body {
    font-family: 'DM Sans', 'Jost', sans-serif;
    background: var(--dark);
    color: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── OFFER BANNER ── */
.offer-banner {
    background: linear-gradient(90deg, var(--raduni-orange-color), var(--raduni-red-color), var(--raduni-yellow-color));
    background-size: 200% 100%;
    animation: shimmer 4s linear infinite;
    color: var(--dark);
    text-align: center;
    padding: 0.55rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    position: relative;
    z-index: 200;
}

.offer-banner a {
    color: var(--dark);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}

@keyframes shimmer {
    0% {
        background-position: 0%
    }

    100% {
        background-position: 200%
    }
}

/* ── NAV ── */
nav {
    /* position: fixed; */
    top: 0;
    left: 0;
    right: 0;
    z-index: 11150;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
    transition: background var(--transition), backdrop-filter var(--transition), padding var(--transition);
    background: rgba(13, 10, 5, 0.75);
}

nav.scrolled {
    background: rgba(13, 10, 5, 0.75);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 3.5rem;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-decoration: none;
}

.nav-logo-main {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.06em;
}

.nav-logo-main img {
    width: 300px;
}

.nav-logo-sub {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-dim);
    text-align: center;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    list-style: none;
}

.nav-center a {
    color: #fff;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    transition: color var(--transition);
}

.nav-center a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 100%;
    height: 2px;
    background: var(--raduni-yellow-color);
    transition: right var(--transition);
}

.nav-center a:hover {
    color: var(--cream);
}

.nav-center a:hover::after {
    right: 0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.nav-phone {
    font-size: 0.78rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: color var(--transition);
}

.nav-phone:hover {
    color: var(--raduni-yellow-color);
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.3rem;
    background: var(--raduni-red-color);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 10px;
    /* transition: background var(--transition), transform 0.15s; */
}

.btn-nav:hover {
    background: var(--raduni-orange-color);
    transform: translateY(-1px);
}

/* ── HERO SLIDER ── */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 600px;
    overflow: hidden;
    background: var(--dark);
}

/* Slides */
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* Slide backgrounds via color + SVG pattern combos (no real images needed) */
.slide-bg {
    position: absolute;
    inset: 0;
}

.slide-1 .slide-bg {
    /* background:
        radial-gradient(ellipse 70% 80% at 65% 45%, rgba(200, 75, 12, 0.28) 0%, transparent 55%),
        radial-gradient(ellipse 50% 50% at 20% 70%, rgba(212, 168, 67, 0.18) 0%, transparent 50%),
        linear-gradient(135deg, #0D0A05 0%, #1A0E06 50%, #0F0805 100%); */
    background-image: url("./images/raduni-hero1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.slide-2 .slide-bg {
    /* background:
        radial-gradient(ellipse 65% 75% at 30% 40%, rgba(120, 40, 120, 0.2) 0%, transparent 55%),
        radial-gradient(ellipse 55% 55% at 75% 70%, rgba(212, 168, 67, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #080510 0%, #120A1A 50%, #0A0810 100%); */
    background: url("./images/raduni-hero2.jpg");
    background-repeat: no-repeat;
    background-position: cover;
    background-position: center;
}

.slide-3 .slide-bg {
    /* background:
        radial-gradient(ellipse 75% 70% at 55% 50%, rgba(10, 80, 50, 0.3) 0%, transparent 55%),
        radial-gradient(ellipse 45% 60% at 15% 30%, rgba(212, 168, 67, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, #050D08 0%, #0A1810 50%, #060E08 100%); */
    background: url("./images/raduni-hero3.jpg");
    background-repeat: no-repeat;
    background-position: cover;
    background-position: center;
}

/* Pattern overlay on each slide */
.slide-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg,
            transparent 0px, transparent 28px,
            rgba(212, 168, 67, 0.025) 28px, rgba(212, 168, 67, 0.025) 29px),
        repeating-linear-gradient(-45deg,
            transparent 0px, transparent 28px,
            rgba(212, 168, 67, 0.025) 28px, rgba(212, 168, 67, 0.025) 29px);
}


/* Slide content */
.slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10vw;
    padding-top: 5rem;
}

.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.6rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s 0.3s ease, transform 0.7s 0.3s ease;
}

.slide.active .slide-tag {
    opacity: 1;
    transform: translateY(0);
}

.slide-tag-line {
    width: 36px;
    height: 1px;
    background: var(--gold);
}

.slide-tag-text {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--raduni-yellow-color);
}

.slide h1 {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: clamp(3.2rem, 7.5vw, 6.5rem);
    font-weight: 600;
    line-height: 1.0;
    color: var(--cream);
    max-width: 720px;
    margin-bottom: 1.4rem;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s 0.45s ease, transform 0.8s 0.45s ease;
}

.slide.active h1 {
    opacity: 1;
    transform: translateY(0);
}

.slide h1 em {
    color: var(--raduni-orange-color);
    font-style: italic;
}

.slide-desc {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.75;
    color: #fff;
    max-width: 480px;
    margin-bottom: 2.6rem;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s 0.6s ease, transform 0.7s 0.6s ease;
}

.slide.active .slide-desc {
    opacity: 1;
    transform: translateY(0);
}

.slide-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s 0.75s ease, transform 0.7s 0.75s ease;
}

.slide.active .slide-actions {
    opacity: 1;
    transform: translateY(0);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: var(--raduni-red-color);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    /* box-shadow: 0 8px 54px rgba(255, 255, 255, 0.368); */
}

.btn-primary:hover {
    background: var(--raduni-orange-color);
    /* box-shadow: 0 8px 54px rgba(255, 255, 255, 0.368); */
}

.btn-primary svg {
    width: 14px;
    height: 14px;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: transparent;
    color: var(--cream);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 10px;
    border: 1px solid rgba(251, 247, 239, 0.25);
    cursor: pointer;
    transition: border-color var(--transition), color var(--transition), transform 0.15s;
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    transform: translateY(-2px);
}

/* Slider controls */
.slider-controls {
    position: absolute;
    bottom: 3rem;
    left: 10vw;
    display: flex;
    align-items: center;
    gap: 1.4rem;
    z-index: 10;
}

.slider-dots {
    display: flex;
    gap: 0.55rem;
    align-items: center;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(251, 247, 239, 0.3);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), width var(--transition);
    border: none;
    padding: 0;
}

.dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 3px;
}

.slider-arrows {
    display: flex;
    gap: 0.5rem;
}

.arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface2);
    border: 1px solid var(--border);
    color: var(--cream);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), border-color var(--transition), transform 0.15s;
    backdrop-filter: blur(10px);
}

.arrow-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    transform: scale(1.08);
}

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

/* Progress bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--gold);
    width: 0%;
    transition: width linear;
    z-index: 10;
}


/* ── FEATURES BAR ── */
.features-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--dark2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.feat {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 2.2rem 2.8rem;
    position: relative;
    transition: background var(--transition);
}

.feat:hover {
    background: var(--surface);
}

.feat+.feat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 25%;
    bottom: 25%;
    width: 1px;
    background: var(--border);
}

.feat-icon-wrap {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: var(--gold-faint);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: transform var(--transition), background var(--transition);
}

.feat:hover .feat-icon-wrap {
    transform: scale(1.08);
    background: rgba(212, 168, 67, 0.2);
}

.feat-text h3 {
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--cream);
    margin-bottom: 0.25rem;
}

.feat-text p {
    font-size: 0.78rem;
    line-height: 1.6;
    color: var(--text-dim);
    font-weight: 300;
}

/* ── SECTION COMMONS ── */
.section-label {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.9rem;
}

.section-label-line {
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.section-label-text {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
}

.section-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--cream);
    margin-bottom: 1.2rem;
}

.section-title em {
    color: var(--raduni-orange-color);
    font-style: italic;
}

.section-body {
    font-size: 0.93rem;
    line-height: 1.85;
    color: var(--text-dim);
    font-weight: 300;
    margin-bottom: 2rem;
}

/* ── ABOUT ── */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
}

.about-left {
    background: var(--dark3);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 4rem;
}

.about-left::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background:
        radial-gradient(ellipse 60% 60% at 60% 40%, rgba(200, 75, 12, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 40% 50% at 20% 80%, rgba(212, 168, 67, 0.12) 0%, transparent 50%); */
}

.about-card {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    width: 100%;
    max-width: 380px;
}

.stat-cell {
    background: rgba(13, 10, 5, 0.85);
    backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: background var(--transition);
}

.stat-cell:hover {
    background: rgba(212, 168, 67, 0.06);
}


.stat-value {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.stat-emoji {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    display: block;
}

.about-right {
    background: var(--dark);
    padding: 5rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.address-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.4rem 1.6rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 2rem;
}

.address-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold-faint);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.address-card strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.address-card p {
    font-size: 0.9rem;
    color: rgba(251, 247, 239, 0.75);
    line-height: 1.6;
}

/* ── HOURS ── */
.hours-section {
    background: var(--dark2);
    padding: 7rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hours-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(212, 168, 67, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.hours-cards {
    display: flex;
    justify-content: center;
    gap: 1.5px;
    margin: 3rem auto 0;
    max-width: 800px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hours-card {
    flex: 1;
    background: var(--dark3);
    padding: 2.5rem 0rem;
    text-align: center;
    transition: background var(--transition);
}

.hours-card:hover {
    background: rgba(212, 168, 67, 0.05);
}

.hours-day {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
}

.hours-time {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cream);
    line-height: 1.3;
}

.hours-note {
    margin-top: 2.5rem;
    font-size: 0.83rem;
    color: #fff;
    font-weight: 300;
    letter-spacing: 0.04em;
}

.hours-note a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color var(--transition);
}

.hours-note a:hover {
    color: var(--cream);
}

/* ── CATERING ── */
.catering {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    border-top: 1px solid var(--border);
}

.catering-left {
    background: var(--dark);
    padding: 6rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.catering-right {
    background: var(--dark3);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.catering-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 70% at 50% 50%, rgba(212, 168, 67, 0.1) 0%, transparent 60%);
}

.catering-visual-card {
    position: relative;
    z-index: 1;
    padding: 3rem 3.5rem;
    background: rgba(13, 10, 5, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border2);
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 320px;
}

.catering-visual-card::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid var(--border);
    border-radius: calc(var(--radius-lg) - 4px);
    pointer-events: none;
}

.catering-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.catering-card-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
}

.catering-card-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 600;
    font-style: italic;
    color: var(--cream);
    line-height: 1.4;
}

.catering-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.4rem;
}

.catering-tag {
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text-dim);
}

.gallery-section {
    padding: 100px 5%;
    /* background:#faf8f5; */
}

.gallery-featured {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 20px;
    margin-top: 50px;
}

.gallery-featured img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    transition: .4s ease;
    cursor: pointer;
}

.gallery-featured img:hover {
    transform: translateY(-10px);
}

.gallery-featured img:nth-child(2) {
    height: 520px;
}

/* Banner */
.banner {
    display: flex;
    background: url(./images/images.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 300px;
}

/* ── FOOTER ── */
footer {
    background: #080603;
    border-top: 1px solid var(--border);
    padding: 3.5rem 5rem;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-logo {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--raduni-red-color);
    letter-spacing: 0.06em;
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    text-align: right;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color var(--transition);
}

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

.footer-copy {
    font-size: 0.75rem;
    color: rgba(251, 247, 239, 0.2);
    text-align: center;
}

.footer-copy a {
    font-size: 0.75rem;
    color: var(--raduni-orange-color);
    text-align: center;
}

.website__rights {
    color: #fff;
    text-align: center;
}

/* ── MENU HAMBURGER ── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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



/* ── RESPONSIVE ── */

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    nav.scrolled {
        padding: 0.75rem 1.5rem;
    }

    .nav-logo-main img {
        width: 200px;
    }

    .nav-right .nav-phone {
        display: none;
    }

    .nav-center {
        position: fixed;
        top: 120px;
        left: -100%;

        width: 100%;
        height: calc(100vh - 80px);

        display: flex; /* IMPORTANT */

        flex-direction: column;
        justify-content: flex-start;
        align-items: center;

        padding-top: 40px;
        gap: 25px;

        background: #111111e7;

        transition: left .3s ease;
        z-index: 9999;
    }

    .nav-center.active {
        left: 0;
    }

    .nav-center li {
        list-style: none;
    }

    .nav-center a {
        color: white;
        font-size: 1.2rem;
        text-decoration: none;
    }

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

    .nav-hamburger span {
        width: 25px;
        height: 2px;
        background: white;
        transition: 0.3s;
    }

    .slide-content {
        padding: 0 1.5rem;
        padding-top: 3rem;
    }

    .slide h1 {
        font-size: clamp(2.4rem, 8vw, 4rem);
    }

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

    .feat+.feat::before {
        display: none;
    }

    .feat {
        padding: 1.5rem;
        border-top: 1px solid var(--border);
    }

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

    .about-right {
        padding: 3rem 1.5rem;
    }

    .about-left {
        padding: 3rem 1.5rem;
    }

    .hours-section {
        padding: 4rem 1.5rem;
    }

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

    .catering-left {
        padding: 4rem 1.5rem;
    }

    .catering-right {
        padding: 3rem 1.5rem;
        min-height: 320px;
    }

    footer {
        padding: 10px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .slider-controls {
        left: 1.5rem;
        bottom: 2rem;
    }

    .btn-nav {
        display: none;
    }

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

    .gallery-featured img,
    .gallery-featured img:nth-child(2) {
        height: 280px;
    }

    .banner {
        background: url(./images/images.jpg);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }

}