@font-face {
  font-family: "Italiana";
  src: url("../fonts/italiana-v21-latin-regular.5079c87a.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

html,
body {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
 
html {
  scroll-behavior: smooth;
}

body{
  font-family: "Italiana", sans-serif;
}

.mont-font{
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.mirror{
  transform: scaleX(-1);
}

.flex-center{
  display: flex;
  justify-content: center;
  align-items: center;
}

section{
  width: 100%;
  position: relative;
}

.gradient-title{
  background: linear-gradient(89.63deg, #1D2C05 5.23%, #7A8960 99.68%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.group-buttons button:hover span{
  color: black;
  border: black 1px solid;
}

.card.coming-soon::before{
  content: "Coming soon";
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.808);
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  font-family: "Italiana", sans-serif;
  color: #1D2C05;
  font-size: 40px;
}

#carousel {
  display: flex;
  width: 100%;
}

.hero-content {
  min-width: 100%;
  flex-shrink: 0;
}

.image picture,
.card picture {
  display: block;
  width: 100%;
}

.image picture > img,
.card picture > img {
  display: block;
  width: 100%;
}

.btn-hover:hover{
  background-color: #7A8960; 
}

/* Group homepage booking selector */
#hero:has(#book-now-dropdown) {
  z-index: 20;
  overflow: visible;
}

.booking-branch-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.booking-branch {
  border-bottom: 1px solid #e5e7eb;
}

.booking-branch:last-child {
  border-bottom: 0;
}

.booking-branch__link,
.booking-branch__summary {
  display: flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: #313131;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.booking-branch__link:hover,
.booking-branch__link:focus-visible,
.booking-branch__summary:hover,
.booking-branch__summary:focus-visible {
  background-color: #f3f5ef;
  color: #7a8960;
}

.booking-branch__summary {
  cursor: pointer;
  list-style: none;
}

.booking-branch__summary::-webkit-details-marker {
  display: none;
}

.booking-branch__chevron {
  flex: none;
  transition: transform 0.2s ease;
}

.booking-branch__details[open] .booking-branch__summary {
  background-color: #f3f5ef;
  color: #6b7b52;
}

.booking-branch__details[open] .booking-branch__chevron {
  transform: rotate(180deg);
}

.booking-branch__options {
  display: grid;
  gap: 0.25rem;
  margin: 0;
  padding: 0.5rem 0.75rem 0.75rem;
  list-style: none;
  background-color: #f3f5ef;
}

.booking-branch__options a {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  border: 1px solid transparent;
  color: #313131;
  font-size: 0.875rem;
  line-height: 1.25;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.booking-branch__options a:hover,
.booking-branch__options a:focus-visible {
  border-color: #a3b18a;
  background-color: #fff;
  color: #6b7b52;
}

.booking-branch__option-arrow {
  font-size: 1rem;
}

.booking-branch__thsr-icon {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  flex: none;
  object-fit: contain;
}



.region-btn.active {
  background-color: white;
}

.region-btn.active span {
  color: black;
  border: black 1px solid;
}

.region-btn:focus-visible {
  outline: 2px solid white;
  outline-offset: 3px;
}

/* horizontal card scroller — hide scrollbar but keep functionality */
.card-container {
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.card-container::-webkit-scrollbar {
  display: none;
}

/* full-card link (stretched-link pattern) */
.card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}
.card-link {
  text-decoration: none;
  color: inherit;
  border-radius: inherit;
}
.card-link:focus-visible {
  outline: 3px solid #A3B18A;
  outline-offset: -3px;
}
.card-cta {
  pointer-events: none;
}

/* mobile pagination dots */
.branch-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.branch-dots:empty {
  display: none;
}
.branch-dots li {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: width 0.2s ease, background-color 0.2s ease;
}
.branch-dots li.active {
  width: 24px;
  background-color: white;
}
@media screen and (min-width: 1100px) {
  .branch-dots {
    display: none;
  }
}
