* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html, body {
    height: 100%;
    margin: 0;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    scroll-behavior: smooth;
  }

  header, .hex-grid, .bottom {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    height: 100vh;
  }

  body {
    background-color: #1a1a1a;
    color: #EEEEEE;
    font-family: "Titillium Web", sans-serif;
}

/* HEADER */
  header {
    width: 100%;
    height: 100vh;
    background: url('image1.jpeg') 35% 63% / 110% no-repeat;
    color: #EEEEEE;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    transition: filter 0.5s ease;
  }

  header.blur {
    filter: blur(6px);
  }


  header::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Overlay for contrast */
  }

  header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
  }

  header p {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  header.fade {
    opacity: 0;
    pointer-events: none;
  }

/* ARROW */

.scroll-arrow {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #EEEEEE;
    opacity: 0.8;
    animation: bounce 2s infinite;
    z-index: 3;
  }

  @keyframes bounce {
    0%, 100% {
      transform: translate(-50%, 0);
    }
    50% {
      transform: translate(-50%, 10px);
    }
  }

  .up-arrow, .bottom .up-arrow {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #EEEEEE;
    opacity: 0.8;
    animation: bounce 2s infinite;
    animation-delay: 1s;
    z-index: 3;
  }

  @keyframes bounce {
    0%, 100% {
      transform: translate(-50%, 0);
    }
    50% {
      transform: translate(-50%, 10px);
    }
  }

  .scroll-arrow, .up-arrow {
    text-decoration: none;  
  }  

  .scroll-arrow:hover, .up-arrow:hover {
    color: #D84040;
  }

  section {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    padding: 2rem 1rem;
  }

  /* Hex Grid Container */
  .hex-grid {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden; /* Important for absolute positioning of child elements */
    padding-bottom: 5rem;
    display: flex; /* Kept for centering the 'about' hex */
    justify-content: center;
    align-items: center;
  }

  .hex {
    position: absolute; /* Reverted to absolute for precise placement */
    background-color: #373737d5;
    clip-path: polygon(
      25% 0%, 75% 0%, 100% 50%,
      75% 100%, 25% 100%, 0% 50%
    );
    color: #EEEEEE;
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    aspect-ratio: 1.18 / 1; /* Keeping original ratio for consistent hex shape */
    width: clamp(280px, 30vw, 400px); /* Base width for hexes */
    min-height: auto;
    overflow: hidden; /* Keep hidden to respect clip-path */
  }

  .hex h1, .hex h2, .hex p {
    font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.4rem);
    line-height: 1.4;
    padding: 0 1rem; /* Base padding */
  }

  .hex-grid {
    margin: 0 auto;
  }

  .hex h1 {
    margin-top: 2rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.7rem;
  }


  /* Specific paragraph styling for better fit */
  .hex p {
    margin: 0 1.5rem; 
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Titillium Web', sans-serif;
    font-size: 1.5rem; 
    margin-bottom: 1rem; 
    line-height: 1.8rem; 
  }

  .hex a {
    margin-top: 18rem;
    margin-right: 11rem;
    text-decoration: none;
    cursor: pointer;
    color: #EEEEEE;
  }


  .about {
    top: 12%; 
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 650px;
  }

  .hex-inner {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .inside-info1, .inside-info2 {
    margin-top: 3rem;
  }
  
  /* Anchor inside the box */
  .soundcloud-link {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    z-index: 5;
  }
  
  .soundcloud-icon {
    width: 40px;
    height: auto;
    animation: pulse 2s infinite;
    transition: transform 0.3s ease;
    cursor: pointer;
  }
  
  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
  }  

  



/* NEW: Individual Mix Hexagons */
.mixes-hex-2 {
    background-color: #373737c8; 
    width: 450px;
    padding: 1rem; 
    cursor: pointer;
    text-decoration: none;
    top: 50%; 
    left: 2%;
    transform: translateX(0%);
    z-index: 3; 
    margin-bottom: 6rem;
}

.mixes-hex-1 {
    background-color: #373737c8; 
    width: 450px; 
    padding: 1rem; 
    cursor: pointer; 
    text-decoration: none; 
    top: 50%; 
    right: 2%;
    transform: translateX(0%);
    z-index: 3; 
}

.mix-title1{
    margin-bottom: 1rem; 
}

.mix-title2 {
    margin-bottom: 2rem;
}

.mixes-hex-1 h2, .mixes-hex-2 h2 {
    font-family: "Orbitron", sans-serif;
    color: #D84040;
    text-decoration: none;
    margin-bottom: 0; 
    font-size: 1.7rem;
}

.mix-description1,
.mix-description2 {
    margin-bottom: 1.5rem;
}

.mixes-hex-1 p, .mixes-hex-2 p {
    font-size: 1.1rem;
    padding: 0 2rem; 
    max-width: 95%;
    line-height: 1.5rem;
}

.mix-quote p {
    font-size: clamp(0.65rem, 0.8vw, 0.9rem);
    line-height: 1.1;
    margin: 0.1rem;
    padding: 0;
    margin: 0.1rem 2rem; 
}


.quote-attribution {
    font-size: clamp(0.7rem, 0.9vw, 1rem);
    margin-top: 0.5rem; 
    margin-bottom: 0; 
    line-height: 1.2rem;
    font-style: none;
    color: #9e9e9e;
}

.mix-quote2 {
    font-size: 1rem; 
    line-height: 1.1;
    padding: 0 1rem; 
    font-style: italic; 
    color: #9e9e9e;
}

.mix-quote2 {
    text-align: center; 
    margin-top: 1rem; 
}


.mixes-hex-1:hover, .mixes-hex-2:hover {
    transform: scale(1.02);
    background-color: #4f4f4fae; 
}


/* Image Adjustments */
.image-top-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 55vw;
    height: 65vh;
    background: url('image4.jpeg') 40% 90% / 130% no-repeat;
    z-index: 0;
    filter: grayscale(100%);
    mask-image: 
        linear-gradient(to top, transparent 1%, black 30%),
        linear-gradient(to bottom, transparent 1%, black 30%),
        linear-gradient(to left, transparent 1%, black 30%),
        linear-gradient(to right, transparent 1%, black 30%);
    mask-composite: intersect;
    -webkit-mask-composite: destination-in;
    mask-repeat: no-repeat;
    }
    
    .image-top-left { /* Renamed class */
    position: absolute;
    top: 0; /* Moved to top */
    left: 0;
    width: 55vw;
    height: 65vh;
    background: url('image2.jpeg') 40% 70%/140% no-repeat; /* Retaining original image */
    z-index: 0;
    filter: grayscale(100%);
    mask-image: 
        linear-gradient(to top, transparent 1%, black 30%),
        linear-gradient(to bottom, transparent 1%, black 30%),
        linear-gradient(to left, transparent 1%, black 30%),
        linear-gradient(to right, transparent 1%, black 30%);
    mask-composite: intersect;
    -webkit-mask-composite: destination-in;
    mask-repeat: no-repeat;
    }

  .bottom {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6rem 0;
  }

  .last-info {
    display: flex;
    align-items: stretch;
    gap: 4rem;
    flex-grow: 1;
    margin: 4rem 0rem 4rem 0rem;
  }

  .content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    max-width: 1200px;
  }

  .availability, .booking {
    flex: 0 1 40%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 2rem;
    box-sizing: border-box;
    background-color: #191717;
    color: #EEEEEE;
    border-radius: 1rem;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
  }

  .booking {
    flex: 0 0 60%;
    border-radius: 1rem;
    padding: 3rem 2rem;
    color: #EEEEEE;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 500px;
    box-sizing: border-box;
  }


  .availability h2{
    font-family: 'Orbitron', sans-serif;
    font-size: 1.7rem;
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
  }

  .availability p {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    gap: 1rem;
    text-align: left;
    font-family: 'Titillium Web', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6rem;
    margin: 0.5rem 1rem;
  }

  .availability p strong {
    color: #D84040;
    min-width: 8rem;
    text-align: left;
  }

  .availability p span {
    color: #EEEEEE;
  }


  .booking h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.7rem;
    margin-bottom: 2rem;
  }

  .booking form {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .booking form input,
  .booking form textarea {
    padding: 0.9rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-family: 'Titillium Web', sans-serif;
  }

  .booking form textarea {
    min-height: 150px;
  }

  .booking form button {
    background-color: #D84040;
    color: #EEEEEE;
    padding: 0.9rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: "Orbitron", sans-serif;
  }

  .booking form button:hover {
    background-color: #8E1616;
  }

  .booking .up-arrow {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: #EEEEEE;
    opacity: 0.8;
    animation: bounce 2s infinite;
    animation-delay: 1s;
    z-index: 3;
  }

  footer {
    text-align: center;
    color: #EEEEEE;
    font-size: 0.9rem;
    padding: 1rem;
  }

  /* MEDIA QUERIES FOR RESPONSIVENESS */
  @media (max-width: 760px) {
    /* Remove scrolling lock */
    html, body {
      height: auto;
      overflow-x: hidden;
      scroll-snap-type: none;
    }

    header, .hex-grid, .bottom {
      height: auto;
      scroll-snap-align: none;
    }

    header {
      height: 60vh;
      background-size: cover;
      background-position: center;
      text-align: center;
      background: url('image1.jpeg') 35% 93% / 140% no-repeat;
    }

    /* Header text smaller */
    header h1 {
        font-size: 2.5rem;
    }

    header p {
        font-size: 1.2rem;
    }

    /* About hex */
    .about {
        width: 90%;
        height: auto;
        top: auto; /* Reset for mobile */
        left: auto; /* Reset for mobile */
        transform: none; /* Reset for mobile */
        margin: 0 auto;
        text-align: center;
        padding: 1.5rem;
    }

    .about h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .about p {
        font-size: 1rem;
        margin: 0.5rem 0;
        line-height: 1.6rem;
    }


    .hex-grid {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2rem;
      padding: 2rem 1rem;
    }

    .hex {
      position: static; /* Important for mobile layout with flexbox stacking */
      width: 90%;
      height: auto;
      clip-path: none; /* Removed clip-path for mobile for better content flow */
      background: #373737;
      border-radius: 1rem; /* Added border-radius for a soft-cornered rectangle */
      padding: 1.5rem;
      box-shadow: 0 0 15px rgba(255,255,255,0.1);
      overflow: visible;
      min-height: unset; /* Allow height to shrink on mobile */
      aspect-ratio: unset; /* Allow aspect ratio to be dynamic */
    }

    .hex h1, .hex h2 {
      text-align: center;
    }

    .hex p {
      margin: .5rem 0;
      line-height: 1.6rem;
      font-size: 1.1rem;
    }
      
    .hex-inner {
        position: relative; /* This is already set in your general CSS, but vital for absolute children */
        width: 100%;        /* Ensure it takes full width of its parent */
        height: 100%;       /* Ensure it takes full height of its parent */
        /* Adding min-height here can help if content is very short */
        min-height: 120px; /* Adjust this value if hex-inner collapses too much */
    }
        
    .soundcloud-link {
      /* Override the general (desktop) positioning for mobile */
        position: relative; 
        bottom: 100px;           /* Adjust this value. 5px (or even 0px) should pull it closer to the top. */
        left: 100px; 
        z-index: 10;        /* Keep a high z-index to ensure it's always on top */
    }
        
    .soundcloud-icon {
        width: 35px; /* Keep the smaller size for mobile */
        height: auto;
        margin-left: 5rem;
      /* Animation and transition are fine as they are */
    }
      

    .mix-link-text {
        display: none;
    }

    .mixes-hex-1, .mixes-hex-2 {
        position: static; /* Stack naturally */
        width: 90%; /* Take full width on mobile */
        max-width: unset;
        transform: none;
        padding: 1.5rem; /* Revert to standard hex padding */
        clip-path: none; /* Removed clip-path for mobile */
        border-radius: 1rem; /* Added border-radius for a soft-cornered rectangle */
        margin-bottom: 0;
    }

    .mixes-hex-1 h2, .mixes-hex-2 h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .mixes-hex-1 p, .mixes-hex-2 p {
        font-size: 0.95rem;
        line-height: 1.4rem;
        margin: 0.3rem auto;
    }

    .mixes-hex-1 .mix-quote p {
        font-size: .9rem; 
        line-height: 1.3rem;
        margin: 0.2rem 0.5rem;
        padding: 0;
    }

    .mixes-hex-1 .quote-attribution  {
        font-size: 0.7rem;
        margin-top: 0.3rem;
    }

    .mix-description p {
        padding: 0;
        font-size: 1.1rem;
    }

    /* Mobile image treatment */
    .image-top-right {
        position: relative;
        width: 100%;
        height: 30vh;
        background-position: center;
        mask-image: none;
        -webkit-mask-image: none;
        margin: 0 auto;
        display: block;
        margin-bottom: 0;
    }

    .hex-grid {
        padding: 2rem 0 0 0;
    }

    .image-top-left { /* Still hide the now-top-left image on mobile */
        display: none;
    }

    .bottom {
      height: auto;
      padding: 1rem 0;
    }

    .last-info {
      flex-direction: column;
      align-items: center;
      gap: 2rem;
      padding: 0rem .1rem;
      margin-top: 1rem;
      margin-bottom: 1rem;
    }

    .availability, .booking {
      width: 90%;
      min-height: auto;
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }

    .booking {
        padding: 1.5rem;
    }

    .availability h2 {
        margin-bottom: .1rem;
    }

    .availability p {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin: 1rem 0;
      }

    .availability p strong {
        min-width: unset;
        text-align: left;
    }

    .availability p span {
        display: block;
        margin-left: 0;
    }

    .availability {
        padding: 1rem;
        text-align: left;
    }


    footer {
      margin-top: 2rem;
      padding: 1rem;
      font-size: 0.8rem;
    }

    .up-arrow, .scroll-arrow {
      display: none;
    }
  }