/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: normal;
  line-height: 1.5;
  font-weight: 400;
  color: #232323;
  background-color: #fcf1f5;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

section {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: #b3dee2;
  text-decoration: none;
  transition: color 0.6s;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ===== Typography ===== */
.display-1 {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  line-height: 1;
}

.display-2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  line-height: 1;
}

.display-4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  line-height: 1.5;
}

.display-5 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  line-height: 1.5;
}

.display-7 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  line-height: 1.3;
}

.text-white { color: #ffffff; }
.text-black { color: #232323; }
.text-primary { color: #b3dee2; }
.text-center { text-align: center; }
.text-left { text-align: left; }

strong, b { font-weight: bold; }

@media (max-width: 992px) {
  .display-1 { font-size: 4.8rem; }
}

@media (max-width: 768px) {
  .display-1 {
    font-size: calc(2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc(1.1 * (2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: calc(1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc(1.3 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: calc(1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc(1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: calc(1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc(1.4 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: calc(1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc(1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}

@media (min-width: 992px) and (max-width: 1400px) {
  .display-1 {
    font-size: calc(2.75rem + (6 - 2.75) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc(1.1 * (2.75rem + (6 - 2.75) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-2 {
    font-size: calc(1.875rem + (3.5 - 1.875) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc(1.3 * (1.875rem + (3.5 - 1.875) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-4 {
    font-size: calc(1.07rem + (1.2 - 1.07) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc(1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-5 {
    font-size: calc(1.525rem + (2.5 - 1.525) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc(1.4 * (1.525rem + (2.5 - 1.525) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-7 {
    font-size: calc(1.14rem + (1.4 - 1.14) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc(1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 62rem) / (87 - 62))));
  }
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.container-fluid {
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 768px) and (max-width: 1400px) {
  .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (max-width: 1400px) {
  .container {
    max-width: 100%;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -16px;
  margin-right: -16px;
}

.row > [class*="col"] {
  padding-left: 16px;
  padding-right: 16px;
}

.col-12 { width: 100%; }

@media (min-width: 768px) {
  .col-md-4 { width: 33.333%; }
  .col-md-6 { width: 50%; }
}

@media (min-width: 992px) {
  .col-lg-4 { width: 33.333%; }
}

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

.align-center {
  text-align: center;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-width: 2px;
  border-style: solid;
  padding: 1.25rem 2rem;
  border-radius: 100px;
  transition: all 0.2s ease-in-out;
  white-space: normal;
  word-break: break-word;
}

@media (max-width: 767px) {
  .btn {
    padding: 0.75rem 1.5rem;
  }
}

.btn-success-outline {
  background-color: #9fe870;
  border-color: #9fe870;
  color: #000000;
}

.btn-success-outline:hover {
  background-color: #6ddc25;
  border-color: #6ddc25;
  color: #000000;
}

.section-btn {
  margin-top: 1rem;
}

/* ===== Rounded elements ===== */
img,
.card,
.item-wrapper,
.video-wrapper,
.slide-content {
  border-radius: 2rem !important;
}

.video-wrapper {
  overflow: hidden;
}

/* ===== Header / Navigation ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0.6rem 0;
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  height: 90px;
  padding: 0 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 100vw;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
  max-width: calc(100% - 32px);
  margin: 0 auto;
}

.navbar-brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0;
}

.navbar-brand a {
  display: flex;
  align-items: center;
  line-height: 0;
}

.navbar-brand img {
  height: 4.5rem;
  width: auto;
  object-fit: contain;
  display: block;
}

.navbar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  height: 100%;
  margin: 0;
  padding: 0;
}

.navbar-nav li {
  display: flex;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 16px;
  line-height: 1;
  color: #232323;
  font-weight: 600;
  border-radius: 1rem;
  transition: background-color 0.3s;
}

.nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
  color: #232323;
}

.icons-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0;
  gap: 0.25rem;
}

.icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: #000;
  line-height: 0;
}

.icon-link svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}

.navbar-toggler {
  display: none;
  width: 31px;
  height: 20px;
  position: relative;
  margin-left: 12px;
  order: 1000;
}

.hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  background-color: #000;
  transition: all 0.2s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2),
.hamburger span:nth-child(3) { top: 8px; transition: all 0.15s; }
.hamburger span:nth-child(4) { top: 16px; }

.navbar.open .hamburger span:nth-child(1),
.navbar.open .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
}

.navbar.open .hamburger span:nth-child(2) {
  transform: rotate(45deg);
}

.navbar.open .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
}

.navbar-collapse {
  display: flex;
  align-items: center;
}

@media (min-width: 992px) {
  .navbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 1rem;
  }

  .navbar-brand,
  .navbar-nav,
  .icons-menu {
    align-self: center;
  }

  .navbar-brand {
    grid-column: 1;
    justify-self: start;
  }

  .navbar-collapse {
    display: contents;
  }

  .navbar-nav {
    grid-column: 2;
    justify-self: center;
  }

  .icons-menu {
    grid-column: 3;
    justify-self: end;
  }
}

@media (max-width: 991px) {
  .navbar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 56px;
    max-width: 95%;
    padding: 0 1rem;
    margin-top: 0;
  }

  .navbar-brand img {
    height: 2.5rem;
  }

  .navbar-toggler {
    display: flex;
    align-items: center;
    align-self: center;
    margin-left: auto;
  }

  .navbar-collapse {
    display: none;
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    width: 100%;
    flex-direction: column;
    padding: 1rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 40px rgba(27, 31, 10, 0.1);
    z-index: 10;
  }

  .navbar-collapse.open {
    display: flex;
  }

  .navbar-nav {
    flex-direction: column;
    width: 100%;
  }

  .nav-link {
    width: 100%;
    text-align: center;
  }

  .icons-menu {
    position: static;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 100vh;
  min-height: 100svh;
  padding: 7rem 0 3rem;
  box-sizing: border-box;
  background-image: url('../assets/images/d0b3d0bbd0b5d0b1-d187d0b1-2000x1333.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero.parallax {
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .hero.parallax {
    background-attachment: scroll;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.hero .container-fluid {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
}

.hero .content-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}

.hero-title {
  color: #ffffff;
  margin-bottom: 1rem;
}

.hero-text {
  color: #ffffff;
  margin-bottom: 0;
}

.hero .section-btn {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  width: 100%;
}

/* ===== Stats ===== */
.stats {
  padding: 1rem 0 3rem;
  background-color: #000000;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
  gap: 0;
}

.stat-card {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .stat-card {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 1rem 0.75rem;
  }
}

@media (min-width: 992px) {
  .stat-card {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}

.stat-card .card-box {
  text-align: center;
}

.stat-num {
  display: block;
  width: 100%;
  color: #9fe870;
  text-align: center;
}

.stat-title {
  color: #ffffff;
  text-align: center;
}

@media (max-width: 767px) {
  .stats * {
    text-align: center !important;
  }
}

/* ===== Features / Advantages ===== */
.advantages {
  padding: 2rem 0 0;
  background-color: #000000;
}

.section-head {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-title {
  color: #ffffff;
  margin-bottom: 0;
}

.advantages-grid {
  display: flex;
  flex-wrap: wrap;
}

.advantage-item {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 16px;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .advantage-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .advantage-item {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}

@media (max-width: 767px) {
  .advantage-item {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .advantages-grid {
    margin: 0;
  }
}

.advantage-item .item-img {
  margin-bottom: 0.75rem;
}

.advantage-item .item-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.advantage-title {
  color: #9fe870;
  text-align: center;
  margin: 0 0 0.5rem;
}

.advantage-text {
  color: #ffffff;
  text-align: center;
}

/* ===== CTA ===== */
.cta-section {
  padding: 0 0 4rem;
  background-color: #000000;
}

/* ===== Marquee / BINGO ===== */
.marquee-section {
  position: relative;
  padding: 6rem 0;
  background-image: url('../assets/images/d184d0bed0bd3-1280x853.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.marquee-section.parallax {
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .marquee-section.parallax {
    background-attachment: scroll;
  }
}

.marquee-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.marquee-section .marquee-viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
  will-change: transform;
}

.marquee-text {
  flex-shrink: 0;
  white-space: nowrap;
  color: #000000;
  font-weight: bold;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 10vw, 6rem);
  line-height: 1.2;
  letter-spacing: normal;
  word-spacing: 0.25em;
  min-height: 90px;
  display: block;
  padding-right: 3rem;
}

@media (max-width: 768px) {
  .marquee-text {
    min-height: 45px;
  }
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* ===== Videos / Immersion ===== */
.immersion {
  padding: 6rem 0;
  background-color: #000000;
}

.immersion .section-title {
  margin-bottom: 1rem;
}

.videos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -16px;
}

.video-col {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 16px;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .video-col {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}

.video-wrapper video {
  width: 100%;
}

/* ===== Gallery Carousel ===== */
.gallery-section {
  padding: 0 0 3rem;
  background: #000000;
}

.gallery-section .container-fluid {
  padding: 0;
}

.carousel {
  position: relative;
  width: 100%;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
  cursor: grab;
}

.carousel-viewport.is-dragging {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.carousel-slide {
  flex: 0 0 490px;
  min-width: 490px;
  max-width: 490px;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .carousel-slide {
    flex: 0 0 calc(100% - 1rem);
    min-width: calc(100% - 1rem);
    max-width: calc(100% - 1rem);
  }
}

.carousel-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 2rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: #edefea;
  opacity: 0.8;
  color: #464845;
  border: 2px solid #edefea;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  z-index: 10;
}

.carousel-btn:hover {
  opacity: 1;
}

.carousel-btn:disabled {
  cursor: default;
  display: none;
}

.carousel-btn--prev {
  left: 0;
  margin-left: 2.5rem;
}

.carousel-btn--next {
  right: 0;
  margin-right: 2.5rem;
}

.carousel-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

@media (max-width: 767px) {
  .header {
    padding: 0.5rem 0.25rem 0;
  }

  .hero {
    padding: 5rem 0 2rem;
  }

  .marquee-section {
    padding: 3rem 0;
  }

  .immersion {
    padding: 3rem 0;
  }

  .stat-card {
    margin-bottom: 0.5rem;
  }

  .carousel-slide {
    padding: 0 0.5rem;
  }

  .carousel-btn {
    top: auto;
    bottom: 1rem;
    transform: none;
    margin-top: 0;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Social / Contact ===== */
.contact {
  padding: 1rem 0;
  background-color: #000000;
}

.contact .section-title {
  margin-bottom: 2rem;
}

.social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.social-item {
  margin: 8px;
}

.social-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #000000;
  transition: all 0.3s ease-in-out;
}

.social-item a:hover {
  background-color: #9fe870;
}

.social-item svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* ===== Footer ===== */
.footer {
  background-color: #000000;
  color: #ffffff;
  padding: 3rem 0;
  text-align: center;
  font-family: Arial, sans-serif;
}

.footer-title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-copy {
  font-size: 1.5rem;
}

.footer-sub {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  opacity: 0.8;
}
