/* General Resets and Body Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: sans-serif;
    line-height: 1.6;
    color: #333;
  }
  
  /* Navigation Bar */
  .navbar {
    width: 100%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding: 0.5rem 1rem;
    position: sticky;
    top: 0;
    z-index: 999;
  }
  
  .nav-brand {
    display: flex;
    align-items: center;
  }
  
  .logo {
    height: 40px; /* Adjust to desired size */
    margin-right: 1rem;
  }

  .app-store-badge {
    width: 200px; /* Adjust width as needed */
    margin-top: 10px;
  }
  
  .nav-toggle {
    display: none; /* Hidden on desktop by default */
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #333;
    padding: 0.5rem 1rem;
    cursor: pointer;
  }
  
  .nav-links li a:hover {
    background-color: #f0f0f0;
    border-radius: 4px;
  }
  
  /* Hero Section */
  .hero {
    width: 100%;
    height: 70vh; /* Adjust the height as you like */
    background: url('/img/gradient.png') repeat-x;
    background-size: auto 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
  }
  
  .hero-content {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 8px;
    z-index:1;
  }
  
  #bouncingLogo {
    position: absolute;
    width: 100px; /* Adjust as needed */
    height: auto;
    z-index:0;
    top:0;
    left:0;
  }


  /* Common Section Styles */
  .section-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1rem;
    text-align: center;
  }

  .section-content p {
    margin-bottom: 1.5rem;
  }
  
  .about,
  .support,
  .download {
    width: 100%;
    background-color: #f9f9f9;
  }
  
  .download {
    background-color: #ffffff;
  }
  
  /* Footer */
  .footer {
    width: 100%;
    text-align: center;
    padding: 1rem;
    background-color: #e9e9e9;
  }
  
  /* Responsive Media Queries */
  
  /* For tablets and smaller devices */
  @media (max-width: 768px) {
    .nav-links {
      display: none; /* Hide the nav links by default on mobile */
      flex-direction: column;
      background-color: #fff;
      position: absolute;
      top: 60px; /* Adjust according to nav height */
      right: 1rem;
      width: 200px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      gap: 0; /* Remove gap so each link is full width in dropdown */
    }
    
    .nav-links li {
      border-bottom: 1px solid #ddd;
      cursor: pointer;
    }
  
    .nav-links li a {
      display: block;
      width: 100%;
      padding: 1rem;
      cursor: pointer;
    }
  
    .nav-toggle {
      display: block; /* Show the hamburger icon on mobile */
    }
    
    .navbar {
      justify-content: space-between;
    }
  }