@font-face {
  font-family: 'Biennale';
  src: url('../fonts/biennale-medium.otf') format('opentype');
  font-style: normal;
}

:root {
  --primary: #2C4A3E;
  --secondary: #e4e2d8;
  --text: #FFFFFF;
  --white: #FFFFFF;
  --accent: #5C8374;
  --accent-light: #9EC8B9;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Biennale';
}

body {
  background-color: var(--secondary);
  color: var(--text);
  line-height: 1.6;
}

/* ===== Age Gate Modal ===== */
#age-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 74, 62, 0.98);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
}

.modal-content {
  background: #1e332b;
  padding: 40px;
  border-radius: 8px;
  max-width: 450px;
  width: 90%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.modal-content h2 {
  margin-bottom: 0px;
  font-size: 0px;
}

.modal-content p {
  margin-bottom: 30px;
  font-size: 14px;
  opacity: 0.9;
}

.modal-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-modal {
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  transition: 0.2s;
}

.btn-confirm {
  background-color: #5C8374;
  color: white;
}

.btn-confirm:hover {
  background-color: #9EC8B9;
}

.btn-cancel {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.btn-cancel:hover {
  background: rgba(255,255,255,0.1);
}

/* ===== Navigation Header ===== */
.site-header {
  background: var(--white);
  padding: 16px 30px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  position: relative;
  z-index: 10;
}

.modal-header {
  padding: 20px 30px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 10;
}

.site-header-logo-img {
  height: 59px;
  width: auto;
  display: block;
}

.site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-header-logo {
  display: flex;
  align-items: center;
}

.modal-header-logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.layout-container {
  width: 80%;
  max-width: 1200px;
  margin: auto;
}

/* ===== Hero ===== */
.hero-section {
  padding: 30px 0 50px;
}

.hero-box {
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.45) 45%,
      rgba(0, 0, 0, 0.15) 100%
    ),
    url("../../assets/images/verna.tiff") center center / cover no-repeat;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  height: 70vh;
  padding: 0 60px;
  position: relative;
  flex-wrap: wrap;
}

.hero-text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title-wrap {
  margin-bottom: 35px;
}

.hero-text-block h1 {
  color: #fff;
  font-size: 75px;
  font-weight: 800;
  line-height: 0.95;
}

.hero-action-wrap {
  margin-top: 0;
}

.btn-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 56px;
  border-radius: 30px;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-size: 19px;
  font-weight: 600;
}

.btn-secondary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 46px;
  border-radius: 30px;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.hero-graphic img {
  width: 430px;
  display: block;
}

/* ===== Location ===== */
.places-section {
  padding-bottom: 60px;
}

.places-section h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 45px;
  font-weight: 500;
  color: #061f22;
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
}

.place-card {
  background: #061f22;
  border-radius: 15px;
  padding: 22px;
  text-align: center;
}

.place-card h3 {
  font-size: 28px;
  margin-bottom: 18px;
  font-weight: 700;
}

/* ===== Footer ===== */
.site-footer {
  background: #000;
  color: #fff;
  padding: 45px 0 30px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}

.footer-brand-logo img {
  height: 60px;
}

.footer-btn {
  width: 180px;
  height: 45px;
  border: 2px solid #fff;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.footer-credits {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-credits p {
  font-size: 14px;
}

.legal-policy {
  color: #fff;
}

/* ===== Responsive ===== */
@media(max-width:992px){
  .hero-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 45px 25px 35px;
    height: 60vh;
  }

  .hero-text-block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
  }

  .hero-title-wrap {
    margin-bottom: 0;
  }

  .hero-text-block h1 {
    font-size: 58px;
  }

  .hero-graphic img {
    width: 300px;
    margin-top: 30px;
  }

  .places-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .places-section h2 {
    font-size: 34px;
  }
}

@media(max-width:576px){
  .hero-box {
    justify-content: center;
    align-items: center;
    padding: 35px 20px 30px;
    height: 55vh;
  }

  .hero-text-block {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    width: 100%;
  }

  .hero-title-wrap {
    margin-bottom: 0;
  }

  .hero-text-block h1 {
    font-size: 44px;
  }

  .places-grid {
    grid-template-columns: 1fr;
  }

  .footer-main,
  .footer-credits {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .hero-graphic img {
    width: 230px;
  }

  .place-card h3 {
    font-size: 24px;
  }
}