/*======================
   01. Theme Base CSS
=========================*/
html,
body {
  width: 100%;
  height: 100%;
}

body {
  position: relative;
  font-family: "Montserrat", sans-serif;
  color: #2b2b2b;
  font-size: 16px;
  font-weight: 400;
  background: #f9f4d2; /* light cream background */
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

section {
  overflow: hidden;
}

.container {
  max-width: 1440px;
}

img {
  max-width: 100%;
  height: auto;
}

.container-fluid {
  padding: 0px;
  height: 100%;
}

p, tr td {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.12px;
  line-height: 30px;
  color: #2b2b2b;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 10px;
  font-family: "Oswald", sans-serif;
  color: #2b2b2b;
  text-transform: capitalize;
  font-weight: 500;
}

h1, h2 {
  font-size: 50px;
  font-weight: 400;
}

h3, h4, h5, h6 {
  font-size: 34px;
  font-weight: 400;
}

a {
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 400;
  text-decoration: none;
  display: block;
  margin: 0px;
  color: #2b2b2b;
}

a:hover {
  text-decoration: none;
}

a:active,
a:hover {
  outline: 0 none;
  color: unset;
}

i {
  vertical-align: middle;
}

button {
  cursor: pointer;
}

button:focus {
  outline: none;
  box-shadow: none;
}

section {
  position: relative;
}

ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

li {
  display: inline-block;
}

/* ======================
   LOGO AREA
========================= */
header .logo_area a {
  margin: 20px auto;
  width: 520px;
  height: 160px;
}
header .logo_area a img {
  width: 100%;
  height: 100%;
}

/* ======================
   MENU AREA STYLING
========================= */
header .menu_area {
  padding: 0px;
  background-color: #b23a3a; /* deep red */
  border-top: 1px solid #912e2e;
  border-bottom: 1px solid #912e2e;
}

header .menu_area .navbar {
  padding: 0px;
}

header .menu_area .navbar .collapse_area ul {
  margin: 0px auto;
}

header .menu_area .navbar .collapse_area ul li.nav-item {
  padding: 0px;
}

header .menu_area .navbar .collapse_area ul li.nav-item a.nav-link {
  padding: 20px 30px;
  color: #fff; /* white text */
  background-color: transparent;
  text-transform: uppercase;
  font-size: 17px;
  transition: all 0.3s ease-in-out;
}

header .menu_area .navbar .collapse_area ul li.nav-item a.nav-link.active {
  color: #ffe26f; /* soft yellow for active */
  border-bottom: 3px solid #ffe26f;
}

header .menu_area .navbar .collapse_area ul li.nav-item a.nav-link:hover {
  color: #ffe26f; /* hover yellow tone */
}

/* ======================
   BUTTONS / CALL TO ACTION
========================= */
button,
.btn,
.message_area a {
  background-color: #ffe26f; /* yellow buttons */
  color: #2b2b2b;
  border: none;
  transition: background-color 0.3s ease-in-out;
}

button:hover,
.btn:hover,
.message_area a:hover {
  background-color: #ffd640; /* darker yellow hover */
  color: #2b2b2b;
}

/* ======================
   MAIN SECTION
========================= */
.main_section {
  padding: 80px 0px;
  background-color: #f9f4d2;
}
.main_section .main_content p {
  font-size: 28px;
  line-height: 38px;
  margin-bottom: 25px;
}
.main_section .main_content iframe {
  margin-bottom: 25px;
}
.main_section .main_content .message_area {
  margin-top: 30px;
  display: inline-block;
}
.main_section .main_content .message_area a {
  font-size: 30px;
}

/* ======================
   FOOTER
========================= */
footer {
  padding: 50px 0px 20px;
  background-color: #b23a3a; /* same red as header */
  color: #fff;
}

.message_area {
  text-align: center;
}
.message_area a {
  font-size: 26px;
  display: block;
  letter-spacing: 1px;
  margin-bottom: 50px;
  color: #2b2b2b;
  transition: all 0.3s ease-in-out;
}
.message_area a i {
  display: block;
  font-size: 50px;
  margin-bottom: 10px;
  color: #b23a3a;
}
.message_area a:hover {
  color: #912e2e;
  transition: all 0.3s ease-in-out;
}
.message_area p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
/* ======================
   ABOUT TEAM SECTION
========================= */
.about_team_section {
  background-color: #b23a3a; /* red background */
  padding: 60px 0;
  color: #fff;
}

.about_team_section .text_column h3 {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 20px;
}

.about_team_section .text_column p {
  font-size: 18px;
  line-height: 1.8;
  color: #fff;
}

.about_team_section .image_column img {
  width: 100%;
  border-radius: 4px;
  border: 4px solid #ffe26f; /* thin yellow border for accent */
}

/* Stack text above image on smaller screens */
@media only screen and (max-width: 767px) {
  .about_team_section .text_column {
    margin-bottom: 30px;
  }
}
/* ======================
   GALLERY SECTION
========================= */
.gallery_section {
  background-color: #b23a3a; /* match your site's red background */
  color: #fff;
  padding: 60px 0;
}

.gallery_section h1 {
  color: #fff;
  font-size: 42px;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.gallery_grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.gallery_item {
  width: 300px;
  text-align: center;
}

.gallery_item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 4px solid #ffe26f; /* yellow border accent */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery_item img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 226, 111, 0.8);
}

.gallery_item p {
  margin-top: 10px;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
}
/* ======================
   ACCOMMODATIONS LIST
========================= */
.accommodations_list {
  list-style-type: disc;
  padding-left: 25px;
  margin: 0;
}

.accommodations_list li {
  margin: 0;
  padding: 4px 0;
  line-height: 1.5;
  color: #fff; /* white text for red background */
  font-size: 18px;
}

.accommodations_list li b {
  color: #ffe26f; /* yellow highlight for key terms */
}
/* ======================
   COUNTY SECTION
========================= */
.county_section {
  background-color: #f9f4d2; /* cream background for contrast */
  color: #2b2b2b;
  padding: 80px 0;
}

.county_section h1 {
  font-size: 55px;
  font-weight: 700;
  color: #b23a3a; /* red headline */
  margin-bottom: 15px;
}

.county_section h2 {
  font-size: 24px;
  font-style: italic;
  color: #2b2b2b;
  margin-bottom: 25px;
}

.county_section .icons {
  font-size: 48px;
  color: #b23a3a;
  margin-bottom: 10px;
}

.county_section h3:last-of-type {
  font-size: 42px;
  font-weight: 700;
  color: #b23a3a;
}
/* ======================
   WHY 810 MUNCHIES SECTION (CONTAINED WIDTH)
========================= */
.why_munchies_section {
  background-color: #f9f4d2; /* cream background to match surrounding sections */
  padding: 60px 0;
}

.why_munchies_section .inner_red_box {
  background-color: #b23a3a; /* same red as your website */
  color: #fff;
  padding: 40px 60px;
  border-radius: 10px;
  max-width: 1000px;
  margin: 0 auto; /* centers the red box */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.why_munchies_section h1 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.why_munchies_section p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #fff;
}

.why_munchies_section .review_link {
  margin-top: 20px;
}

.why_munchies_section .review_link img {
  width: 180px;
  height: auto;
  transition: transform 0.3s ease;
}

.why_munchies_section .review_link img:hover {
  transform: scale(1.05);
}
/* ======================
   CLEANEST RESTAURANT BANNER - ALL WHITE TEXT
========================= */
.cleanest_banner {
  background-color: #b23a3a; /* site red */
  color: #ffffff; /* all text white */
  padding: 40px 20px;
  text-align: center;
}

.cleanest_banner h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
}
/* ======================
   GOOGLE MAP SECTION (MATCH IMAGE LAYOUT)
========================= */
.map_section {
  background-color: #b23a3a; /* site red */
  color: #ffffff;
  padding: 50px 0;
}

.map_section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.map_section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.map_section ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}

.map_section li {
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.5;
  color: #ffffff;
}

.map_section a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.map_section a:hover {
  color: #f9f4d2; /* soft cream hover */
}

/* Right-side map styling */
.map_column {
  text-align: center;
}

.map_column iframe {
  width: 100%;
  max-width: 420px;
  height: 260px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}
/* ======================
   PHOTO GALLERY SECTION
========================= */
.photo_gallery_section {
  background-color: #b23a3a; /* site red */
  color: #ffffff;
  padding: 60px 0;
}

.photo_gallery_section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
  color: #ffffff;
}

.gallery_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: center;
}

.gallery_item {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.gallery_item:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Lightbox Overlay */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  text-align: center;
}

.lightbox_image {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
  margin-top: 30px;
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover {
  color: #f9f4d2;
}

/* Navigation Arrows */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;
  padding: 10px;
  user-select: none;
  transition: color 0.3s ease;
}

.nav:hover {
  color: #f9f4d2;
}

.prev {
  left: 60px;
}

.next {
  right: 60px;
}
/* ======================
   FAQ SECTION
========================= */
.faq_section {
  background-color: #b23a3a; /* site red */
  color: #ffffff;
  padding: 60px 0;
}

.faq_section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq_section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
  text-align: center;
}

.faq_item {
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 10px;
}

.faq_question {
  background: none;
  border: none;
  width: 100%;
  color: #ffffff;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq_question:hover {
  color: #f9f4d2;
}

.faq_answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  font-size: 17px;
  line-height: 1.5;
  margin-top: 5px;
}

.faq_item.active .faq_answer {
  max-height: 300px;
  opacity: 1;
}

.arrow {
  transition: transform 0.3s ease;
  font-size: 20px;
}

.faq_item.active .arrow {
  transform: rotate(180deg);
}
/* ======================
   MENU PAGE
========================= */
.menu_section {
  background-color: #b23a3a;
  color: #ffffff;
  padding: 60px 0;
}

.menu_section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.menu_section h2 {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: #ffffff;
}

.menu_block {
  margin-bottom: 40px;
}

.menu_block h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 8px;
}

.menu_block h4 {
  font-size: 22px;
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: 600;
}

.menu_block ul {
  list-style: none;
  padding-left: 0;
}

.menu_block li {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 6px;
}

.menu_block p {
  font-size: 17px;
  margin-bottom: 5px;
  line-height: 1.5;
  color: #fff;
}
/* ======================
   COLLAPSIBLE MENU
========================= */
.menu_section {
  background-color: #b23a3a;
  color: #ffffff;
  padding: 60px 0;
}

.menu_section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.menu_section h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.menu_item {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

.menu_toggle {
  width: 100%;
  background: none;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  text-align: left;
  padding: 15px;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu_toggle::after {
  content: "\25BC"; /* Down arrow */
  font-size: 18px;
  transition: transform 0.3s;
}

.menu_toggle.active::after {
  transform: rotate(180deg);
}

.menu_content {
  display: none;
  padding: 0 15px 15px;
}

.menu_content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
}

.menu_content ul {
  list-style: none;
  padding-left: 10px;
}

.menu_content li {
  font-size: 16px;
  margin-bottom: 6px;
}

.menu_content p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 767px) {
  .menu_section h2 {
    font-size: 30px;
  }

  .menu_toggle {
    font-size: 18px;
  }

  .menu_content li {
    font-size: 15px;
  }
}
/* ======================
   FIX MENU TEXT COLORS
========================= */
.menu_section,
.menu_section h2,
.menu_section h3,
.menu_section h4,
.menu_section h5,
.menu_section p,
.menu_section ul,
.menu_section li,
.menu_section button {
  color: #ffffff !important;
}

.menu_toggle {
  background: none;
  border: none;
  color: #ffffff !important;
}

.menu_content a {
  color: #ffffff !important;
  text-decoration: underline;
}
/* ======================
   ABOUT TEAM SECTION (FIXED COLORS + READABILITY)
========================= */
.about_team_section {
  background-color: #b23a3a; /* match your site’s red */
  padding: 60px 0;
}

.about_team_section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

/* White content box inside red background */
.about_content_box {
  background-color: #b23a3a; /* keep full red background */
  color: #ffffff; /* all text white */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* Headline (white and bold) */
.about_team_section .text_column h3 {
  color: #ffffff;
  font-size: 30px; /* slightly larger */
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* Paragraph text (white and readable) */
.about_team_section .text_column p {
  color: #ffffff;
  font-size: 19px; /* increased for readability */
  line-height: 1.7;
  margin-bottom: 12px;
}

/* Responsive video container (16:9) */
.video_container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.video_container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Hide text on smaller screens */
@media (max-width: 768px) {
  .about_team_section .text_column {
    display: none; /* hide text on smaller screens */
  }

  .about_content_box {
    padding: 15px;
  }
}
/* Captions under thumbnails */
.carousel_track figure {
  margin: 0;
  text-align: center;
  color: #ffffff;
  font-size: 14px;
}

.carousel_track figcaption {
  margin-top: 5px;
  opacity: 0.8;
}

/* Lightbox caption text */
.lightbox_caption {
  color: #fff;
  text-align: center;
  font-size: 18px;
  margin-top: 10px;
}
/* ======================
   INFINITE IMAGE CAROUSEL
========================= */
.carousel_section {
  background-color: #b23a3a;
  padding: 40px 0;
  text-align: center;
}

.carousel_section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

.carousel_wrapper {
  overflow: hidden;
  position: relative;
}

.carousel_track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: infiniteScroll 60s linear infinite;
}

/* Make thumbnails larger */
.carousel_track img {
  width: 450px;
  height: auto;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel_track img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.carousel_track figure {
  margin: 0;
  text-align: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
}

.carousel_track figcaption {
  margin-top: 8px;
  opacity: 0.9;
}

/* Infinite horizontal scroll */
@keyframes infiniteScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Pause on hover */
.carousel_wrapper:hover .carousel_track {
  animation-play-state: paused;
}

/* ======================
   LIGHTBOX
========================= */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.95);
}

/* Caption ABOVE the image */
.lightbox_caption {
  color: #fff;
  text-align: center;
  font-size: 20px;
  margin-top: 5%;
  margin-bottom: 15px;
  opacity: 0.9;
}

.lightbox_image {
  display: block;
  margin: 0 auto;
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.close:hover {
  color: #b23a3a;
}

.nav {
  position: absolute;
  top: 50%;
  font-size: 50px;
  color: #fff;
  padding: 10px;
  cursor: pointer;
  user-select: none;
}

.nav:hover {
  color: #b23a3a;
}

.nav.prev { left: 30px; }
.nav.next { right: 30px; }

@media (max-width: 768px) {
  .carousel_track img {
    width: 250px;
  }

  .lightbox_caption {
    font-size: 16px;
    margin-top: 10%;
  }

  .lightbox_image {
    max-width: 95%;
    max-height: 70%;
  }
}
