@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===== CREATIVE BITES — EXACT 3 BRAND COLORS ===== */
:root {
    /* ── GREEN  #7FD604 ── */
    --green: #7FD604;
    --green-light: #9AE833;
    --green-dark: #5EA003;

    /* ── ORANGE  #FF5800 ── */
    --orange: #FF5800;
    --orange-light: #FF7A33;
    --orange-dark: #CC4600;

    /* ── BLUE  #0051F8 ── */
    --blue: #0051F8;
    --blue-light: #3374FF;
    --blue-dark: #0040C4;

    /* Neutral & Backgrounds */
    --cream: #FAFBFF;
    --cream-alt: #F4F6FF;
    --cream-card: #FFFFFF;
    --dark: #0D1117;
    --dark-alt: #161B27;
    --mid-text: #3A3F5C;
    --muted-text: #6B7194;
    --white: #FFFFFF;
    --light-border: rgba(255, 88, 0, 0.16);

    /* Shadows */
    --shadow-orange: rgba(255, 88, 0, 0.25);
    --shadow-green: rgba(127, 214, 4, 0.28);
    --shadow-blue: rgba(0, 81, 248, 0.22);
    --shadow-dark: rgba(13, 17, 23, 0.14);

    /* System */
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--cream);
    color: var(--dark);
    line-height: 1.65;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== SECTION COMMON ===== */
section {
    padding: 96px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 14px;
    position: relative;
    padding: 0 24px;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 18px;
    height: 1.5px;
    background: var(--orange);
}

.section-label::before {
    left: 0;
}

.section-label::after {
    right: 0;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
}

.section-header h2 span {
    color: var(--orange);
}

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

.section-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 20px auto 0;
}

.section-divider::before,
.section-divider::after {
    content: '';
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange));
}

.section-divider::after {
    background: linear-gradient(90deg, var(--orange), transparent);
}

.section-divider span {
    width: 10px;
    height: 10px;
    background: var(--orange);
    border-radius: 50%;
    display: inline-block;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.84rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.12);
    opacity: 0;
    transition: var(--transition);
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    box-shadow: 0 6px 22px var(--shadow-orange);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px var(--shadow-orange);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    box-shadow: 0 6px 22px var(--shadow-green);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px var(--shadow-green);
}

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

.btn-outline:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-blue {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: var(--white);
    box-shadow: 0 6px 22px var(--shadow-blue);
}

.btn-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px var(--shadow-blue);
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(250, 251, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px 0;
    box-shadow: 0 4px 30px var(--shadow-dark);
    border-bottom: 2px solid var(--light-border);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Logo */
.logo img {
    height: 68px;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.18));
}

header.scrolled .logo img {
    height: 52px;
    filter: none;
}

/* Nav */
nav ul {
    display: flex;
    gap: 36px;
    align-items: center;
}

nav ul li a {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--white);
    position: relative;
    padding-bottom: 4px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

header.scrolled nav ul li a {
    color: var(--dark);
}

header.scrolled nav ul li a:hover,
header.scrolled nav ul li a.active {
    color: var(--orange);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* ===== HERO / SLIDER ===== */
.hero {
    height: 100vh;
    min-height: 640px;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

/* Brand overlay — dark base with orange warmth + blue accent */
.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,
            rgba(13, 17, 23, 0.80) 0%,
            rgba(255, 88, 0, 0.20) 55%,
            rgba(0, 81, 248, 0.12) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 680px;
    padding: 0 20px;
}

.slide-subtitle {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--orange-light);
    margin-bottom: 18px;
    position: relative;
    padding-left: 36px;
}

.slide-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 2px;
    background: var(--orange-light);
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1.08;
    margin-bottom: 24px;
    font-weight: 900;
    color: var(--white);
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.15rem;
    max-width: 520px;
    margin-bottom: 42px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.05rem;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 24px var(--shadow-orange);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--orange);
    width: 28px;
    border-radius: 6px;
}

/* Slide entry animations */
.hero-content h1,
.hero-content p,
.hero-content .hero-btns,
.slide-subtitle {
    opacity: 0;
    transform: translateY(30px);
}

.slide.active .slide-subtitle {
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.slide.active h1 {
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

.slide.active p {
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.slide.active .hero-btns {
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--cream-alt);
    position: relative;
    overflow: hidden;
}

/* Decorative leaf accent — green glow */
.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(127, 214, 4, 0.09) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(127, 214, 4, 0.1);
    border: 1px solid rgba(127, 214, 4, 0.28);
    border-radius: 50px;
    padding: 7px 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.about-badge i {
    color: var(--green);
    font-size: 0.85rem;
}

.about-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.15;
}

.about-text h2 span {
    color: var(--orange);
}

.about-tagline {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 22px;
    font-family: 'Poppins', sans-serif;
}

.about-text p {
    font-size: 0.98rem;
    margin-bottom: 20px;
    color: var(--mid-text);
    line-height: 1.85;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--mid-text);
}

.about-feature i {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--orange-light), var(--orange));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius);
    width: 100%;
    box-shadow: 0 32px 64px var(--shadow-dark);
    position: relative;
    z-index: 1;
}

/* Decorative frame */
.about-image-frame {
    position: absolute;
    top: -18px;
    left: -18px;
    right: 18px;
    bottom: 18px;
    border: 3px solid var(--orange);
    border-radius: var(--radius);
    opacity: 0.3;
    z-index: 0;
}

/* Experience badge on image */
.about-image-badge {
    position: absolute;
    bottom: 28px;
    left: -28px;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 16px 22px;
    box-shadow: 0 12px 32px var(--shadow-dark);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 180px;
}

.about-image-badge .badge-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.about-image-badge .badge-text strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 4px;
}

.about-image-badge .badge-text span {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    color: var(--muted-text);
    font-weight: 500;
}

/* ===== MENU PREVIEW SECTION ===== */
.menu-preview {
    background: var(--cream);
    position: relative;
}

/* Subtle pattern bg — orange dots */
.menu-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 88, 0, 0.06) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 52px;
}

.menu-tab {
    padding: 10px 26px;
    border: 2px solid var(--light-border);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.84rem;
    color: var(--mid-text);
    background: var(--white);
    letter-spacing: 0.5px;
}

.menu-tab:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(255, 88, 0, 0.06);
}

.menu-tab.active {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 6px 20px var(--shadow-orange);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 26px;
    position: relative;
    z-index: 1;
}

.menu-item {
    background: var(--white);
    border: 1.5px solid rgba(255, 88, 0, 0.12);
    border-radius: var(--radius);
    padding: 26px 28px;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

/* Top accent bar */
.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--green));
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.menu-item:hover::before {
    transform: scaleX(1);
}

.menu-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 88, 0, 0.28);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    gap: 12px;
}

.menu-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
}

.menu-item .price {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--orange);
    white-space: nowrap;
    flex-shrink: 0;
}

.menu-item p {
    font-size: 0.88rem;
    color: var(--muted-text);
    line-height: 1.6;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.gallery .section-header h2 {
    color: var(--white);
}

.gallery .section-label {
    color: var(--orange-light);
}

.gallery .section-label::before,
.gallery .section-label::after {
    background: var(--orange-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 14px;
}

/* First item spans 2 columns & 2 rows */
.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-sm);
    position: relative;
    cursor: pointer;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 88, 0, 0.55), rgba(0, 81, 248, 0.38));
    opacity: 0;
    transition: var(--transition);
}

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

/* Zoom icon on hover */
.gallery-item::before {
    content: '\f002';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    color: var(--white);
    font-size: 1.8rem;
    z-index: 5;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

/* ===== REVIEWS SECTION ===== */
.reviews {
    background: var(--cream-alt);
}

.reviews .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
    margin-bottom: 48px;
}

.reviews .section-header .section-label {
    text-align: left;
}

.reviews .section-header::after {
    display: none;
}

.review-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.review-buttons button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--orange);
    background: transparent;
    color: var(--orange);
    cursor: pointer;
    font-size: 0.95rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.review-buttons button:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--shadow-orange);
}

.reviews-container {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 8px 4px 24px;
    scrollbar-width: none;
}

.reviews-container::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 calc((100% - 48px) / 3);
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    border: 1.5px solid rgba(255, 88, 0, 0.12);
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Quote mark */
.review-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 1;
    color: rgba(255, 88, 0, 0.09);
    pointer-events: none;
}

.review-card:hover {
    border-color: var(--orange);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.review-card .stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.review-card .stars i {
    color: var(--orange);
    font-size: 0.95rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--mid-text);
    line-height: 1.78;
    font-size: 0.94rem;
    flex-grow: 1;
}

.review-author strong {
    display: block;
    color: var(--dark);
    font-weight: 700;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
}

.review-author span {
    font-size: 0.82rem;
    color: var(--green);
    font-weight: 500;
}

/* ===== FIND US / LOCATION SECTION ===== */
.find-us {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--blue-light) 100%);
    color: var(--white);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

/* Decorative circles */
.find-us::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 340px;
    height: 340px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.find-us::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: 20%;
    width: 240px;
    height: 240px;
    background: rgba(255, 88, 0, 0.15);
    border-radius: 50%;
    pointer-events: none;
}

.find-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.find-label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 16px;
}

.find-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: var(--white);
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.15;
}

.find-title span {
    color: var(--orange-light);
}

.find-desc {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 40px;
    opacity: 0.88;
}

.contact-detail {
    display: flex;
    gap: 18px;
    margin-bottom: 26px;
    align-items: flex-start;
}

.detail-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--orange-light);
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.contact-detail:hover .detail-icon {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

.detail-text h4 {
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    opacity: 0.7;
}

.detail-text p {
    font-size: 1rem;
    color: var(--white);
    opacity: 0.92;
}

.detail-text a {
    color: var(--white);
    text-decoration: underline;
    opacity: 0.92;
}

.find-map {
    position: relative;
}

.map-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 460px;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.35);
    border: 3px solid rgba(255, 255, 255, 0.15);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.2) contrast(1.05);
}

.map-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 10;
}

.map-button-overlay h3 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 18px;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.9);
    font-weight: 700;
}

.btn-dark-small {
    background: var(--orange);
    color: var(--white);
    padding: 12px 26px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.btn-dark-small:hover {
    background: var(--green);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5);
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark-alt);
    padding-top: 80px;
    border-top: 4px solid var(--orange);
    position: relative;
    overflow: hidden;
}

/* Subtle footer bg pattern */
footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 88, 0, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 44px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    color: var(--orange-light);
    position: relative;
    padding-bottom: 14px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

.footer-logo-col {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15px;
    height: 100%;
}

.footer-col img.logo-img {
    margin-bottom: 16px;
    filter: brightness(1.1);
}

.footer-col p,
.footer-col li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.92rem;
    line-height: 1.65;
}

.footer-col p i,
.footer-col li i {
    color: var(--orange);
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.58);
    transition: var(--transition);
}

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

/* Opening Hours */
.opening-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.opening-hours .day {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    font-weight: 500;
}

.opening-hours .time {
    color: var(--orange-light);
    font-size: 0.88rem;
    font-weight: 600;
}

/* App Buttons */
.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.app-btn {
    display: block;
    transition: var(--transition);
    border-radius: var(--radius-xs);
    overflow: hidden;
}

.app-btn img {
   /* height: 80px;*/
    width: auto;
    transition: var(--transition);
    border-radius: var(--radius-xs);
}

.app-btn:hover img {
    transform: scale(1.04);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

.footer-bottom img {
    height: 22px;
    display: block;
    opacity: 0.75;
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-top-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    box-shadow: 0 8px 28px var(--shadow-orange);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    transform: translateY(-5px);
    box-shadow: 0 14px 36px var(--shadow-green);
}

/* ===== MOBILE TOGGLE ===== */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 4px;
}

header.scrolled .mobile-toggle {
    color: var(--dark);
}

/* ===== RESPONSIVE (within style.css) ===== */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image-badge {
        left: auto;
        right: 20px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

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

    nav ul {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .find-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .find-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }

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

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    section {
        padding: 70px 0;
    }

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

    .reviews .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 150px;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
    }

    .hero-content {
        left: 5%;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .opening-hours li {
        flex-wrap: wrap;
        gap: 4px;
    }

    .app-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 1;
    }

    .hero-content h1 {
        font-size: 1.9rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .find-title {
        font-size: 2.2rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}