/* ==========================================
   AZU SPIRITS - AGE VERIFICATION GATE
   ========================================== */

#azu-age-gate {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;
  box-sizing: border-box;

  background:
    linear-gradient(
      rgba(20, 20, 20, 0.94),
      rgba(20, 20, 20, 0.97)
    );

  font-family: 'Montserrat', Arial, sans-serif;
}

#azu-age-gate * {
  box-sizing: border-box;
}

.age-gate-card {
  width: 100%;
  max-width: 560px;

  background: #ffffff;
  color: #333;

  text-align: center;

  padding: 45px 40px;
  border-radius: 8px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.age-gate-logo {
  display: block;
  width: 150px;
  max-width: 60%;
  height: auto;

  margin: 0 auto 30px;
}

.age-gate-card h1 {
  font-family: 'Playfair Display', Georgia, serif;

  font-size: 34px;
  font-weight: 400;
  line-height: 1.2;

  margin: 0 0 15px;

  color: #2c2c2c;
}

.age-gate-intro {
  font-size: 14px;
  line-height: 1.7;
  color: #666;

  max-width: 430px;
  margin: 0 auto 25px;
}

.age-gate-question {
  font-family: 'Playfair Display', Georgia, serif;

  font-size: 22px;
  line-height: 1.4;
  color: #2c2c2c;

  margin: 0 0 30px;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;

  max-width: 360px;
  margin: 0 auto;
}

.age-gate-button {
  width: 100%;

  border: none;
  border-radius: 4px;

  padding: 15px 20px;

  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;

  text-transform: uppercase;
  letter-spacing: 0.8px;

  cursor: pointer;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.2s ease;
}

.age-gate-button:hover {
  transform: translateY(-2px);
}

.age-gate-enter {
  background: #A4343A;
  color: #ffffff;
}

.age-gate-enter:hover {
  background: #8a2c31;
}

.age-gate-exit {
  background: #eeeeee;
  color: #444444;
}

.age-gate-exit:hover {
  background: #dddddd;
}

.age-gate-responsible {
  font-size: 11px;
  line-height: 1.5;
  color: #888;

  margin: 25px 0 0;
}

body.age-gate-active {
  overflow: hidden;
}


/* Mobile */
@media (max-width: 600px) {

  #azu-age-gate {
    padding: 15px;
  }

  .age-gate-card {
    padding: 35px 22px;
  }

  .age-gate-logo {
    width: 125px;
    margin-bottom: 25px;
  }

  .age-gate-card h1 {
    font-size: 28px;
  }

  .age-gate-question {
    font-size: 20px;
  }

  .age-gate-intro {
    font-size: 13px;
  }

}
