/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    overflow-x: hidden;
  }
  
  body {
    font-family: 'Times New Roman', Times, serif;
    background-color: #5c5e38;
  }
    
  
  /* =========================
     Button
  ========================= */
  .ticket-btn {
    display: inline-block;
    background: #AC5A9E;
    color: #ffffff;
  
    padding: 14px 20px;
  
    font-family: "Helvetica Neue", Helvetica, Arial, Verdana, sans-serif;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
  
    border-radius: 12px;
    border: none;
  
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.2),
      0 2px 4px rgba(0,0,0,0.15);
  
    transition:
      background-color 0.2s ease,
      box-shadow 0.2s ease;
  
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
  }
  
  /* =========================
     TYPOGRAPHY
  ========================= */
  
  h1, h2 {
    margin: 3px;
    font-family: cursive;
    font-style: italic;
    text-align: center;
  }

  .date {
    font-style: italic;
  }
  
  h3, h4, h5, p {
    margin: 4px;
    text-align: center;
  }
  
  a {
    color: rgb(202, 122, 189);
    font-weight: bold;
  }
  
  .ticketLink {
    font-size: larger;
  }
  
  pre {
    font-size: 11px;
  }
  
  ul {
    list-style-type: circle;
  }

  .wave {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", sans-serif;
  }
  
  /* =========================
     LAYOUT
  ========================= */
  
  #root {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1em;
  }
  
  .content {
    display: flex;
    flex-direction: column;
    align-items: center;
  
    background-color: rgb(0 0 0 / 53%);
    border-radius: 10px;
    color: white;
  
    margin-bottom: 1em;
    padding: 1em;
    width: 90%;
    box-sizing: border-box;
  }
  
  .buffer {
    display: flex;
    flex-direction: column;
    align-items: center;
  
    margin-bottom: 1em;
    padding: 1em;
    width: 90%;
    color: white;
  
    font-family: cursive;
    font-size: 27px;
  
    position: relative;
    overflow: hidden;
    z-index: -1;
  
    background-image: url("assets/blur_edges.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  
  
  /* =========================
     NAVIGATION
  ========================= */
  
  nav {
    padding: 10px 15px;
    text-align: center;
    position: fixed;
    bottom: 0;
  
    line-height: 1.5em;
    font-weight: bold;
  
    border-radius: 8px;
  
    color: white;
    background-color: rgba(36, 49, 22, 0.731);
  
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  
    z-index: 10;
  }
  
  nav a {
    color: white;
    font-weight: bold;
    text-decoration: none;
  }
  
  /* Desktop layout */
  @media (min-width: 601px) {
    #stickyNav {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: nowrap;
      gap: 8px;
    }
  
    /* remove manual line breaks on desktop */
    #stickyNav br {
      display: none;
    }
  }
  
  /* =========================
     IMAGES
  ========================= */

  .heroImage img {
    width: 90%;
    max-width: 480px; /* Adjust for desktop size here */
    border-radius: 10px;
    display: block;
    margin: 0 auto;
  }
  
  .image {
    text-align: center;
    margin-top: 5px;
  }
  
  .image img {
    max-width: 90%;
    border-radius: 10%;
  }
  
  .imageDouble {
    text-align: center;
    margin-top: 5px;
  
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  
  .imageDouble img {
    max-width: 40%;
    border-radius: 2%;
  }
  
  .roundedImage {
    text-align: center;
  }
  
  .roundedImage img {
    max-width: 80%;
    border-radius: 50%;
  }
  
  
  /* =========================
     DETAILS / FAQ
  ========================= */
  
  .dropdown {
    width: 85%;
    padding: 10px;
  }
  
  summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
  }
  
  summary::-webkit-details-marker {
    display: none;
  }
  
  summary::before {
    content: "▷";
    margin-right: 8px;
    font-family: "Segoe UI Symbol", "Noto Sans Symbols", Arial, sans-serif;
    transition: transform 0.2s ease;
  }
  
  details[open] summary::before {
    transform: rotate(90deg);
  }
  
  
  /* =========================
     LEAF EFFECTS
  ========================= */
  #leaf-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
  }
  .leaf {
    position: absolute;
    width: 50px;
    height: auto;
    will-change: transform;
    opacity: .8;
  }
  
  
  /* =========================
     RESPONSIVE
  ========================= */
  
  @media (max-width: 600px) {
    pre {
      font-size: 7px;
    }
  
    p {
      max-width: 85%;
    }
  
    body {
      background-image: url("assets/background_compressed.webp");
      background-repeat: repeat-y;
      background-position: top center;
    }
  }
  
  @media (min-width: 600px) {
    p {
      max-width: 75%;
    }
  }
  
  @media (min-width: 601px) {
    body {
      background-image: url("assets/background_leaves.webp");
      background-attachment: fixed;
      background-repeat: no-repeat;
      background-size: cover;
    }
  
    .content {
      max-width: 650px;
      background-color: rgb(0 0 0 / 67%);
    }
  
    nav {
      background-color: rgb(36 49 22 / 76%);
    }
  }
