/* ============================================================
   style.css — Double Dutch Pancake House
   ============================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #060B44;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    color: #fff;
}


/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-custom {
    background-color: transparent;
    padding: 22px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background-color 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

/* Scrolled state — triggered by JS adding .scrolled */
.navbar-custom.scrolled {
    background-color: #FCF7EE;
    padding: 14px 0;
    box-shadow: 0 4px 20px rgba(6, 11, 68, 0.1);
}

/* When scrolled, nav links turn dark */
.navbar-custom.scrolled .nav-links a {
    color: rgba(6, 11, 68, 0.7);
}

.navbar-custom.scrolled .nav-links a:hover,
.navbar-custom.scrolled .nav-links a.active {
    color: #815033;
}

.navbar-custom.scrolled .nav-links a::after {
    background: #815033;
}

/* When scrolled, brand text turns dark */
.navbar-custom.scrolled .brand-text {
    color: #060B44;
}

/* Reserve button turns brown when scrolled */
.navbar-custom.scrolled .mobile-toggle {
    border-color: rgba(6, 11, 68, 0.2);
    color: #060B44;
}

.navbar-custom.scrolled .mobile-toggle:hover {
    border-color: #815033;
    color: #815033;
}

/* ===== BRAND ===== */
.navbar-brand-custom {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D0AD4F 0%, #c49a3a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #060B44;
    font-weight: 800;
    font-size: 17px;
    font-family: 'Playfair Display', serif;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(208, 173, 79, 0.3);
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 19px;
    line-height: 1.15;
    color: #fff;
    transition: color 0.4s ease;
}

.brand-text span {
    display: block;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #D0AD4F;
    font-family: 'Inter', sans-serif;
    margin-top: 2px;
}

/* ===== NAV LINKS ===== */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D0AD4F;
    transition: width 0.3s;
    border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #D0AD4F;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* ===== MOBILE TOGGLE ===== */
.mobile-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 8px 14px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-toggle:hover {
    border-color: #D0AD4F;
    color: #D0AD4F;
}


/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    min-height: 100vh;
    padding: 130px 0 60px;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 50%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(208, 173, 79, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-right: 20px;
}

/* Label */
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(208, 173, 79, 0.08);
    border: 1px solid rgba(208, 173, 79, 0.2);
    border-radius: 50px;
    padding: 9px 20px;
    margin-bottom: 28px;
}

.hero-label i {
    color: #D0AD4F;
    font-size: 11px;
}

.hero-label span {
    color: #D0AD4F;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Title */
.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 58px;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 24px;
}

.hero-title .italic {
    font-style: italic;
    font-weight: 500;
    color: #D0AD4F;
}

/* Description */
.hero-description {
    color: rgba(255, 255, 255, 0.55);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 480px;
    font-weight: 300;
}

/* ===== BUTTONS ===== */
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-gold {
    background: linear-gradient(135deg, #D0AD4F 0%, #bfa04a 100%);
    color: #060B44;
    border: none;
    padding: 15px 34px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 20px rgba(208, 173, 79, 0.2);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #e0bd6f 0%, #D0AD4F 100%);
    color: #060B44;
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(208, 173, 79, 0.35);
}

.btn-gold:hover i {
    transform: translateX(4px);
}

.btn-gold i {
    transition: transform 0.3s;
}

.btn-dark {
    background-color: #1E2055;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 15px 34px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.btn-dark:hover {
    background-color: #282a6e;
    color: #fff;
    border-color: rgba(208, 173, 79, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===== HERO META ===== */
.hero-meta {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.meta-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-rating .stars {
    display: flex;
    gap: 2px;
}

.meta-rating .stars i {
    color: #D0AD4F;
    font-size: 13px;
}

.meta-rating .rating-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
}

.meta-rating .rating-text strong {
    color: #D0AD4F;
    font-weight: 700;
}

.meta-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.15);
}

.meta-hours {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-hours i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.meta-hours span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
}

.meta-hours span strong {
    color: #D0AD4F;
    font-weight: 600;
}

/* ===== HERO IMAGE STACK ===== */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.image-stack {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 560px;
}

.img-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 400px;
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.img-top:hover img {
    transform: scale(1.08);
}

.img-bottom-wrapper {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 2;
    margin-top: -40px;
}

.img-bl {
    width: 55%;
    height: 270px;
    position: relative;
    transform: rotate(-8deg);
    border: 15px solid #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-right: -30px;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.img-bl img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.img-bl:hover img {
    transform: scale(1.1);
}

.img-br {
    width: 55%;
    height: 220px;
    position: relative;
    transform: rotate(8deg);
    border: 12px solid #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-left: 14px;
    z-index: 3;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.img-br img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.img-br:hover img {
    transform: scale(1.1);
}

.img-overlay-text {
    position: absolute;
    bottom: 15px;
    left: 20px;
    z-index: 4;
    color: #fff;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.85);
}

.img-overlay-text h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.img-overlay-text p {
    font-size: 0.72rem;
    margin: 2px 0 0;
    opacity: 0.85;
    font-weight: 300;
    letter-spacing: 0.5px;
}


/* ============================================================
   OUR STORY SECTION
   ============================================================ */
.our-story-section {
    background-color: #FBF8F2;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.our-story-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 60%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(208, 173, 79, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.story-left {
    position: relative;
}

.story-image-wrapper {
    position: relative;
    padding: 0 20px;
}

.story-main-image {
    position: relative;
    width: 100%;
    height: 540px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(6, 11, 68, 0.15);
}

.story-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.story-main-image:hover img {
    transform: scale(1.05);
}

.story-main-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
                rgba(6, 11, 68, 0.5) 0%,
                rgba(6, 11, 68, 0.1) 35%,
                rgba(6, 11, 68, 0.1) 55%,
                rgba(251, 248, 242, 0.4) 100%);
    pointer-events: none;
}

.story-img-overlay {
    position: absolute;
    top: 32px;
    left: 32px;
    z-index: 2;
    max-width: 75%;
}

.story-img-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 28px;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.story-img-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* Floating Stat Badges */
.story-badges {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 18px;
    z-index: 5;
    width: calc(100% - 40px);
    justify-content: center;
}

.story-badge {
    background: #ffffff;
    border: 1px solid rgba(208, 173, 79, 0.3);
    border-radius: 14px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    max-width: 240px;
    box-shadow: 0 15px 40px rgba(6, 11, 68, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.story-badge:hover {
    transform: translateY(-5px);
    border-color: rgba(208, 173, 79, 0.6);
    box-shadow: 0 20px 50px rgba(6, 11, 68, 0.12);
}

.badge-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(208, 173, 79, 0.2) 0%, rgba(208, 173, 79, 0.05) 100%);
    border: 1px solid rgba(208, 173, 79, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b89438;
    font-size: 17px;
    flex-shrink: 0;
}

.badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.badge-text strong {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 22px;
    color: #060B44;
}

.badge-text span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #6b7280;
    margin-top: 2px;
}

/* Story Content */
.story-content {
    padding-left: 30px;
    position: relative;
    z-index: 2;
}

.story-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(208, 173, 79, 0.15);
    border: 1px solid rgba(208, 173, 79, 0.3);
    border-radius: 50px;
    padding: 9px 20px;
    margin-bottom: 24px;
}

.story-label i {
    color: #b89438;
    font-size: 11px;
}

.story-label span {
    color: #b89438;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.story-title {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 44px;
    color: #060B44;
    line-height: 1.15;
    margin-bottom: 24px;
}

.story-title .italic {
    font-style: italic;
    font-weight: 500;
    color: #b89438;
}

.story-description {
    color: #4a4a4a;
    font-size: 15.5px;
    line-height: 1.8;
    margin-bottom: 18px;
    font-weight: 400;
}

/* Feature Grid */
.story-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 34px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid rgba(6, 11, 68, 0.08);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(6, 11, 68, 0.04);
}

.feature-item:hover {
    background: #ffffff;
    border-color: rgba(208, 173, 79, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(6, 11, 68, 0.08);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, #060B44 0%, #1E2055 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D0AD4F;
    font-size: 16px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 17px;
    color: #060B44;
    margin: 0 0 5px;
}

.feature-text p {
    color: #6b7280;
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
    font-weight: 400;
}

/* Signature */
.story-signature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid rgba(6, 11, 68, 0.1);
}

.signature-text {
    display: flex;
    flex-direction: column;
}

.sig-name {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 18px;
    color: #060B44;
}

.sig-role {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #8a8a8a;
    margin-top: 4px;
}


/* ============================================================
   MENU SECTION
   ============================================================ */
.menu-section {
    background-color: #FBF8F2;
    padding: 100px 0 120px;
    position: relative;
}

/* Section Header */
.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 42px;
    color: #060B44;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-subtitle {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* Menu Cards */
.menu-card {
    background: #ffffff;
    border: 1px solid rgba(6, 11, 68, 0.06);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(6, 11, 68, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(6, 11, 68, 0.12);
    border-color: rgba(208, 173, 79, 0.4);
}

.menu-card-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-card:hover .menu-card-img img {
    transform: scale(1.08);
}

.menu-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 22px;
    color: #060B44;
    margin-bottom: 12px;
}

.menu-card-body > p {
    color: #6b7280;
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Menu Features List */
.menu-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    border-top: 1px solid rgba(6, 11, 68, 0.08);
    padding-top: 20px;
}

.menu-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4a4a4a;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 500;
}

.menu-features li i {
    color: #b89438;
    font-size: 14px;
}

/* Menu Buttons */
.menu-buttons {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.menu-buttons .btn-gold {
    padding: 12px 22px;
    font-size: 14px;
}

.btn-outline-gold {
    background: transparent;
    color: #060B44;
    border: 1px solid rgba(6, 11, 68, 0.2);
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: rgba(208, 173, 79, 0.1);
    border-color: #D0AD4F;
    color: #b89438;
}

/* Dietary Banner */
.dietary-banner {
    margin-top: 60px;
    background: #060B44;
    border-radius: 16px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 20px 50px rgba(6, 11, 68, 0.15);
    position: relative;
    overflow: hidden;
}

.dietary-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: radial-gradient(circle, rgba(208, 173, 79, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.dietary-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(208, 173, 79, 0.2) 0%, rgba(208, 173, 79, 0.05) 100%);
    border: 1px solid rgba(208, 173, 79, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D0AD4F;
    font-size: 24px;
    flex-shrink: 0;
}

.dietary-content h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    margin: 0 0 6px;
}

.dietary-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
}


/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section {
    background-color: #FBF8F2;
    padding: 100px 0 120px;
    position: relative;
}

/* Filter Buttons */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.gallery-btn {
    background: #ffffff;
    border: 1px solid rgba(6, 11, 68, 0.1);
    color: #4a4a4a;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.gallery-btn:hover {
    border-color: #D0AD4F;
    color: #b89438;
}

.gallery-btn.active {
    background: #060B44;
    color: #D0AD4F;
    border-color: #060B44;
    box-shadow: 0 4px 15px rgba(6, 11, 68, 0.15);
}

/* Gallery Grid */
.gallery-grid {
    margin-top: 20px;
}

.gallery-item {
    transition: all 0.5s ease;
}

.gallery-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(6, 11, 68, 0.06);
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 11, 68, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-img-wrapper:hover .gallery-hover {
    opacity: 1;
}

.gallery-img-wrapper:hover img {
    transform: scale(1.1);
}

.gallery-hover i {
    color: #D0AD4F;
    font-size: 28px;
    width: 60px;
    height: 60px;
    border: 2px solid #D0AD4F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: transform 0.4s ease;
}

.gallery-img-wrapper:hover .gallery-hover i {
    transform: scale(1);
}

.gallery-item.hide {
    display: none;
}


/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
    background-color: #FBF8F2;
    padding: 100px 0 120px;
    position: relative;
}

/* Rating Overview Card */
.rating-overview-card {
    background: #ffffff;
    border: 1px solid rgba(6, 11, 68, 0.06);
    border-radius: 16px;
    padding: 32px 40px;
    box-shadow: 0 10px 30px rgba(6, 11, 68, 0.05);
    margin-bottom: 50px;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.rating-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid rgba(6, 11, 68, 0.08);
    padding-right: 40px;
}

.rating-score .score {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 48px;
    color: #060B44;
    line-height: 1;
}

.stars-large {
    color: #D0AD4F;
    font-size: 16px;
    margin: 8px 0;
    letter-spacing: 2px;
}

.rating-score .review-count {
    font-size: 13px;
    color: #6b7280;
    font-weight: 600;
}

.rating-bars {
    flex: 1;
    min-width: 250px;
}

.bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.bar-label {
    font-size: 13px;
    font-weight: 700;
    color: #6b7280;
    width: 25px;
}

.bar-track {
    flex: 1;
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #D0AD4F 0%, #b89438 100%);
    border-radius: 4px;
}

.bar-number {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    width: 15px;
}

/* Review Actions */
.review-actions {
    border-left: 1px solid rgba(6, 11, 68, 0.08);
    padding-left: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-actions p {
    font-size: 15px;
    color: #4a4a4a;
    font-weight: 500;
    margin-bottom: 16px;
}

.review-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review-buttons .btn-gold,
.review-buttons .btn-outline-gold {
    padding: 12px 20px;
    font-size: 14px;
    justify-content: center;
}

/* Testimonial Cards */
.testimonial-card {
    background: #ffffff;
    border: 1px solid rgba(6, 11, 68, 0.06);
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 4px 15px rgba(6, 11, 68, 0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(6, 11, 68, 0.1);
    border-color: rgba(208, 173, 79, 0.4);
}

.tc-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.tc-stars {
    color: #D0AD4F;
    font-size: 13px;
}

.tc-date {
    font-size: 12px;
    font-weight: 600;
    color: #8a8a8a;
    letter-spacing: 0.5px;
}

.tc-text {
    font-size: 14px;
    line-height: 1.7;
    color: #4a4a4a;
    font-style: italic;
    margin-bottom: 24px;
    flex-grow: 1;
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(6, 11, 68, 0.06);
    padding-top: 16px;
}

.tc-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #060B44 0%, #1E2055 100%);
    color: #D0AD4F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.tc-info h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #060B44;
    margin: 0 0 2px;
}

.tc-info span {
    font-size: 11px;
    color: #8a8a8a;
    font-weight: 500;
}


/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
    background-color: #FBF8F2;
    padding: 100px 0 120px;
    position: relative;
}

.info-card {
    background: #ffffff;
    border: 1px solid rgba(6, 11, 68, 0.06);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(6, 11, 68, 0.05);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(6, 11, 68, 0.08);
    padding-bottom: 16px;
}

.info-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, #060B44 0%, #1E2055 100%);
    color: #D0AD4F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.info-card-header h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 20px;
    color: #060B44;
    margin: 0;
}

/* Open Status */
.open-status-wrapper {
    background: rgba(208, 173, 79, 0.08);
    border: 1px solid rgba(208, 173, 79, 0.2);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #b89438;
    font-size: 14px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
    70%  { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.local-time {
    font-size: 13px;
    color: #4a4a4a;
    font-weight: 500;
}

.local-time strong {
    color: #060B44;
}

/* Contact Blocks */
.contact-block {
    margin-bottom: 16px;
}

.contact-block:last-child {
    margin-bottom: 0;
}

.contact-block h5 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8a8a8a;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-block p {
    color: #060B44;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

.contact-block a,
.inline-link {
    color: #4a4a4a;
    font-size: 14.5px;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.contact-block a:hover,
.inline-link:hover {
    color: #b89438;
}

.inline-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    font-weight: 600;
    color: #b89438;
}

/* Opening Hours */
.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(6, 11, 68, 0.1);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row span {
    font-size: 14.5px;
    font-weight: 500;
    color: #4a4a4a;
}

.hours-row em {
    font-size: 11px;
    color: #8a8a8a;
    font-style: normal;
}

.hours-time {
    font-weight: 600;
    color: #060B44;
}

.hours-time.closed {
    color: #c4c4c4;
}

.hours-row.today {
    background: rgba(208, 173, 79, 0.1);
    border-radius: 8px;
    padding: 12px 14px;
    margin: 4px 0;
    border-bottom: none;
}

.hours-row.today span {
    color: #b89438;
    font-weight: 700;
}

.hours-row.today .hours-time {
    color: #b89438;
}

/* Map */
.map-card {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.contact-map-wrapper {
    height: 100%;
    min-height: 280px;
    position: relative;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 280px;
    filter: grayscale(20%) invert(92%) contrast(85%) hue-rotate(180deg);
}

.map-direction-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #D0AD4F 0%, #bfa04a 100%);
    color: #060B44;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(6, 11, 68, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.map-direction-btn:hover {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 12px 30px rgba(6, 11, 68, 0.4);
    color: #060B44;
}

/* Accordion */
.custom-accordion .accordion-item {
    background: #FBF8F2;
    border: 1px solid rgba(6, 11, 68, 0.1);
    border-radius: 10px !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.custom-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.custom-accordion .accordion-button {
    background: transparent;
    color: #060B44;
    font-weight: 600;
    font-size: 15px;
    padding: 16px 20px;
    box-shadow: none !important;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: #b89438;
    background: rgba(208, 173, 79, 0.05);
}

.custom-accordion .accordion-button::after {
    filter: invert(18%) sepia(12%) saturate(2476%) hue-rotate(355deg) brightness(97%) contrast(91%);
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    filter: invert(67%) sepia(46%) saturate(414%) hue-rotate(8deg) brightness(90%) contrast(88%);
}

.custom-accordion .accordion-body {
    padding: 0 20px 16px;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}


/* ============================================================
   FOOTER SECTION
   ============================================================ */
.footer-section {
    background-color: #000543;
    padding: 80px 0 30px;
    position: relative;
    color: rgba(255, 255, 255, 0.6);
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(208, 173, 79, 0.3) 50%, transparent 100%);
}

.footer-section .brand-text {
    color: #fff;
}

.footer-description {
    font-size: 14.5px;
    line-height: 1.8;
    margin: 20px 0 28px;
    max-width: 400px;
    font-weight: 300;
}

/* Footer Badges */
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(208, 173, 79, 0.2);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

.footer-badge i {
    color: #D0AD4F;
    font-size: 14px;
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #D0AD4F;
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 9px;
    color: #D0AD4F;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #D0AD4F;
}

.footer-links a:hover i {
    transform: translateX(4px);
}

/* Social */
.footer-social-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 300;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-socials a:hover {
    background: #D0AD4F;
    border-color: #D0AD4F;
    color: #000543;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(208, 173, 79, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 50px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.copyright {
    font-size: 13px;
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.made-with-love {
    font-size: 13px;
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.made-with-love i {
    color: #D0AD4F;
    font-size: 12px;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.2); }
}


/* ============================================================
   RESPONSIVE — 1200px and below
   ============================================================ */
@media (max-width: 1199px) {
    .hero-title   { font-size: 48px; }
    .story-title  { font-size: 38px; }
    .story-main-image { height: 480px; }
}

/* ============================================================
   RESPONSIVE — 992px and below (tablet)
   ============================================================ */
@media (max-width: 991px) {
    /* Navbar mobile menu */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(6, 11, 68, 0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 24px 30px;
        gap: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .navbar-custom.scrolled .nav-links {
        background: #FCF7EE;
        border-bottom: 1px solid rgba(6, 11, 68, 0.1);
    }

    .nav-links.show   { display: flex; }
    .nav-links a::after { display: none; }

    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Hero */
    .hero-section    { padding: 110px 0 50px; }
    .hero-title      { font-size: 42px; }
    .hero-right      { margin-top: 50px; }
    .image-stack     { max-width: 400px; height: 500px; }
    .img-top         { height: 350px; }
    .img-bl, .img-br { height: 190px; }

    /* Story */
    .our-story-section { padding: 90px 0 80px; }
    .story-content     { padding-left: 12px; margin-top: 60px; }
    .story-title       { font-size: 34px; }
    .story-main-image  { height: 440px; }
    .story-img-overlay h3 { font-size: 24px; }

    /* Menu */
    .section-title  { font-size: 36px; }
    .dietary-banner { padding: 24px 28px; }

    /* Gallery */
    .gallery-section { padding: 80px 0 90px; }

    /* Testimonials */
    .rating-overview-card { padding: 28px; }
    .review-actions {
        border-left: none;
        border-top: 1px solid rgba(6, 11, 68, 0.08);
        padding-left: 0;
        padding-top: 24px;
        margin-top: 24px;
    }
    .rating-score {
        border-right: none;
        padding-right: 0;
        width: 100%;
    }
    .rating-summary { gap: 20px; }

    /* Contact */
    .contact-map-wrapper { min-height: 350px; }

    /* Footer */
    .footer-description { max-width: 100%; }
}

/* ============================================================
   RESPONSIVE — 768px and below (mobile)
   ============================================================ */
@media (max-width: 767px) {
    /* Hero */
    .hero-section       { padding: 100px 0 40px; }
    .hero-title         { font-size: 34px; }
    .hero-description   { font-size: 14px; margin-bottom: 24px; }
    .hero-buttons       { flex-direction: column; }
    .btn-gold,
    .btn-dark           { justify-content: center; padding: 14px 24px; font-size: 14px; }
    .hero-meta          { margin-top: 22px; gap: 16px; }
    .hero-right         { margin-top: 40px; }
    .image-stack        { max-width: 340px; height: 440px; }
    .img-top            { height: 300px; }
    .img-bl, .img-br    { height: 165px; }
    .brand-text         { font-size: 16px; }
    .brand-text span    { font-size: 9px; }
    .brand-icon         { width: 42px; height: 42px; font-size: 15px; }
    .img-overlay-text h4 { font-size: 0.82rem; }
    .img-overlay-text p  { font-size: 0.65rem; }

    /* Story */
    .our-story-section  { padding: 70px 0 70px; }
    .story-content      { margin-top: 50px; }
    .story-title        { font-size: 28px; }
    .story-description  { font-size: 14px; }
    .story-main-image   { height: 380px; }
    .story-img-overlay  { top: 22px; left: 22px; max-width: 85%; }
    .story-img-overlay h3 { font-size: 20px; }
    .story-img-overlay p  { font-size: 12px; }
    .story-badges       { flex-direction: column; width: calc(100% - 30px); bottom: -50px; }
    .story-badge        { max-width: 100%; padding: 14px 18px; }
    .story-features     { grid-template-columns: 1fr; gap: 14px; }
    .feature-item       { padding: 16px; }
    .story-signature    { flex-direction: column; align-items: flex-start; }
    .story-signature .btn-gold { width: 100%; justify-content: center; }

    /* Menu */
    .menu-section       { padding: 70px 0 80px; }
    .section-title      { font-size: 30px; }
    .section-subtitle   { font-size: 15px; }
    .dietary-banner     { flex-direction: column; text-align: center; padding: 28px 20px; }
    .dietary-content p  { font-size: 14px; }

    /* Gallery */
    .gallery-section    { padding: 60px 0 70px; }
    .gallery-btn        { padding: 8px 18px; font-size: 13px; }

    /* Testimonials */
    .testimonials-section { padding: 60px 0 70px; }
    .rating-summary     { flex-direction: column; align-items: stretch; }
    .rating-bars        { width: 100%; }

    /* Contact */
    .contact-section    { padding: 60px 0 80px; }
    .open-status-wrapper { flex-direction: column; align-items: flex-start; }

    /* Footer */
    .footer-section     { padding: 60px 0 20px; }
    .footer-heading     { font-size: 16px; margin-bottom: 18px; }
    .footer-bottom      { flex-direction: column; text-align: center; }
}

/* ============================================================
   RESPONSIVE — 480px and below (small mobile)
   ============================================================ */
@media (max-width: 480px) {
    .hero-title         { font-size: 28px; }
    .image-stack        { max-width: 280px; height: 380px; }
    .img-top            { height: 250px; width: 75%; }
    .img-bl, .img-br    { height: 140px; border-width: 3px; }
    .img-bl             { border-radius: 70px 0 0 70px; margin-right: -22px; }
    .img-br             { border-radius: 0 70px 70px 0;  margin-left: -22px; }
    .img-overlay-text   { bottom: 10px; left: 14px; }
    .meta-hours span,
    .meta-rating .rating-text { font-size: 12px; }

    .story-title        { font-size: 24px; }
    .story-main-image   { height: 320px; }
    .story-img-overlay h3 { font-size: 18px; }
    .badge-text strong  { font-size: 19px; }
    .badge-text span    { font-size: 9px; }

    .menu-buttons       { flex-direction: column; width: 100%; }
    .menu-buttons .btn-gold,
    .menu-buttons .btn-outline-gold { width: 100%; justify-content: center; }
}