/* Verdant Mix Custom CSS */

:root {
    --off-white: #f4f2eb;
    --accent-green: #4CAF50;
    --soft-green: #88b98e;
  }
  
  body, html {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Helvetica, sans-serif;
    background-color: var(--off-white);
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
  }
  
  /* HEADER */
  #header {
    background-color: var(--off-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  #header .logo img {
    height: 40px;
    width: auto;
  }
  
  #nav {
    display: flex;
    gap: 1rem;
  }
  
  #nav a {
    text-decoration: none;
    color: black;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
  }
  
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
  }
  
  .hamburger div {
    width: 25px;
    height: 2px;
    background-color: black;
  }
  
  @media (max-width: 768px) {
    #nav {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      right: 2rem;
      background: var(--off-white);
      padding: 1rem;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
  
    #nav.open {
      display: flex;
    }
  
    .hamburger {
      display: flex;
    }
  }
  
  /* HERO */
  .mix-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    overflow: hidden;
  }
  
  .mix-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: url('/wp-content/themes/blankslate/images/dance.gif') center center / cover no-repeat;
    opacity: 0.45;
    z-index: 0;
  }
  
  .mix-hero h1 {
    z-index: 1;
    position: relative;
    font-size: 7rem;
    font-weight: 800;
    color: var(--soft-green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  
  /* FLAVOR SECTIONS */
  .mix-section {
    min-height: 100vh;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    box-sizing: border-box;
  }
  
  .mix-inner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
  }
  
  .mix-top-bottom {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .mix-left {
    flex: 1 1 45%;
  }
  
  .mix-right {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  
  .mix-left h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin: 0;
  }
  
  .mix-flavor-desc {
    font-size: 1.2rem;
    margin: 0.5rem 0 1rem;
    font-weight: 500;
  }
  
  .mix-description {
    font-size: 1rem;
    line-height: 1.4;
    max-width: 90%;
  }
  
  .drink-block {
    text-align: right;
    margin-top: 1rem;
  }
  
  .drink-block h3 {
    margin: 0.5rem 0;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
  }
  
  .drink-description {
    font-size: 0.85rem;
    font-style: italic;
    margin-bottom: 0.25rem;
    opacity: 0.7;
  }
  
  .drink-block ul {
    list-style-type: disc;
    padding-left: 1rem;
    margin: 0;
    font-size: 0.9rem;
  }
  
  .mix-ingredients {
    display: none;
    list-style: none;
    font-size: 0.8rem;
    padding-left: 0;
    margin-top: 0.5rem;
    opacity: 0.7;
    text-align: right;
  }
  
  .mix-ingredients.show {
    display: block;
  }
  
  .ingredient-toggle {
    margin-top: 0.75rem;
    background-color: #e6e6e6;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0.3rem 0.75rem;
    font-size: 0.75rem;
    cursor: pointer;
    color: #333;
    text-align: right;
    transition: background-color 0.2s ease;
  }
  
  .ingredient-toggle:hover {
    background-color: #d4d4d4;
  }
  
  /* Section background classes (optional) */
  .mix-section.nice-light {
    background-color: #F1EFEA;
  }
  
  .mix-section.third-exit {
    background-color: #E9F6F2;
  }
  
  .mix-section.slow-clap {
    background-color: #FFF8EC;
  }
  
  .mix-section.off-season {
    background-color: #E1F5E7;
  }
  
  .mix-section.lost-ticket {
    background-color: #F3F0FA;
  }
  