body.splash-bg {
    background-image: url(/images/bg.png);
    height: 100vh;
    overflow: hidden;
    font-family: 'Playfair Display', serif;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8); /* Adjust opacity */

  }
  
  .logo-container {
    animation: fadeInLogo 2s ease-in-out forwards;
    margin-bottom: 2rem;
  }
  
  .logo {
    width: 180px;
    max-width: 80vw;
    border-radius: 30px;
    opacity: 0;
  }

  .foot-brand{
    color: whitesmoke;
    font-weight: bold;
  }
  
  @keyframes fadeInLogo {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
  }
  
  .get-started-btn {
    font-size: 1.2rem;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    transition: all 0.5s ease;
    opacity: 0;
    width: 60%;
    max-width: 250px;
    margin: 40px;
    background-color: orange;
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .get-started-btn.animate {
    animation: pulseBtn 1s ease-in-out infinite;
  }
  
  .spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .spinner {
    width: 50px;
    height: 50px;
    border: 6px solid #ccc;
    border-top-color: #F4C95D;
    border-radius: 50%;
    animation: spin 50s linear infinite;
  }
  
  @keyframes spin {
    to { transform: rotate(360deg); }
  }
  
  
  @keyframes pulseBtn {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }
  
  /* Responsive tweaks */
  @media (max-width: 576px) {
    .logo {
      width: 140px;
    }
  
    .get-started-btn {
      font-size: 1rem;
      padding: 0.5rem 1.2rem;
    }
  }
  
  @media (min-width: 768px) {
    .logo {
      width: 200px;
    }
  
    .get-started-btn {
      font-size: 1.3rem;
    }
  }
  