@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
}

body {
  background-color: #4b6b6a;
  height: 1000px;
}

:root {
  --blue: #324847;
  --dark-blue: #4b6b6a;
  --background: #081118;
  --grey: #333;
  --light-grey: #3b3b3b;
}

.mmenu {
  padding: 100px;
  width: 20rem;
  border-radius: 0.2rem;
  overflow: hidden;
}
.mmenu a {
  text-decoration: none;
}

.menu-item {
  list-style: none;
  border-top: 1px solid var(--dark-blue);
  overflow: hidden;
}

.btn {
  display: block;
  padding: 1rem 1.2rem;
  background: var(--blue);
  color: white;
  position: relative;
}
.btn::before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  background: var(--blue);
  left: 1.5rem;
  bottom: -0.5rem;
  transform: rotate(45deg);
}
.btn i {
  margin-right: 1rem;
}

.menu-item__sub {
  background: var(--grey);
  overflow: hidden;
  transition: max-height 0.3s;
  max-height: 0;
}
.menu-item__sub a {
  display: block;
  padding: 1rem 1.6rem;
  color: white;
  font-size: 0.9rem;
  position: relative;
  border-bottom: 1px solid var(--light-grey);
}
.menu-item__sub a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.4rem;
  height: 100%;
  background: var(--blue);
  transform: translatex(-0.4rem);
  transition: 0.3s;
  opacity: 0;
}
.menu-item__sub a:hover::before {
  opacity: 1;
  transform: translatex(0);
}

.menu-item:target .menu-item__sub {
  max-height: 10em;
}

.menu-item__sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-left: 1rem; /* Indent submenus */
}

.btn {
  display: block;
  padding: 1rem;
  color: #fff;
  background: #4b6b6a;
  cursor: pointer;
}

.btn:hover {
  background: #324847;
}

.menu-item:target > .menu-item__sub,
.menu-item__sub:target {
  max-height: 10em;
}

.sub-btn {
  display: block;
  color: white;
  padding: 1rem 1.6rem;
  position: relative;
}

.sub-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.4rem;
  height: 100%;
  background: var(--blue);
  transform: translateX(-0.4rem);
  opacity: 0;
  transition: 0.3s;
}

.sub-btn:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.navbar {
  background: #4b6b6a;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  border-bottom: 4px solid #e8dfb6;
  border-image-slice: 1;
  padding: 0 40px;
}

/* Flexbox layout for logo and menu items */
.navbar__container {
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  justify-content: space-between;
}

/* Logo size */
.sc-logo {
  width: 160px;
  height: 90px;
}

/* Horizontal menu list inside navbar */
.navbar__menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

/* Individual menu item alignment */
.navbar__item {
  height: 80px;
  display: flex;
  align-items: center;
}

/* Styled navigation links with gradient text */
.navbar__links {
  background: #e8dfb6;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 14px;
  text-decoration: none;
  padding: 0.5rem;
}

/* Hover effect for nav links */
.navbar__links:hover {
  -webkit-text-fill-color: #cbbf97;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  text-decoration: underline #cbbf97;
}

/* Hamburger icon hidden by default */
.navbar__toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  height: 50px;
  width: 40px;
  margin-left: 0;
  margin-right: 5px;
  position: relative;
  visibility: hidden;
}

/* Hamburger bars */
.navbar__toggle .bar {
  height: 5px;
  width: 100%;
  background-color: #e8dfb6;
  border-radius: 4px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
}

/* Position top and bottom bars */
.navbar__toggle .bar:nth-child(1) {
  top: 25%;
}
.navbar__toggle .bar:nth-child(3) {
  top: 75%;
}

/* Active state (X icon) */

.navbar__toggle.active .bar:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.navbar__toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.navbar__toggle.active .bar:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Off-screen menu for small screens (hidden initially) */
/* Dropdown menu - hidden by default */
.off-screen {
  position: fixed; /* changed from fixed */
  top: 70px; /* height of navbar */
  left: 0;
  width: 100%;
  height: auto;
  /* background: #081118; */
  transition: max-height 0.3s ease;
  z-index: 998; /* below navbar */
  overflow: hidden;
  max-height: 0; /* collapsed by default */
  transition: max-height 0.4s ease-in-out;
}
.off-screen.active {
  max-height: 100vh; /* enough to show full menu */
}

/* Optional overlay (fade background when menu is open) */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 997; /* under navbar and menu */
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/*  */
.dropdown {
  position: relative;
}

.dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  right: 0%;
  background-color: #2f4746;
  border-bottom: 1px solid #4b6b6a;
  min-width: 150px;
  flex-direction: column;
  list-style-type: none;
  z-index: 1000;
}

.dropdown__link {
  padding: 10px 15px;
  color: #e8dfb6;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  z-index: 0;
}

.dropdown__link:hover {
  background-color: #4b6b6a;
  color: white;
}

.dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  right: 0%;
  background-color: #2f4746;
  border-bottom: 1px solid #4b6b6a;
  min-width: 150px;
  flex-direction: column;
  list-style-type: none;
  z-index: 1000;
}

/* Show menu only when .active is applied */
.dropdown.active > .dropdown__menu {
  display: flex;
}
/* Nested DropDown */

/* Position the nested submenu */
/* Base submenu */
.dropdown__submenu {
  display: none;
  position: absolute;
  top: 0; /* aligns to top of parent li */
  left: 100%; /* appears to the right of parent li */
  background-color: #2f4746;
  min-width: 150px;
  flex-direction: column;
  list-style: none;
  z-index: 1001;
  border-bottom: 1px solid #4b6b6a;
}

/* Parent li relative positioning for submenu */
.dropdown__submenu li.has-submenu {
  position: relative;
}

/* Show submenu on hover */
.dropdown__submenu li.has-submenu:hover > .dropdown__submenu {
  display: flex;
}

/* Optional arrow styling */
.dropdown__link .arrow {
  float: right;
  margin-left: 5px;
  transition: transform 0.2s;
}

.dropdown__submenu li.has-submenu:hover > .dropdown__link .arrow {
  transform: rotate(90deg);
}

/* Show nested submenu on hover */
.dropdown:hover > .dropdown__submenu {
  display: flex;
}

/* Style links inside nested submenu */
.dropdown__submenu .dropdown__link {
  padding: 10px 15px;
  color: #e8dfb6;
  white-space: nowrap;
}

.dropdown__submenu .dropdown__link:hover {
  background-color: #4b6b6a;
  color: white;
}

.arrow {
  margin-left: 10px;
  font-size: 12px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.dropdown:hover > .dropdown__link .arrow {
  transform: rotate(90deg);
  margin-left: 70px;
  transition: all 0.3s ease-in;
}

/* Style off-screen menu items */
.off-screen ul {
  list-style: none;
  padding: 0;
}

.off-screen .navbar__item {
  width: 100%;
  justify-content: start;
  padding: 1rem 0;
  font-size: 16px;
}

.off-screen .navbar__links {
  font-size: 20px;
}

/* Responsive adjustments for mobile screens */
@media screen and (max-width: 768px) {
  .navbar__container > .navbar__menu {
    display: none;
  }

  .navbar__toggle {
    display: flex;
    visibility: visible;
  }

  .off-screen.active {
    display: flex;
  }

  .off-screen .navbar__menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .navbar__menu {
    display: none;
  }
}
/* == == */

/* == == */
/* Overlay base */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent black */
  z-index: 900; /* Less than .off-screen (998) but above normal content */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

/* Show overlay when active */
.overlay.active {
  opacity: 1;
  pointer-events: all;
}
/* == == */

.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: #000;
}

.hero-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  gap: 2rem;
  z-index: 2;
}

.cta,
.reviews-container {
  position: absolute;
  transform: translateY(-50%);
}

.cta {
  top: 50%;
  left: 10%;
}

.reviews-container {
  top: 50%;
  right: 10%;
}

.slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.cta {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 2;
  background: #4b6b6aaa;
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  width: auto;
  max-width: 600px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.catalogue {
  background-color: #e8dfb6;
  color: #4b6b6a;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.catalogue:hover {
  background-color: #4b6b6a;
  color: #e8dfb6;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.428);
}

.cta h2 {
  margin: 0 0 3.5rem;
  font-size: 2.5rem;
  color: #e8dfb6;
}

.cta p {
  margin: 10px;
  font-size: 1rem;
  color: #b8ab7f;
}
/*  */
.reviews-container {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 350px;
  max-height: 300px;
  padding: 1rem;
  background-color: #4b6b6a;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  font-family: Arial, sans-serif;
  transition: opacity 0.5s ease-in-out;
  z-index: 5; /* ensure it's above slideshow */
}
.review-author {
  font-weight: bold;
  margin-bottom: 0.3rem;
  color: #e8dfb6;
}

.review-text {
  font-style: italic;
  margin-bottom: 0.5rem;
  color: #e8dfb6;
}

.review-time {
  font-size: 0.8rem;
  color: #b8ab7f;
}

.review-stars {
  color: #e8dfb6;
  font-size: 1rem;
  margin-left: 0.3rem;
}
.reviews-container {
  opacity: 0;
}

.reviews-container.visible {
  opacity: 1;
}

.reviews-container {
  transition: opacity 0.5s ease-in-out;
}
/*  */
/* Content */
.content {
  background-color: #556d6c;
  width: 90vw;
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.top-wrapper {
  max-width: 100%;
  padding: 50px 0px;
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 100px;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 50px;

  align-items: center;
  height: 40vh;
}
.top-wrapper h2 {
  color: #e8dfb6;
}

.top-right-group {
  display: flex;
  gap: 0;
}

.top-mid,
.top-right {
  height: auto;
  max-height: 40vh;
  width: 100%;
}

.mid-right-group {
  display: flex;
  gap: 0;
}
.mid-wrapper {
  max-width: 100%;
  padding-top: 50px; /* space above mid wrapper */
  padding-bottom: 50px; /* space below mid wrapper */

  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10px;
  width: 90%;
  margin: 0 auto;
  align-items: start;
}

.video-hover {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: all 0.3s ease;
}

/* Play & loop on hover */
.video-hover:hover {
  cursor: pointer;
}

.video-hover:hover {
  /* nothing here yet – JS will control playback */
}

.mid-left {
  height: 70vh;
  max-width: 100%;
}
.mid-mid {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  text-align: left;
}

.mid-mid h3 {
  color: #b8b18f;
  font-size: 24px;
  line-height: 1.5;
  width: 100%;
}

.mid-right {
  max-width: 100%;
  max-height: 70vh;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.bottom-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 100%;

  /* ✅ Remove fixed height so it grows with content */
}

.bottom-left-cell,
.bottom-right-cell {
  width: 100%;
  height: 100%;
}

.left-cell,
.right-cell {
  align-self: start;

  width: 100%;
  height: 70vh;
  object-fit: cover;
  display: block;
}

/* Carousel */
.carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 48px 0;
  background-color: #4b6b6a;
}

.gradient {
  position: absolute;
  top: 0;
  height: 100%;
  width: 80px;
  z-index: 10;
  pointer-events: none;
}

.left-gradient {
  left: 0;
  background: linear-gradient(to right, #4b6b6a, transparent);
}

.right-gradient {
  right: 0;
  background: linear-gradient(to left, #4b6b6a, transparent);
}

.carousel {
  display: flex;
  animation: scroll 20s linear infinite;
}

.logos-slide {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-shrink: 0;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  width: 192px;
  margin: 0 48px;
}

.logo {
  max-height: 72px;
  width: 100%;
  object-fit: contain;
  opacity: 0.9;
  filter: grayscale(100%) brightness(200%) contrast(120%);
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.logo:hover {
  filter: grayscale(0%) brightness(200%) contrast(120%);
  opacity: 1;
  transform: scale(1.5);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .logo-item {
    margin: 0 16px;
    width: 100px;
  }

  .gradient {
    width: 40px;
  }
}

/* Bottom */
.foot {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 1.5rem;
  justify-items: center;
  text-align: center;
}

@media (min-width: 900px) {
  .foot {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Common column wrapper to normalize layout */
.foot-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}

/* Unified title style */
.foot-title {
  font-size: 1.75rem;
  text-align: center;
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: #e8dfb6;
  font-family: "Segoe UI", sans-serif;
}

/* Location Section */
.location {
  text-align: center;
  padding: 0;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Opening Times */
.opening-table {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 2rem;
  border-collapse: collapse;
  font-family: "Segoe UI", sans-serif;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.opening-table thead {
  background-color: #4b6b6a;
  color: white;
}

.opening-table th,
.opening-table td {
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}

.opening-table tr:last-child td {
  border-bottom: none;
}

.opening-table tr:hover {
  background-color: #f9fafb;
}

/* Contact Section */
.contact-section {
  background-color: #4b6b6a;
  padding: 0;
  text-align: center;
  color: #2f3e3e;
  font-family: "Segoe UI", sans-serif;
}

.contact-box {
  /* background-color: white; */
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.contact-company {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #4b6b6a;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-details li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.contact-details a {
  color: #e8dfb6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-details a:hover {
  color: #c97d60;
  text-decoration: underline;
}

.quick-links {
  padding: 2rem;
  background-color: #4b6b6a;
  color: #222;
  text-align: center;
}

.quick-top-wrapper img {
  max-width: 120px;
  height: auto;
  /* margin-bottom: 1rem; */
  margin: 1rem auto;
}

.quick-top-wrapper h1 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.quick-bottom-wrapper {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  text-align: left;
}

.service,
.quick-link {
  flex: 1 1 200px;
  max-width: 250px;
}

.service h2,
.quick-link h2 {
  color: #fff;

  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.service hr,
.quick-link hr {
  border: none;
  height: 2px;
  background-color: #00bcd4;
  width: 20%;
  margin-bottom: 1rem;
}

.service ul,
.quick-link ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service li,
.quick-link li {
  color: #fff;

  margin-bottom: 0.5rem;
}

.service a,
.quick-link a {
  color: inherit;
  text-decoration: none;
}

.service a:hover,
.quick-link a:hover {
  text-decoration: underline;
}

/* == Footer == */

.footer {
  background-color: #202020;
  padding: 2rem 1rem;
  font-size: 0.875rem;
  color: #fff;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem; /* Adds vertical spacing between <p>s */
  text-align: center;
}

.footer-top {
  font-weight: 500;
}

.footer-info {
  line-height: 1.6;
}

.footer-link a {
  color: #0073e6;
  text-decoration: none;
}

.footer-link a:hover {
  text-decoration: underline;
}

/* Hide on desktop, show on mobile */
.content-mobile {
  display: none;
}

@media (max-width: 768px) {
  .content-mobile {
    display: block;
    width: 100%;
    padding: 1rem;
    box-sizing: border-box;
  }
  .content {
    display: none;
  }

  .top-wrapper-mobile h2 {
    font-size: 1rem;
    color: #e8dfb6;
    margin-bottom: 1rem;
    text-align: center;
  }

  .slideshow-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 10px;
    margin: 0 auto 2rem;
    height: 500px; /* fixed height for all slides */
  }

  .slide-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* force all to fill container height */
    object-fit: cover; /* crop instead of stretch */
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .slide-mobile.active {
    opacity: 1;
    z-index: 1;
  }
}

/* == Media Query== */
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }

  .navbar {
    padding: 0 20px;
    height: 70px;
  }

  .sc-logo {
    width: 200px;
    height: auto;
  }

  .navbar__links {
    font-size: 12px;
    padding: 0.3rem;
  }

  .off-screen .navbar__links {
    font-size: 16px;
  }

  .cta {
    top: 45%;
    left: 5%;
    padding: 1rem;
    max-width: 90%;
    min-width: unset;
  }

  .cta h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .cta p {
    font-size: 0.9rem;
    margin: 0.5rem 0;
  }

  .catalogue {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  .reviews-container {
    position: static;
    width: 100%;
    max-width: 100%;
    margin-top: 1rem;
    transform: none;
  }

  .top-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    height: auto;
    padding: 20px 0;
  }

  .top-right-group {
    flex-direction: column;
    gap: 10px;
  }

  .top-mid,
  .top-right {
    height: auto;
  }

  .mid-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mid-left,
  .mid-right,
  .mid-mid {
    height: auto;
    width: 90%;
  }

  .mid-mid h3 {
    font-size: 13px;
  }

  .bottom-wrapper {
    grid-template-columns: 1fr;
    height: auto;
  }

  .bottom-left-cell,
  .bottom-right-cell {
    height: 200px;
  }

  .left-cell,
  .right-cell {
    height: 200px;
    object-fit: cover;
  }

  .carousel-container {
    padding: 24px 0;
  }

  .gradient {
    display: none;
  }
}

.hero-content {
  position: relative; /* remove absolute centering */
  top: auto;
  left: auto;
  transform: none;
  flex-direction: column; /* stack vertically */
  justify-content: center;
  align-items: center; /* center horizontally */
  height: 100%; /* fill the hero height */
  width: 90%;
  margin: 0 auto;
  gap: 2rem;
}

.cta,
.reviews-container {
  position: relative; /* no absolute positioning */
  top: auto;
  left: auto;
  right: auto;
  transform: none; /* reset transform to avoid conflicting with parallax */
  width: 90%;
  max-width: 600px; /* optional, keeps max width */
  margin: 0 auto;
}

.cta {
  padding: 1.5rem 1rem;
  max-width: 600px;
}

.reviews-container {
  max-width: 600px;
  max-height: 300px;
  padding: 1rem;
  margin-top: 1rem;
  overflow-y: auto; /* scroll if reviews exceed max height */
}
/* Desktop: hide hero-mobile */
@media (min-width: 769px) {
  .hero-mobile {
    display: none;
  }
}

@media (max-width: 768px) {
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* #e8dfb6;4b6b6a */

  .hero-content {
    display: none;
  }

  .hero-mobile {
    display: block;
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #000;
  }

  .mobile-hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .mobile-hero-img2 {
    width: 100%;
    height: 300px;
    object-fit: cover;
    padding-top: 45px;
  }

  .hero-mobile-content {
    display: flex;
    flex-direction: column;
    background-color: #4b6b6a;
    padding: 2rem 1rem;
    gap: 2rem;
  }

  .cta-mobile {
    color: #e8dfb6;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .cta-mobile h2 {
    font-size: 1rem;
    color: #e8dfb6;
  }

  .cta-mobile p {
    font-size: 1.1rem;
    color: #e8dfb6;
  }

  .catalogue {
    background-color: #202020;
    border: 2px solid #76b19b;
    color: #76b19b;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.6s ease-in-out;
  }

  .catalogue:hover {
    background-color: #76b19b;
    color: #202020;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.428);
  }

  .reviews-container-mobile {
    background-color: #1d1d1d;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    color: #76b19b;
    font-size: 0.9rem;
    width: 100%;
    max-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }

  .reviews-container-mobile.visible {
    opacity: 1;
  }

  .reviews-container-mobile .review-author {
    font-weight: bold;
    margin-bottom: 0.3rem;
    color: #76b19b;
  }

  .reviews-container-mobile .review-text {
    font-style: italic;
    margin-bottom: 0.5rem;
    color: #76b19b;
  }

  .reviews-container-mobile .review-time {
    font-size: 0.8rem;
    color: #76b19b;
  }

  .reviews-container-mobile .review-stars {
    color: #e8dfb6;
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .hero,
  .overlay {
    display: none !important;
  }

  .content {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  /* Content/text centered at 80% width */
  .text-container,
  .mid-mid,
  .top-wrapper h2,
  .mid-mid h3 {
    width: 80%;
    margin: 0 auto;
    text-align: center;
  }

  /* All images should now be 90% width and centered */
  .content img {
    display: block;
    width: 90%;
    height: auto;
    margin: 0 auto;
    padding: 0;
    border: none;
  }

  .top-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    width: 100%;
    margin-bottom: 0;
    height: auto;
  }

  .top-wrapper h2 {
    font-size: 1rem;
    line-height: 1.4;
    padding: 1.5rem 0;
    color: #e8dfb6;
  }

  .top-right-group {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .top-mid,
  .top-right,
  .mid-left,
  .mid-right,
  .left-cell,
  .right-cell,
  .bottom-left-cell,
  .bottom-right-cell {
    /* width: 100%; */
    height: auto;
    display: block;
    object-fit: cover;
  }

  .mid-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    width: 100%;
  }

  .mid-mid {
    padding: 1rem 0;
  }

  .mid-mid h3 {
    padding: 1.5rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #b8b18f;
  }

  .bottom-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    width: 100%;
    height: auto;
  }
}

.elfsight-app-2d510061-5b92-482f-8f98-d57e9bc05f72 {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

body {
  overflow-x: hidden; /* Prevents horizontal scroll */
}
