/* =========================================================
   THE HERITAGE KITCHEN – MASTER STYLESHEET
   ========================================================= */

   /* RESET DEFAULT BROWSER SPACING */
html, body {
    margin: 0;
    padding: 0;
}

header {
    margin-bottom: 0;
}

/* LOGO + BRAND NAME */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #dbc8b0;
    white-space: nowrap;
}

/* HIDE BRAND NAME ON MOBILE */
@media (max-width: 768px) {
    .brand-name {
        display: none;
    }
}


/* ==== BASE ==== */
html {
    font-size: 16px;
}

body {
    font-family: 'Lora', 'Georgia', serif;
    margin: 0;
    padding: 0;
    background-color: #dbc8b0;
    color: #080404;
    line-height: 1.6;
}
/* ==== STICKY TOP MENU ==== */
.sticky-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(29,57,55,0.95);
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.sticky-header .header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sticky-header .logo img {
    width: 70px;
    height: 70px;
}
.sticky-header .nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}
.sticky-header .nav-links a {
    color: #dbc8b0;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.sticky-header .nav-links a:hover,
.sticky-header .nav-links a.active {
    color: #ffffff;
}
.sticky-header .nav-links i {
    font-size: 1.2rem;
    color: #dbc8b0;
}
.sticky-header .nav-links i:hover {
    color: #ffffff;
}
/* =========================================================
   TOP NAVIGATION
   ========================================================= */
.top-nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background: rgba(29, 57, 55, 0.92);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    box-sizing: border-box;
    z-index: 999;
}

.nav-logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #DBC8B0;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-size: 1.05rem;
    font-weight: 600;
    color: #DBC8B0;
    text-decoration: none;
}

.nav-links a:hover {
    color: #ffffff;
}

/* Push content below nav */
.hero,
.menu-page {
    margin-top: 70px;
}

/* =========================================================
   MENU HEADER IMAGE (NON-FIXED)
   ========================================================= */

.menu-header-image {
    width: 100%;
    height: 200px;
    margin-top: 70px; /* accounts for fixed nav */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Optional soft overlay for text contrast if needed later */
.menu-header-image::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.25);
}

/* Ensure menu content starts cleanly below image */
.menu-page {
    padding: 60px 30px 80px;
    text-align: center;
}

/* Responsive height adjustments */
@media (max-width: 768px) {
    .menu-header-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .menu-header-image {
        height: 160px;
    }
}


/* =========================================================
   HERO CAROUSEL
   ========================================================= */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.carousel {
    position: absolute;
    inset: 0;
}

.carousel img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    animation: fade 24s infinite;
}

.carousel img:nth-child(1) { animation-delay: 0s; }
.carousel img:nth-child(2) { animation-delay: 6s; }
.carousel img:nth-child(3) { animation-delay: 12s; }
.carousel img:nth-child(4) { animation-delay: 18s; }

@keyframes fade {
    0%   { opacity: 0; }
    4%   { opacity: 1; }
    21%  { opacity: 1; }
    25%  { opacity: 0; }
    100% { opacity: 0; }
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

/* =========================================================
   BREADCRUMBS
   ========================================================= */

.breadcrumbs {
    max-width: 1100px;
    margin: 20px auto 0;
    padding: 0 30px;
    font-size: 0.95rem;
    text-align: left;
    color: #1d3937;
}

.breadcrumbs a {
    color: #1d3937;
    font-weight: 600;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    margin: 0 6px;
    opacity: 0.6;
}

/* Mobile spacing tweak */
@media (max-width: 480px) {
    .breadcrumbs {
        font-size: 0.9rem;
        margin-top: 16px;
    }
}


.thk-testimonials {
  padding: 4rem 2rem;
  background: #D1B897;
  color: #111;
}

.thk-testimonials h2 {
  font-family: 'Playfair Display', serif;
  text-align: center;
  margin-bottom: 2.5rem;
}

.thk-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: auto;
}

.thk-testimonial-grid article {
  background: #D8C8B3;
  padding: 1.8rem;
  border-radius: 14px;
}

.stars {
  color: #111;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0.8rem;
}

.thk-testimonial-grid p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.thk-testimonial-grid strong {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* =========================================================
   FAQ SECTION
   ========================================================= */

.thk-faq {
  padding: 4rem 2rem;
  background: #D8C8B3;
  max-width: 900px;
  margin: auto;
}

.thk-faq h2 {
  font-family: 'Playfair Display', serif;
  text-align: center;
  margin-bottom: 2rem;
}

.thk-faq details {
  border-bottom: 1px solid #234F4D;(50, 43, 33, 0.2);
  padding: 1.2rem 0;
}

.thk-faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.thk-faq summary::-webkit-details-marker {
  display: none;
}

.thk-faq summary::after {
  content: '+';
  float: right;
  color: #234F4D;
}

.thk-faq details[open] summary::after {
  content: '–';
}

.thk-faq p {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  opacity: 0.9;
}



/* =========================================================
   HERO CONTENT
   ========================================================= */
.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 90px 20px 50px;
    box-sizing: border-box;
    text-align: center;
    color: #DBC8AF;
}

.mobile-logo {
    max-width: 280px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
}

.hero-text h2 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.35;
    margin: 0;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-buttons a {
    background: #377572;
    color: #ffffff;
    padding: 16px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.15rem;
    transition: 0.3s;
}

.hero-buttons a:hover {
    background: #dbc8b0;
    color: #000000;
}

/* =========================================================
   INTRO CONTENT
   ========================================================= */
.intro {
    max-width: 850px;
    margin: 100px auto;
    padding: 0 30px;
    font-size: 1.25rem;
    text-align: left;
    color: #111111;
}

/* =========================================================
   CONTACT SECTION
   ========================================================= */
.contact {
    background: linear-gradient(
        rgba(29, 57, 55, 0.94),
        rgba(20, 40, 38, 0.96)
    ),
    url('../images/footerbg.jpg') center / cover no-repeat;
    color: #DBC8B0;
    padding: 30px;
    text-align: center;
    margin: 60px 20px;
    border-radius: 20px;
}

.contact h2 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
    font-size: 1.6rem;
    margin: 0 0 10px 0;
    color: #DBC8B0;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
    background: #1d3937;
    color: #DBC8B0;
    text-align: center;
    padding: 35px;
    font-size: 1rem;
}

/* =========================================================
   MENU PAGE
   ========================================================= */
.menu-page {
    padding: 120px 30px 80px;
    text-align: center;
}

.menu-page h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    margin-bottom: 50px;
    color: #1d3937;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

.menu-card {
    background: #1d3937;
    color: #DBC8B0;
    padding: 40px 30px;
    border-radius: 18px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s, background 0.3s;
}

.menu-card:hover {
    transform: translateY(-6px);
    background: #377572;
}

/* =========================================================
   GLOBAL LINKS
   ========================================================= */
a {
    color: #DBC8B0;
    text-decoration: none;
}

a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.hero-buttons a,
.contact a {
    color: #ffffff;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    html { font-size: 15.5px; }
    .hero-text h2 { font-size: 1.8rem; }
}

@media (max-width: 768px) {
    html { font-size: 15px; }

    .top-nav {
        padding: 0 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-overlay {
        padding-top: 20px;
    }

    .hero-text h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-buttons a {
        padding: 14px 32px;
        font-size: 1.05rem;
    }

    .menu-page h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    html { font-size: 14px; }

    .nav-logo a {
        font-size: 1.1rem;
    }

    .hero-text h2 {
        font-size: 1.4rem;
    }

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

    .hero-buttons a {
        width: 90%;
        padding: 16px;
    }
}

/* =========================================================
   MENU ITEM CARDS
   ========================================================= */

.menu-items {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.menu-card-item {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.menu-card-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.menu-card-content {
    padding: 22px 20px 26px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.menu-card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin: 0 0 10px;
    color: #1d3937;
}

.menu-card-content p {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 16px;
    color: #333;
    flex-grow: 1;
}

.menu-price {
    font-weight: 700;
    font-size: 1.05rem;
    color: #1d3937;
}

/* =========================================================
   MENU RULES & DISCLAIMER
   ========================================================= */

.menu-rules {
    max-width: 1000px;
    margin: 50px auto 20px;
    padding: 25px 30px;
    background: rgba(29,57,55,0.08);
    border-radius: 16px;
    font-size: 0.95rem;
    text-align: center;
}

.menu-disclaimer {
    max-width: 1000px;
    margin: 20px auto 80px;
    padding: 0 30px;
    font-size: 0.85rem;
    text-align: center;
    color: #444;
}

/* =========================================================
   FLOATING CTA BUTTONS
   ========================================================= */

.floating-cta {
    position: fixed;
    bottom: 22px;
    right: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-cta a {
    background: #1d3937;
    color: #DBC8B0;
    padding: 14px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.floating-cta a:hover {
    background: #377572;
    color: #ffffff;
}

@media (max-width: 768px) {
    .menu-card-item img {
        height: 180px;
    }
}
