* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base font size (you can scale with rem) */
    background-color: #111;
  }
  
  body {
    font-family: 'Inter', sans-serif; /* or system-ui if you want defaults */
    background-color: #111;
    color: #111;
    line-height: 1.6;
  }
  
  ul, ol {
    list-style: none;
    font-family: "good-times", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  
  }
  
  button,
  input,
  select,
  textarea {
    font: inherit;
    border: none;
    outline: none;
    background: none;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
  }
  

  .hero-section {
    position: relative;
    width: 100%;
    height: 70vh;
    background: url('./assets/images/Hero_image\ \(1\).webp') no-repeat center center / cover;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    color: #fff;
    font-family: 'Inter', sans-serif;
    gap: 2rem;
    width: 100%;
    height: 70vh;
  }

  .hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px; /* Adjust for smoother fade */
    background: linear-gradient(to bottom, rgba(17, 17, 17, 0.001) 0%, #111 100%);
    z-index: 1;
    pointer-events: none;
  }

    /*Nav Section*/
  
    .hero-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem;
        gap: 60px;
        text-align: center;
        margin-bottom: 60px;
      }
    
      .Nav-items{
        display: flex;
        flex-direction: row;
        gap: 10px;
      }
    
      .Nav-items ul {
        display: flex;
        flex-direction: row;
        gap: 60px;
        cursor: pointer;
        display: none;
      }
    
      .Nav-items li{
        font-family: 'century-gothic', sans-serif;
        font-size: 1rem;
        color: #eee;
        margin: 0;
        transition: transform 0.3s ease;
    
      }
    
    
      
      .Nav-items li:hover{
        color: #FFD369;
      }
      
      .login-button button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 12px 65px;
        border-radius: 20px;
        border: 1px solid #FFD369;
        background-color: #FFD369;
        font-family: "good-times", sans-serif;
        font-weight: 700;
        font-size: 16px;
        color: #111;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
        box-sizing: border-box;
        position: relative;
        box-shadow: 0 2px 4px rgba(255, 211, 105, 0.3);
      }
      
      .login-button button:hover {
        color: #EEE;
      }
      
      .login-button .btn-text {
        flex: 1;
        text-align: center;
        z-index: 2;
      }
      
      .login-button .btn-icon {
        position: absolute;
        right: 20px;
        display: flex;
        align-items: center;
        z-index: 2;
        transition: transform 0.3s ease;
      }
      
      .login-button button:hover .btn-icon {
        transform: translateX(2px);
      }
      
      .login-button button:hover .btn-icon svg path {
        fill: #EEE;
      }
      
        /* Hero Content Section*/
    
        .hero-content{
          margin-left: 160px;
          z-index: 10;
        }
    
      .hero-content h1 {
        font-family: "good-times", sans-serif;
        font-size: 64px;
        color: #eee;
        margin-bottom: 15px;
      }
      .hero-content h1 span {
        color: #FFD369;
      }
    
      .hero-content p {
        position: relative;
        font-family: 'century-gothic', sans-serif;
        font-size: 20px;
        color: #eee;
        margin-bottom: 15px;
        z-index: 10;
      }

      .terms-body {
        background-color: #111;
        color: #eee;
        font-family: 'Inter', sans-serif;
        padding: 0;
      }
      
      .privacy-container {
        position: relative;
        max-width: 100%;
        margin-top: -200px;
        z-index: 10;
    }
      .privacy-content{
        margin-left: 200px;
      }

      .privacy-container h1 {
        font-family: 'good-times', sans-serif;
        font-size: 2.5rem;
        color: #FFD369;
        text-align: center;
        margin-bottom: 1rem;
      }
      
      .privacy-container p {
        font-size: 1rem;
        line-height: 1.8;
        font-family: 'itc-avant-garde-gothic-pro', sans-serif;
        color: #ccc;
        margin-bottom: 1.5rem;
      }
      
      .privacy-container h2 {
        font-family: 'good-times', sans-serif;
        font-size: 1.5rem;
        color: #FFD369;
        margin-top: 2.5rem;
        margin-bottom: 0.5rem;
      }

      .privacy-container h3 {
        font-family: 'good-times', sans-serif;
        font-size: 1rem;
        color: #FFD369;
        margin-top: 2.5rem;
        margin-bottom: 0.5rem;
      }
      
      .privacy-container a {
        color: #FFD369;
        text-decoration: underline;
        font-weight: bold;
      }
      
      .privacy-container a:hover {
        color: #fff;
      }

      .privacy-content ul {
        margin-bottom: 1.5rem;
        padding-left: 1.5rem;
      }
      
      .privacy-content ul li {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 0.75rem;
        color: #ccc;
        font-family: 'itc-avant-garde-gothic-pro', sans-serif;
        list-style: disc;
      }

      /*Footer*/
.site-footer {
    background-color: #111;
    color: #eee;
    padding: 2rem 1.5rem 0;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
   
  }
  
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .Splice-logo svg {
    max-width: 160px;
    height: auto;
  }
  
  .footer-bottom {
    width: 100%;
    padding: 1rem 0;
    text-align: center;
    font-size: 0.875rem;
    color: #ccc;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .footer-bottom p {
    margin: 0;
  }
  
  .footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.85rem;
  }
  
  .footer-links a:hover {
    color: #FFD369;
  }
      
/* ========== Responsive Adjustments ========== */

@media (max-width: 390px){
    .privacy-container {
        padding: 1.5rem 1rem;
        margin-top: -160px;
    }
}




/* ====== Tablet: 768px to 1199px ====== */
@media (min-width: 768px) and (max-width: 1199px) {
    .hero-nav {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      margin-bottom: 60px;
    }
  
    .Splice-logo svg {
      width: 160px;
      height: auto;
    }
  
    .Nav-items ul {
      display: none;
    }
  
    .login-button button {
      padding: 10px 32px;
      font-size: 14px;
      gap: 8px;
    }
  
    .login-button .btn-icon {
      right: 12px;
    }
  
    .hero-content {
      margin-left: 40px;
      text-align: left;
    }
  
    .hero-content h1 {
      font-size: 48px;
    }
  
    .hero-content p {
      font-size: 18px;
    }


  }
  
  
  @media (max-width: 768px) {
    .hero-content {
      margin-left: 0;
      text-align: center;
    }
  
    
  
    .hero-content h1 {
      font-size: 40px;
    }
  
    .hero-content p {
      font-size: 1rem;
    }
  
   
    .login-button button {
      font-size: 14px;
      padding: 10px 50px;
    }
  
  
    .Nav-items ul {
      display: none;
    }
  
    
  }
  
  @media (max-width: 540px) and (min-width: 480px){
    .site-footer{
      margin-top: 160px;
    }
  }
  
  @media (max-width: 480px) {
    html {
      font-size: 14px;
      width: 100%;
    }
  
    .hero-section {
      padding: 1rem;
      margin-bottom: 40px;
    }
  
    .hero-nav {
      flex-direction: row;
      justify-content: center;
      align-items: center;
      width: 100%;
      gap: 80px;
    }
  
    .hero-nav .Splice-logo svg {
      width: 100px;
    }
  
  
    .login-button button {
      padding: 10px 50px;
      font-size: 14px;
    }
  
    .hero-content h1 {
      font-size: 32px;
    }
  

  
 
  
  
    .site-footer {
      padding: 2rem 1rem 1rem;
    }
  
    .footer-links {
      flex-direction: column;
      gap: 0.75rem;
    }
  }
  
  @media screen and (max-width: 1180px) and (orientation: landscape) {
    .hero-content {
      margin-left: 0;
      text-align: center;
    }
  
    .hero-section {
      margin-bottom: 40px;
    }
  
    .hero-content h1 {
      font-size: 36px;
    }
  
    .hero-content p {
      font-size: 0.95rem;
    }
  
    .login-button button {
      font-size: 14px;
      padding: 10px 40px;
    }

    .privacy-content {
        padding: 1.5rem 1rem;
        margin-top: 80px;
    }
  }
  
  @media (max-width: 667px) {
  
    .site-footer {
      margin-top: 200px;
      padding: 2rem 1rem 1rem;
    }
  }

  /* ===== Terms Section Responsive Styling ===== */

/* Tablet view (768px to 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
    .privacy-container {
      padding: 2rem;
      margin-top: -100px;
    }
  
    .privacy-content {
      margin-left: 60px;
      margin-right: 60px;
    }
  
    .privacy-container h1 {
      font-size: 2rem;
    }
  
    .privacy-container h2 {
      font-size: 1.25rem;
    }
  
    .privacy-container p {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 768px) and (orientation: landscape){
    .privacy-container {
      padding: 2rem 1rem;
      margin-top: -120px;
    }
    .privacy-content {
        margin-left: 0;
        margin-right: 0;
      }
}

@media (min-height: 767px) and (orientation: portrait){
    .privacy-container {
        padding: 2rem;
        margin-top: -400px;
    }
}

  /* Mobile view (up to 768px) */
  @media (max-width: 767px) and (orientation: portrait) {
    .privacy-container {
      padding: 2rem 1rem;
      margin-top: -160px;
    }
  
    .privacy-content {
      margin-left: 0;
      margin-right: 0;
    }
  
    .privacy-container h1 {
      font-size: 1.75rem;
      text-align: center;
    }
  
    .privacy-container h2 {
      font-size: 1.1rem;
    }
  
    .privacy-container p {
      font-size: 0.95rem;
    }
  }
  
  
  /* Small mobile (up to 480px) */
  @media (max-width: 480px) and (min-width: 380px) {
    .privacy-container {
      padding: 1.5rem 1rem;
      margin-top: -300px;
    }
  
    .privacy-container h1 {
      font-size: 1.5rem;
    }
  
    .privacy-container h2 {
      font-size: 1rem;
    }
  
    .privacy-container p {
      font-size: 0.9rem;
      line-height: 1.6;
    }
  }
  

  @media (max-width: 1700px) and (min-width: 1025px) {
    .privacy-content{
      margin: 0px 60px;
    }

    .hero-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center;
      width: 100%;
      z-index: 10;
      margin-left: 0px;
  }
  }

  