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: "Montserrat", 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;
}

.btn-hover:hover{
  background-color: #7A8960; 
}



.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;
  }
}
