@font-face {
  font-family: 'Biennale';
  src: url('../fonts/biennale-medium.otf') format('opentype');
  font-style: normal;
}

:root {
  --primary: #2C4A3E;
  --secondary: #F4F7F5;
  --text: #333333;
  --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;
}

.breadcrumb {
  background: var(--bg-strip);
  border-bottom: 1px solid var(--border);
  padding: 10px 40px;
  font-size: 13px;
  color: #555;
}

.breadcrumb a {
  color: #172b35;
  text-decoration: none;
}

.breadcrumb .current {
  font-weight: 700;
  color: var(--dark);
}

.breadcrumb span.sep {
  margin: 0 6px;
  color: #999;
}

/* ===== 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;
}

.gate-content {
  background: #1e332b;
  padding: 40px;
  border-radius: 8px;
  max-width: 450px;
  width: 90%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.gate-content h2 {
  margin-bottom: 0px;
  font-size: 0px;
}

.gate-content p {
  margin-bottom: 30px;
  font-size: 14px;
  opacity: 0.9;
}

.gate-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-gate {
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  transition: 0.2s;
}

.btn-yes {
  background-color: #5C8374;
  color: white;
}

.btn-yes:hover {
  background-color: #9EC8B9;
}

.btn-no {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.btn-no:hover {
  background: rgba(255,255,255,0.1);
}

/* ===== Age Gate Inner Header (cv-header1 block) ===== */
.cv-header1 {
  padding: 20px 30px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 10;
}

.cv-header__inner1 {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cv-header__logo1 {
  display: flex;
  align-items: center;
}

.cv-header__logo-img1 {
  height: 59px;
  width: auto;
  display: block;
}

/* ===== Navigation Header (cv-header block) ===== */
.cv-header {
  background: var(--white);
  padding: 16px 30px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  position: relative;
  z-index: 10;
}

.cv-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cv-header__logo {
  display: flex;
  align-items: center;
}

.cv-header__logo-img {
  height: 38px;
  width: auto;
  display: block;
}

/* ===== Hero / Banner Block ===== */
html, body {
  overflow-x: hidden;
  overflow-y: visible;
  height: auto;
}

.cv-hero {
  position: relative;
  width: 100%;
  height: 61vh;
  min-height: 61vh;
  background: url("../../assets/images/medium_uWFhye6YHS.png") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.cv-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.cv-hero > * {
  position: relative;
  z-index: 2;
}

.cv-hero__inner {
  text-align: center;
  padding: 40px 20px;
}

.cv-btn {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: 0.2s;
}

.cv-btn--hero {
  background-color: var(--accent);
  color: var(--white);
  padding: 16px 42px;
  font-size: 17px;
  border: 2px solid #fff;
  border-radius: 6px;
  transition: all 0.3s ease;
}

/* ===== Main Content ===== */
.container {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  padding-top: 20px;
  padding-bottom: 40px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.hero {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px 0;
  border-bottom: 1px solid #EAEAEA;
}

.hero h2 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 28px;
}

.hero p {
  color: #666;
  font-size: 16px;
}

.educational-section {
  margin-bottom: 35px;
}

.educational-section h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 20px;
  border-left: 4px solid var(--primary);
  padding-left: 10px;
}

.educational-section p {
  margin-bottom: 15px;
  color: #444;
  font-size: 15px;
}

/* ===== Footer / Compliance Area ===== */
footer {
  background: #E1E8E4;
  padding: 40px 20px;
  text-align: center;
  margin-top: 60px;
  font-size: 12px;
  color: #555;
  border-top: 1px solid #D1DBD5;
}

.compliance-box {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.compliance-box p {
  margin-bottom: 10px;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 600px) {
  .cv-header__logo-img {
    height: 30px;
  }
  .cv-btn--hero {
    padding: 14px 32px;
    font-size: 15px;
  }
}