/* =========================
   VARIABLES
========================= */
:root {
    --bg-black: #000000;
    --bg-light: #f7f7f7;
    --bg-white: #ffffff;
    --bg-light-green: #CBD213;
    --bg-dark-green: #82B81A;
  
    --text-dark: #1e1e1e;
    --text-muted: #555;
  
    --accent: #1f6f8b;
    --accent-hover: #15566b;
  }
  
  /* =========================
     BASE
  ========================= */
  * {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: Verdana, "Helvetica Neue", Arial, sans-serif;
    background: var(--bg-light-green);
    color: var(--text-dark);
  }
  
  /* =========================
     NAVIGATION
  ========================= */
  header {
    background: var(--bg-white);
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo img {
    height: 65px;
    width: auto;
    display: block;
  }
  
  .logo img:hover {
    opacity: 0.85;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 20px;
  }
  
  nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
  }
  
  nav a:hover {
    color: var(--bg-dark-green);
  }
  
  .menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
  }
  
  /* =========================
     HERO SLIDER
  ========================= */
  .slider {
    position: relative;
    height: 380px;
    overflow: hidden;
  }
  
  .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
  }
  
  .slide.active {
    opacity: 1;
  }
  
  .slider-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
  }
  
  .slider-text {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
  }
  
  .slider-text h2 {
    font-size: 2.6rem;
  }
  
  /* =========================
     CONTENT
  ========================= */
  .container {
    max-width: 1000px;
    margin: auto;
    padding: 50px 20px;
  }
  
  .section {
    margin-bottom: 50px;
  }
  
  .section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #000;
  }
  
  .card {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 6px;
    border: 1px solid #000;
    margin-bottom: 20px;
    text-align: justify;
  }
  
  /* =========================
     SOCIAL BUTTONS
  ========================= */
  .socials {
    display: flex;
    gap: 15px;
  }
  
  .socials a {
    background: var(--accent);
    color: #fff;
    padding: 12px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
  }
  
  .socials a:hover {
    background: var(--accent-hover);
  }
  
  /* =========================
     CONTACT FORM
  ========================= */
  .contact-form {
    margin-top: 25px;
    display: grid;
    gap: 18px;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
  }
  
  .form-group label {
    font-weight: 600;
    margin-bottom: 6px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
    font-family: inherit;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
  }
  
  .contact-form button {
    align-self: flex-start;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
  }
  
  .contact-form button:hover {
    background: var(--accent-hover);
  }
  
  /* =========================
     INFO TOGGLE
  ========================= */
  .info-more {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  
  .info-box.open .info-more {
    max-height: 1500px;
  }
  
  .info-toggle {
    margin-top: 15px;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .info-toggle:hover {
    background: var(--accent-hover);
  }
  
  /* =========================
     AGE POPUP
  ========================= */
  #agePopup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  .popup-content {
    background: #fff;
    padding: 30px 40px;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    border: 1px solid var(--bg-black);
  }
  
  .popup-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  .popup-buttons button {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
  }
  
  #btnYes {
    background: #27ae60;
    color: #fff;
  }
  
  #btnNo {
    background: #c0392b;
    color: #fff;
  }
  
  /* =========================
     FOOTER
  ========================= */
  footer {
    background: #000;
    color: #ccc;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
  }
  
  /* =========================
     RESPONSIVE
  ========================= */
  @media (max-width: 768px) {
    nav ul {
      display: none;
      flex-direction: column;
      background: var(--bg-white);
      position: absolute;
      top: 65px;
      right: 20px;
      border: 1px solid #ddd;
      padding: 15px;
    }
  
    nav ul.show {
      display: flex;
    }
  
    .menu-toggle {
      display: block;
    }
  
    .slider-text h2 {
      font-size: 2rem;
    }
  }