    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Roboto', sans-serif;
    }

    body {
      overflow-x: hidden;
      background: #000;
    }

    .navbar {
      position: fixed;
      top: 0;
      right: 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      width: 100%;
      background: transparent;
      z-index: 1000;
    }

    .brand {
      font-size: 2.2rem;
      font-weight: bold;
      color: white;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .brand:hover {
      color: #ff4ff0;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      align-items: center;
    }

    .nav-links a {
      color: white;
      text-decoration: none;
      font-size: 1.4rem;
      transition: color 0.3s ease;
    }

    .navbar a,
    .navbar .brand {
      text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    }

    .nav-links a:hover {
      color: #ff4ff0;
    }

    .nav-links a.active {
      color: #1100ff;
    }


    .hamburger {
      display: none;
      flex-direction: column;
      gap: 4px;
      cursor: pointer;
    }

    .hamburger {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 22px;
      cursor: pointer;
      z-index: 1001;
      position: relative;
    }

    .hamburger div {
      height: 3px;
      width: 100%;
      background-color: white;
      border-radius: 2px;
      transition: all 0.3s ease;
      position: relative;
    }

    .navbar .hamburger div {
      filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.4));
    }

    .hamburger.active div:nth-child(1) {
      transform: rotate(45deg);
      position: absolute;
      top: 9px;
    }

    .hamburger.active div:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active div:nth-child(3) {
      transform: rotate(-45deg);
      position: absolute;
      top: 9px;
    }

    .overlay-menu {
      display: none;
      position: fixed;
      top: 0;
      right: 0;
      width: 100%;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.9);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      z-index: 999;
    }

    .overlay-menu a {
      color: white;
      font-size: 2rem;
      text-decoration: none;
    }

    .overlay-menu a:hover{
      color: #ff4ff0;
    }

    .section {
      position: relative;
      width: 100vw;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      z-index: 1;
    }

    .section video,
    .section .bg {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .button-wrapper {
      position: absolute;
      bottom: 1vh;
      width: 100%;
      display: flex;
      justify-content: center;
      z-index: 10;
    }

    .hover-button {
      position: absolute;
      bottom: 5vh;
      padding: 0.8rem 2rem;
      background: none;
      border: none;
      color: rgb(49, 3, 255);
      font-family: 'Times New Roman', Times, serif;
      font-size: 1.6rem;
      text-decoration: underline;
      cursor: pointer;
      z-index: 10;
      transition: color 0.3s ease;
    }

    .hover-button:hover {
      color: #ff4ff0;
    }

    .label-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 9;
    }

    .color-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 8; /* Below button and label image */
      transform: translateY(0%);
      transition: transform 0.4s ease-in-out;
      
    }

    .section:has(.hover-button:hover) .color-overlay,
    .color-overlay.active {
      
      transform: translateY(100%);
    }

    .color1{
      background-color: #ff4ff0;
    }

    .color2{
      background-color: rgb(238, 255, 105);
    }

    .color3{
      background-color: rgb(104, 255, 180);
    }

    .color4{
      background-color: rgb(255, 255, 255);
    }

   .hover-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;         /* Makes it stretch proportionally */
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
      z-index: 9;
    }

    .hover-button:hover + .hover-image {
      opacity: 1;
    }

    .hover-message {
      position: absolute;
      opacity: 0;
      transition: opacity 0.5s ease;
      text-align: center;
      margin-top: 2rem;
    }

    .hover-message h3 {
      font-size: 1rem;
      letter-spacing: 2px;
      color: #555;
    }

    .hover-message h1 {
      font-size: 2.5rem;
      font-weight: 900;
      color: #111;
    }

    .hover-button:hover ~ .hover-message {
      opacity: 1;
    }

    .cta-section {
      height: 60vh;
      background-color: black;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .cta-section a:hover {
      color: hotpink; /* or use #ff69b4 */
    }

    .insta-link,
    .tiktok-link {
      font-family: 'Times New Roman', serif;
      font-size: 4rem;
      color: blue;
      text-decoration: underline;
    }

    .footer-spacer {
      height: 60vh; /* Creates space to scroll to the footer */
    }

    .reveal-footer {
      position: fixed;
      bottom: 0;
      left: 0;
      min-height: 60vh;
      width: 100%;
      background: white;
      z-index: 0; /* Sits behind content until revealed by scroll */
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
      padding: 2rem;
      pointer-events: auto;        /* Allow mouse interaction */
      user-select: text;           /* Enable text selection */
    }

    .reveal-footer a {
      color: #000;
      text-decoration: underline;
    }

    .footer-content {
      text-align: left;
      width: 100%;
      max-width: 1200px;
      font-size: 1.8rem;
      line-height: 1.6;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      width: 100%;
      max-width: 1200px;
      font-size: 1rem;
      padding-top: 2rem;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-bottom .footer-left,
    .footer-bottom .footer-center,
    .footer-bottom .footer-right {
     flex: 1;
      min-width: 200px;
    }

    .footer-bottom .footer-center {
      text-align: center;
    }

    .footer-bottom .footer-right {
      text-align: right;
    }




    
    @media (max-width: 768px) {
      body.home { 
        padding-top: 60px; /* adjust to your navbar height */
      }
      
      .nav-links {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .section {
        height: auto;
        aspect-ratio: 16/9;
      }

      .hover-button {
        font-size: 1.2rem;
        padding: 0.4rem 1.0rem;
        bottom: 0;
      }

      .insta-link,
      .tiktok-link {
        font-size: 2rem;
      }

    .footer-spacer {
      height: 70vh; /* Creates space to scroll to the footer */
    }

    .footer-content {
      font-size: 1.4rem;
    }

    .footer-bottom {
      flex-direction: column;
      align-items: flex-start; /* align to left instead of center */
    }

    .footer-left,
    .footer-center,
    .footer-right {
      text-align: left; /* override center/right alignments */
    }

    }

    @media (min-width: 769px) {
      .hamburger {
        display: none;
      }
    }

    @media (max-width: 480px) {
      .hover-button {
        font-size: 0.8rem;
        padding: 0.5rem 1.0rem;
        bottom: 0vh;
      }

      .footer-content {
        font-size: 1.2rem;
      }

    }