body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  background: #f8f5f0;
}

html { scroll-behavior: smooth; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  background: #fff;
  color: #26331f;
  border-radius: 5px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid #b58b45;
  outline-offset: 3px;
}

.top-bar {
  background: #4c5b3f;
  color: white;
  display: flex;
  justify-content: space-around;
  padding: 8px;
  font-size: 14px;
  align-items: baseline;
}

.top-bar a { color: inherit; text-decoration: none; }
.top-bar a:hover { text-decoration: underline; }

header {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background: white;
  position: sticky;
  top: 0;
  align-items: center;
  z-index: 10;
  border-bottom: 1px solid #eeeae2;
}

/* Keep the brand left while centering the desktop navigation in the page. */
header nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  white-space: nowrap;
}
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 60px;
  background: #f5f1ea;
}

/* LOGO CLASS */
.logo img {
  width: 120px;     /* adjust size */
  height: auto;
  object-fit: contain;
  cursor: pointer;
  transition: 0.3s ease;
}

/* Hover effect (optional premium feel) */
.logo img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  transition: color .2s ease;
}

nav a:hover,
nav a[aria-current="page"] { color: #6b7b5f; }

.btn {
  background: #4c5b3f;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
}
.btn-outline {
  border: 2px solid #4c5b3f;
  padding: 10px 20px;
  text-decoration: none;
  color: #4c5b3f;
}

.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Button style */
.social-btn {
  width: 94px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: transparent;
  border: 1px solid #ddd;

  color: #ffffff;
  font-size: 14px;

  transition: all 0.3s ease;
}

/* Hover effect (like elegant cafe UI) */
.social-btn:hover {
  background: #556b4d;
  color: #fff;
  border-color: #556b4d;
  transform: translateY(-2px);
}

/* HERO */
.hero {
  height: 90vh;
  background: linear-gradient(90deg, rgba(248,245,240,.9) 0%, rgba(248,245,240,.66) 38%, rgba(248,245,240,.06) 68%), url('images/webp/hero.webp') center/cover;
  display: flex;
  align-items: center;
  padding-left: 10%;
  color: white;
}

.hero h1 {
  font-size: 56px;
  font-weight: 400;
  color: #4c5b3f;
  font-family: 'Cormorant Garamond', serif;
}


.hero-text {
  animation: fadeIn 2s ease;
  max-width: 600px;
  padding: 32px;
  background: rgba(255,255,255,.52);
  border-left: 3px solid #8b7b54;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 12px 35px rgba(47, 62, 44, .08);
}

h2 {
  font-size: 36px;
  font-weight: 400;
  color: #4c5b3f;
  font-family: 'Cormorant Garamond', serif;
}

h1 { font-family: 'Cormorant Garamond', serif; }

 h3 {
  font-size: 25px;
  font-weight: 5;
  color: white;
  font-family:"Cormorant Garamond", serif;

}



.subtext {
  font-size: 15px;
  color: #6b6b6b;
  margin-bottom: 25px;
}

/* ABOUT */
.about {
  display: flex;
  padding: 50px;
  gap: 40px;
  font-size: 18px;
  text-align: justify;
}

.welcome-text {
  font-family: 'Great Vibes', cursive;
  font-size: 30px;
  color: #4c5b3f;

}

.about > img {
  width: 38%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}


/* CONTENT */
.about-content {
  max-width: 650px;
}

.about-content > p { line-height: 1.7; color: #4e4e4e; }

/* About page */
.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) 5%;
  gap: clamp(42px, 7vw, 100px);
  text-align: left;
}

.about-page .about { flex-direction: initial; }
.about-story .about-content { max-width: 640px; }
.about-story .about-content h1 { margin: 4px 0 24px; color: #4c5b3f; font-size: clamp(46px, 5vw, 64px); line-height: .95; }
.about-story .about-content > p { margin: 0 0 18px; }
.about-kicker { margin: 0; color: #8b7b54 !important; font-size: 13px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.about-signoff { margin: 27px 0 30px !important; color: #4c5b3f !important; font-family: 'Great Vibes', cursive; font-size: 28px; line-height: 1.25 !important; }

.about-image {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: 16px;
  box-shadow: 0 20px 52px rgba(46, 55, 38, .18);
}

.about-story .about-image img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; border-radius: 0; }
.about-image figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 36px 22px 18px; color: #fff; background: linear-gradient(transparent, rgba(24, 31, 18, .75)); font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 600; text-align: center; }


.about-subtitle {
  font-size: 15px;
  letter-spacing: 2px;
  color: #6b7b5f;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
  position: relative;
}



/* FEATURES */
.about-features {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.feature {
  text-align: center;
}

.feature .icon {
  width: 50px;
  height: 50px;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 8px;
  font-size: 18px;
  background: #fff;
}



.feature p {
  font-size: 18px;
  color: #4c5b3f;
}

/* BUTTON */
.btn-outline {
  padding: 12px 22px;
  border: 1px solid #6b7b5f;
  color: #4c5b3f;
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.btn-instragram{
  padding: 12px 22px;
  border: 1px solid #ffff;
  color: white;
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #6b7b5f;
  color: #fff;
}

/* MENU AND GALLERY PAGES */
.page-hero {
  min-height: 390px;
  display: grid;
  place-items: center;
  padding: 70px 24px;
  text-align: center;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.page-hero > div {
  max-width: 720px;
  padding: 30px;
  background: rgba(32, 44, 26, .58);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 12px;
}

.page-hero h1 {
  margin: 4px 0 12px;
  color: #fff;
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 600;
}

.page-hero p:not(.welcome-text) { margin: 0; line-height: 1.6; }
.page-hero .welcome-text { color: #f5e7c9; margin: 0; }
.menu-hero { background-image: linear-gradient(rgba(20, 29, 17, .28), rgba(20, 29, 17, .28)), url('images/webp/coffee.webp'); }
.gallery-hero { background-image: linear-gradient(rgba(20, 29, 17, .28), rgba(20, 29, 17, .28)), url('images/gallery/cafe-interior.webp'); }

.menu-section,
.gallery-section { padding: 72px 0; }

.menu-notice {
  max-width: 760px;
  margin: 0 auto 38px;
  padding: 14px 18px;
  color: #4c5b3f;
  background: #f3ebdc;
  border-left: 4px solid #b58b45;
  line-height: 1.6;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.menu-category {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e7dfd0;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(49, 57, 39, .07);
}

.menu-category > img { width: 100%; height: 190px; object-fit: cover; display: block; }
.menu-category-content { padding: 24px; }
.menu-category h2 { margin: 0 0 16px; font-size: 34px; }
.menu-category h3 { margin: 24px 0 6px; color: #4c5b3f; font-size: 25px; }
.menu-category-wide { grid-column: 1 / -1; }
.menu-addons { margin: 0; color: #6a7064; font-size: 13px; line-height: 1.65; }

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid #eee8dc;
  color: #3f453a;
}

.menu-item strong { color: #4c5b3f; white-space: nowrap; }
.menu-item small { display: block; margin-top: 4px; color: #6a7064; font-size: 13px; line-height: 1.45; }

.menu-cta {
  padding: 60px 24px;
  text-align: center;
  color: #fff;
  background: #4c5b3f;
}

.menu-cta p { margin: 0 0 10px; }
.menu-cta h2 { margin: 0 0 26px; color: #fff; }
.menu-cta .btn { display: inline-block; background: #fff; color: #4c5b3f; border-radius: 5px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 250px;
  gap: 18px;
}

.gallery-item { position: relative; margin: 0; overflow: hidden; border-radius: 12px; }
.gallery-item-wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item-wide img { object-position: center 52%; }
.gallery-item:nth-child(7) img { object-position: left center; }
.gallery-item:nth-child(8) img { object-position: 65% center; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px 18px 16px;
  color: #fff;
  background: linear-gradient(transparent, rgba(21, 29, 17, .78));
  font-family: 'Cormorant Garamond', serif;
  font-size: 23px;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-story { grid-template-columns: 1fr; gap: 36px; }
  .about-story .about-content { max-width: 700px; }
  .about-image { width: min(100%, 560px); }

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

  .about-content {
    text-align: center;
    margin: auto;
  }

  .about-subtitle::after {
    display: none;
  }

  .about-features {
    justify-content: center;
  }
}

/* ==========================
   OUR SPECIALITIES
========================== */

.specialities {
    background: #faf6ef;
    padding: 30px 0;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title span {
    color: #8b7b54;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 48px;
    color: #4c5b3f;
    font-weight: 500;
    font-family: 'Cormorant Garamond', serif;
}

.speciality-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: .3s;
    border: 1px solid #e8e3d7;
    box-shadow: 0 5px 16px rgba(46, 50, 35, .04);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,.12);
}

.card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 18px;
    text-align: center;
}

.icon {
    width: 55px;
    height: 55px;
    margin: -45px auto 15px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

.card h3 {
    font-size: 15px;
    color: #4c5b3f;
    margin-bottom: 10px;
    font-family: "Cormorant Garamond", serif;
}

.card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* Tablet */

@media(max-width:1100px){

.speciality-grid{
    grid-template-columns:repeat(3,1fr);
}

}

/* Mobile */

@media(max-width:768px){

.speciality-grid{
    grid-template-columns:repeat(2,1fr);
}

.section-title h2{
    font-size:36px;
}

}

@media(max-width:500px){

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

}



/* CARDS */
.cards {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.card {
  background: white;
  padding: 15px;
  border-radius: 10px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

.card img {
  width: 200px;
  border-radius: 10px;
}


/* BOOKING */
.booking {
  text-align: center;
  padding: 50px;
  background: #4c5b3f;
  color: white;
}



/* INSTAGRAM SECTION */
.instagram {
  display: flex;
  background: #596044;
  color: white;
  padding: 40px;
}

.fa-brands,.fab {
    font-weight: 400;
    color: white;
    font-size: 24px;
}

.insta-text {
  max-width: 80%;
  margin: 0 auto;
}

.insta-text h2 {
  font-size: 36px;
  margin: 20px 0;
}

.insta-text button {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid white;
  color: white;
  cursor: pointer;
}

.insta-images {
  display: flex;
  gap: 10px;
  width: 60%;
  margin: 0 auto;
}

.insta-images img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 10px;
}

.btn-insta {
  border: 1px solid white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  color: white;
}
.btn-insta:hover {
  background: #6b7b5f;
  color: #fff;

}

.location-section {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 80px 8%;
    background: #f8f5ef;
}

.location-info {
    flex: 1;
}

.location-info h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #3b2a20;
}

.location-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.map-container {
    flex: 1;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 15px;
}

.map-button {
    display: inline-block;
    padding: 12px 25px;
    background: #3b2a20;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.map-button:hover {
    background: #6b4a35;
}



@media (max-width: 768px) {

    .location-section {
        flex-direction: column;
        padding: 50px 5%;
    }

    .location-info,
    .map-container {
        width: 100%;
    }

    .location-info h2 {
        font-size: 32px;
    }

    .map-container iframe {
        height: 350px;
    }
}


/* =========================================
   SOCIAL MEDIA SECTION
========================================= */

.social-media {
    background: #596044;
    padding: 70px 8%;
    color: #f7f0e5;
}

.social-container {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Keep the homepage map inside the layout at every viewport width. */
.social-map {
    width: min(700px, 100%);
    max-width: 100%;
    flex: 1 1 420px;
    border-radius: 10px;
}

/* LEFT CONTENT */

.social-content {
    max-width: 650px;
}

.social-small-title {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    color: #ddd5c5;
}

.social-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 400;
    margin: 12px 0 15px;
    color: #fffaf2;
}

.social-content p {
    max-width: 600px;
    font-size: 16px;
    line-height: 1.8;
    color: #eee7da;
    margin-bottom: 30px;
}


/* SOCIAL BUTTONS */

.social-buttons {
    display: flex;
    gap: 25px;
    justify-content: space-between;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 25px;

    padding: 12px 20px;

    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 10px;

    color: #fff;
    text-decoration: none;

    font-size: 16px;
    letter-spacing: 0.5px;

    transition: all 0.3s ease;
}

.social-icon {
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: bold;
    font-size: 20px;
}

.social-btn:hover {
    background: #f4ede2;
    color: #596044;
    transform: translateY(-3px);
}

/* Keep the inline social icons inside the homepage buttons. */
.social-buttons .social-btn svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    fill: currentColor;
}

.social-buttons .social-btn {
    width: 180px;
    min-height: 48px;
    height: auto;
    justify-content: center;
    gap: 10px;
}


/* RIGHT SIDE QUOTE */

.social-quote {
    min-width: 280px;
    text-align: center;

    padding: 40px 35px;

    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.06);
}

.social-quote span {
    font-size: 35px;
    display: block;
    margin-bottom: 15px;
}

.social-quote p {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    line-height: 1.6;
    color: #fffaf2;
    margin: 0;
}


/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 768px) {

    .social-media {
        padding: 55px 25px;
    }

    .social-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .social-map {
        flex-basis: auto;
        width: 100%;
    }

    .social-content h2 {
        font-size: 34px;
    }

    .social-content p {
        font-size: 15px;
    }

    .social-buttons {
        justify-content: center;
    }

    .social-quote {
        width: 100%;
        max-width: 350px;
        box-sizing: border-box;
    }
}





/* BOOKING SECTION */
.booking {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f4efe6;
  padding: 50px;
}

.booking-text h1 {
  font-size: 40px;
  margin: 10px 0;
  color: #4a5a3c;
  font-weight: 100;
  font-family: 'Cormorant Garamond', serif;
}

.booking-text p {
  
  color: #4a5a3c;
  }

.booking-text button {
  padding: 12px 25px;
  background: #4a5a3c;
  color: white;
  border: none;
  cursor: pointer;
}


.booking-img{

display: flex;
justify-content: flex-end;

}

.booking-img img {
 
  width: 300px;
  height: auto;
}

.logo-img img {
  width: 150px;
}

/* Contact Section */

.contact-section {
  background: #f4efe7;
  padding: 80px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* LEFT */
.contact-left {
  flex: 1;
  min-width: 300px;

}


.contact-left h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #2f3e2c;
}

.contact-left h3 {
  margin-top: 60px;
  color: #14460a;
  font-size: 25px;
}

.contact-left p {
  margin: 10px 0;
  color: #555;
  font-size: 18px;
  line-height: 1.6; /* increases spacing between lines */
  margin-bottom: 10px; /* adds space between each block */
}

.contact-left a {
  color: #556b2f;
  text-decoration: none;
  line-height: 1.6; /* increases spacing between lines */
  margin-bottom: 10px; /* adds space between each block */
}

.contact-left a:hover {
  text-decoration: underline;
}

/* HOURS */
.hours {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.hours li {
  margin-bottom: 12px;
  color: #444;
  line-height: 1.6; /* increases spacing between lines */
  margin-bottom: 10px; /* adds space between each block */
  font-size: 18px;
}

.hours span {
  font-size: 15px;
  color: #777;
}

/* SOCIAL LINKS */
.social-links {
  margin-top: 10px;
}

.social-links a {
  display: inline-block;
  margin-right: 15px;
  padding: 8px 14px;
  border: 1px solid #556b2f;
  border-radius: 6px;
  color: #fffff;
  font-size: 14px;
  transition: 0.3s;
}

.social-links a:hover {
  background: #556b2f;
  color: #fff;
}

/* RIGHT MAP */
.contact-right {
  flex: 1;
  min-width: 300px;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-right iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* FAQ */
.faq-section {
  padding: 72px 20px;
  background: #faf6ef;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-list { display: grid; gap: 12px; }

.faq-item {
  background: #fff;
  border: 1px solid #e4dccd;
  border-radius: 8px;
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 22px;
  color: #34452b;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 26px; font-weight: 400; }
.faq-item[open] summary::after { content: '–'; }
.faq-item[open] summary { border-bottom: 1px solid #eee7da; }

.faq-item p {
  margin: 0;
  padding: 17px 22px 21px;
  color: #575b54;
  line-height: 1.7;
}

.faq-item a { color: #4c5b3f; font-weight: 600; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-right {
    height: 300px;
  }
}


.contact-box {
  background: #ffffff;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: center;
}

/* HEADINGS */
.contact-box h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #2f3e2c;
  margin-bottom: 10px;
}

.contact-box h3 {
  color: #556b2f;
  margin-bottom: 20px;
}

/* TEXT */
.contact-box p {
  margin: 10px 0;
  color: #555;
  font-size: 15px;
}

/* LINKS */
.contact-box a {
  color: #556b2f;
  text-decoration: none;
  font-weight: 500;
}

.contact-box a:hover {
  text-decoration: underline;
}

/* SPECIAL TEXT */
.stock {
  margin-top: 20px;
  font-weight: bold;
  color: #2f3e2c;
}

/* OPTIONAL ICON STYLE (if you add icons later) */
.contact-box p::before {
  margin-right: 8px;
}

.footer-col h3 {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 8px;
    display: inline-block;
  }

  /* Quick Links / Social Buttons */
  footer .social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  footer .social-links .social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 18px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: 'DM Sans', sans-serif;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    transition: all 0.25s ease;
    width: 190px;
    min-width: 190px;
    text-align: center;
  }

  footer .social-links .social-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    transform: translateY(-2px);
  }

  footer .social-links .social-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex: 0 0 18px;
  }




/* FOOTER */
footer {
  background: #4a5a3c;
  color: white;
  padding: 40px;
}

footer a { color: inherit; }



.footer-container {
  display: flex;
  justify-content: space-between; /* spreads 3 columns */
  align-items: flex-start;

}

.footer-left {
  text-align: left;
  margin-right: auto; /* pushes everything else away */
}

.footer-container div {
  width: 25%;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin: 8px 0;
}

.footer-contact button {
  margin-top: 10px;
  padding: 10px;
  background: transparent;
  border: 1px solid white;
  color: white;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

/* ANIMATIONS */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px);}
  to { opacity: 1; }
}

/* Site-wide responsive improvements */
* { box-sizing: border-box; }

img { max-width: 100%; }

.nav-toggle { display: none; }

@media (max-width: 768px) {
  .top-bar {
    padding: 8px 16px;
    justify-content: center;
    gap: 4px 14px;
    flex-wrap: wrap;
    text-align: center;
    font-size: 12px;
  }

  header {
    position: sticky;
    z-index: 10;
    min-height: 64px;
    padding: 7px 16px;
  }

  .logo img { width: 82px; }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: transparent;
    border: 1px solid #d9d5cc;
    border-radius: 6px;
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    background: #4c5b3f;
    transition: transform .2s ease, opacity .2s ease;
  }

  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  header nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    transform: none;
    padding: 12px 18px 18px;
    background: #fff;
    border-top: 1px solid #eeeae2;
    box-shadow: 0 12px 18px rgba(0, 0, 0, .08);
  }

  header nav.is-open { display: grid; }

  nav a {
    margin: 0;
    padding: 13px 4px;
    border-bottom: 1px solid #eeeae2;
  }

  .header-booking { display: none; }

  .hero {
    height: 470px;
    min-height: 0;
    padding: 0 18px 20px;
    align-items: flex-end;
    background-position: 61% center;
  }

  .hero-text {
    width: 100%;
    max-width: 380px;
    padding: 18px 20px;
    background: rgba(255,255,255,.78);
  }

  .hero h1 { margin: 4px 0 16px; font-size: clamp(34px, 10vw, 44px); line-height: 1.02; }
  .welcome-text { font-size: 25px; margin: 0 0 2px; }
  .subtext { margin: 0 0 18px; font-size: 14px; line-height: 1.45; }
  .subtext br { display: none; }
  .buttons { display: flex; flex-wrap: wrap; gap: 10px; }
  .btn, .btn-outline { display: inline-block; padding: 11px 16px; }

  .about { flex-direction: column; padding: 42px 24px; gap: 28px; font-size: 16px; text-align: left; }
  .about > img { width: 100%; aspect-ratio: 16 / 10; object-position: center 48%; }
  .about-page .about { flex-direction: column; }
  .about-story { display: grid; padding: 48px 24px; gap: 30px; }
  .about-story .about-content h1 { font-size: clamp(42px, 12vw, 54px); }
  .about-signoff { font-size: 25px; }
  .about-image { width: 100%; max-height: 460px; border-width: 7px; }
  .about-content { max-width: none; text-align: left; }
  h2, .section-title h2 { font-size: clamp(30px, 8vw, 38px); line-height: 1.15; }

  .about-features { gap: 14px; justify-content: space-between; }
  .feature { flex: 1; min-width: 0; }
  .feature p { margin: 8px 0 0; font-size: 13px; line-height: 1.3; }
  .feature img { width: 100%; height: 76px; object-fit: cover; }

  .specialities { padding: 42px 0; }
  .section-title { margin-bottom: 28px; }
  .speciality-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .card { padding: 0; }
  .card img { width: 100%; height: 135px; border-radius: 0; }
  .card-content { padding: 13px 10px; }
  .card h3 { margin: 0 0 7px; font-size: 14px; }
  .card p { margin: 0; font-size: 13px; line-height: 1.4; }

  .page-hero { min-height: 330px; padding: 45px 20px; }
  .page-hero > div { padding: 24px 18px; }
  .menu-section, .gallery-section { padding: 48px 0; }
  .menu-grid { grid-template-columns: 1fr; gap: 18px; }
  .menu-category-wide { grid-column: auto; }
  .menu-category > img { height: 165px; }
  .menu-category-content { padding: 20px; }
  .menu-category h2 { font-size: 30px; }
  .menu-item { font-size: 14px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 180px; gap: 12px; }
  .gallery-item-wide { grid-column: span 2; }
  .gallery-item figcaption { padding: 25px 12px 12px; font-size: 19px; }

  .social-media { padding: 45px 24px; }
  .social-container { gap: 25px; }
  .social-buttons { flex-direction: column; gap: 10px; align-items: stretch; }
  .social-buttons .social-btn { justify-content: center; width: 100%; }

  .booking { flex-direction: column; padding: 42px 24px; gap: 25px; }
  .booking-text h1 { font-size: clamp(30px, 8vw, 40px); }
  .booking-img { justify-content: center; }
  .booking-img img { width: min(280px, 100%); }

  .contact-section { padding: 46px 24px; }
  .contact-container { gap: 28px; }
  .contact-left, .contact-right { min-width: 0; width: 100%; }
  .contact-left h3 { margin-top: 35px; }
  .contact-left p, .hours li { font-size: 16px; }
  .contact-right { height: 300px; }
  .faq-section { padding: 48px 24px; }
  .faq-item summary { padding: 16px; font-size: 16px; }
  .faq-item p { padding: 14px 16px 18px; }

  footer { padding: 38px 24px 24px; }
  .footer-container { flex-direction: column; gap: 28px; }
  .footer-container div { width: 100%; }
  .footer-about, .footer-contact { text-align: left; }
  footer .social-links .social-btn { width: min(100%, 260px); min-width: 0; }
  .footer-bottom { margin-top: 28px; }
}

@media (max-width: 380px) {
  .top-bar span:nth-child(2) { display: none; }
  .speciality-grid { grid-template-columns: 1fr; }
  .card img { height: 180px; }
  .about-features { flex-direction: column; }
  .feature { display: grid; grid-template-columns: 82px 1fr; align-items: center; gap: 12px; text-align: left; }
  .feature img { height: 62px; }
}
