@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Playfair+Display:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mr+De+Haviland&display=swap');
/* ===============================
   GLOBAL STYLES
   =============================== */

   :root {
    --nav-height: 64px;
    --nav-padding: 24px;
    --transition: 260ms;
  }
  
  * {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    padding: 0;
    background-color: #f6f8db;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  }
  
  /* ===============================
     NAVIGATION BAR
     =============================== */
  
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--nav-padding);
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(5px);
    z-index: 1000;
  }
  
  /* Logo */
  .nav-logo a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.2px;
    font-family: 'Georgia', serif;
  }
  
  /* Hide the menu checkbox */
  #menu-toggle {
    display: none;
  }
  
  /* Desktop navigation links */
  .nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: color var(--transition), background var(--transition);
  }
  
  .nav-links a:hover {
    color: #c0a54c;
    background: rgba(255, 255, 255, 0.06);
  }
  
  /* ===============================
     HAMBURGER ICON
     =============================== */
  
  .nav-toggle {
    display: none;
    width: 28px;
    height: 22px;
    position: relative;
    cursor: pointer;
    z-index: 1100; /* stays above dropdown */
  }
  
  /* Hamburger lines */
  .nav-toggle span,
  .nav-toggle span::before,
  .nav-toggle span::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 3px;
    background: white;
    left: 0;
    transition: all 0.3s ease;
    border-radius: 2px;
  }
  
  /* Middle line */
  .nav-toggle span {
    top: 50%;
    transform: translateY(-50%);
  }
  
  /* Top and bottom lines */
  .nav-toggle span::before {
    top: -8px;
  }
  .nav-toggle span::after {
    top: 8px;
  }
  
  /* Animate into X when checked */
  #menu-toggle:checked + .nav-toggle span {
    background: transparent;
  }
  #menu-toggle:checked + .nav-toggle span::before {
    transform: rotate(45deg);
    top: 0;
  }
  #menu-toggle:checked + .nav-toggle span::after {
    transform: rotate(-45deg);
    top: 0;
  }
  
  /* ===============================
     HERO SECTION
     =============================== */
  
  .wrapper-main {
    width: 100%;
    height: 100vh;
    margin-top: var(--nav-height);
    background-image: url("../images/title.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
  }

  .countdown {
    width: 100%;
    height: 80vh;
    background-color: #e3715a; 
    margin-top: 40px;
    margin: auto;
    text-align: center;
    padding-top: 10%;
    color: white;
    /*border: solid;*/
  }

  .prep {
    width: 80%;
    height: 80vh;
    border-radius: 15px;
    background-color: #aac3e3;
    margin-top: 40px;
    margin: auto;
    text-align: center;
    padding-top: 10%;
    color: black;
  }

  .countdown-bottom {
    width: 80%;
    height: 80vh;
    border-radius: 15px;
    background-color: #a1ac4e;
    margin-top: 40px;
    margin: auto;
    text-align: center;
    padding-top: 10%;
    color: white;
    height: auto;
  }

  .countdown-min {
    width: 80%;
    border-radius: 15px;
    background-color: rgba(55, 211, 164, 0.582);
    margin-top: 40px;
    margin: auto;
    text-align: center;
    padding-top: 10%;
    color: white;
    padding-bottom: 10%;
  }

  .spacer {
    padding-top: 10vh;
    padding-left: auto;
    padding-right: auto;
    /*border: dashed;*/
    /*border: solid;
    /*padding-bottom: 10vh;*/
  }

  .spacer-bottom {
    padding-top: 10vh;
    padding-bottom: 10vh;
    height: auto;
  }

  .grid {/*holds the countdown info*/
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
    margin-top: 7vh;
    padding: 0%;
    /*border: solid;*/
  }

  .col1 {
    width: 15vw;
  }
  
  /* Center content over the image */
  .content {
    position: relative;
    z-index: 1;
  }
  
  /* Heading */
  h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: serif;
  }
  
  /* Buttons */
  .button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
  }
  
  .button-group button {
    padding: 10px 18px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    background-color: #e3715a;
    color: white;
    transition: background-color 0.3s ease;
  }
  
  .button-group button:hover {
    background-color: #aac3e3;
    color: black;
  }

  .theme-button-group {
    display: flex;
    justify-content: center;
  }

  .theme-button-group button {
    padding: 10px 18px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    transition: background-color 0.3s ease;
  }

  .theme-button-group button:hover {
    background-color: #e3715a;
    color: black;
  }


  .padding {
    padding: 30px;
  }

  /*===============================
  TIMER SECTION
  =============================== */

  .timer {
    font-family: 'Playfair Display', serif;
    font-size: 20pt;
    padding-bottom: 0%;
    margin-bottom: 0%;
  }
  .timer-title {
    font-family: 'Playfair Display', serif;
  }
  .timer-header {
    font-family: "Mr De Haviland", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 4rem;
  }

  /*===============================
    FAQ STUFF
    =============================== */
  
    .faq-cont {
        /*background-color: brown;*/
        width: 80%;
        margin: auto;
        height: auto;
        padding-bottom: 10vh;
    }

    details {
        margin-bottom: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
        color: black;
    }

    summary {
        font-weight: bold;
        padding: 15px;
        cursor: pointer;
        background-color: #f9f9f9;
        border-bottom: 1px solid #eee;
        /*background: rgba(0, 0, 0, 0.45);
        backdrop-filter: blur(5px);*/
    }

    details[open] summary {
        background-color: #e9e9e9;
        /*background: rgba(0, 0, 0, 0.45);
        backdrop-filter: blur(5px);*/
    }

    .answer {
        padding: 15px;
        background-color: #fff;
        /*background: rgba(0, 0, 0, 0.45);
        backdrop-filter: blur(5px);*/
    }

  /* ===============================
     RESPONSIVE STYLES (MOBILE)
     =============================== */
  
  @media (max-width: 768px) {
  
    /* Show hamburger */
    .nav-toggle {
      display: block;
    }
  
    /* Hide links by default */
    .nav-links {
      position: fixed;
      top: var(--nav-height);
      left: 0;
      right: 0;
      display: flex;
      flex-direction: column;
      gap: 8px;
      align-items: center;
      background: rgba(0, 0, 0, 0.95);
      max-height: 0;
      overflow: hidden;
      visibility: hidden;
      transition: max-height 0.3s ease, visibility 0.3s ease;
      z-index: 100;
    }
  
    .nav-links a {
      width: 90%;
      padding: 12px 10px;
      font-size: 1.05rem;
      border-radius: 6px;
    }
  
    /* Show menu when checked */
    #menu-toggle:checked + .nav-toggle + .nav-links {
      max-height: 200px;
      visibility: visible;
    }
  
    /* Adjust hero section for small screens */
    .wrapper-main {
      height: 70vh;
      margin-top: var(--nav-height);
    }
  
    h1 {
      font-size: 1.8rem;
    }
  
    .button-group {
      flex-direction: column;
      gap: 12px;
    }
  }
  
  /* ===============================
     RESPONSIVE STYLES (TABLET/DESKTOP)
     =============================== */
  
  @media (min-width: 769px) {
    .nav-links {
      display: flex !important;
      position: static;
      flex-direction: row;
      background: none;
      max-height: none;
      visibility: visible;
    }
  
    .nav-toggle {
      display: none;
    }
  
    .wrapper-main {
      height: 100vh;
    }
  }
  