/* styles.css */
body {
    margin: 0;
    font-family: rubik;
    color: #333;
    
  }
  
  header {
    background-color: #f7f7f7;
    padding: 10px 20px;
  }
  
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-family: "Unbounded", serif;
    display: flex; /* Use flexbox for horizontal alignment */
    align-items: center; /* Center items vertically */
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6700;
    
  }
  
  .logo-img {
    border-radius: 50%;
    margin-right: 10px; /* Add spacing between image and text */
  }
  
  .logo-text {
    font-size: 44px;
    display: inline-block; /* Ensure the text stays on the same line */
  }
  
  .menu {
    list-style-type: none;
    display: flex;
    gap: 20px;
  }
  
  .menu a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
  }
  
  .hero {
    text-align: center;
    padding: 50px 20px;
    background-color: #f0f4f8;
  }
  
  .hero h1 {
    font-size: 2.9rem;
    margin-bottom: 20px;
  }
  
  .hero .highlight {
    background-color: #e0f7ff;
    padding: 0 5px;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin: 10px 0;
  }
  
  .download-btn {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin: 20px 0;
    font-size: 24px;
  }
  
  .download-btn:hover {
    background-color: #0056b3;
  }
  
  .availability {
    margin-top: 10px;
  }
  
  .availability a {
    text-decoration: none;
    color: #007bff;
  }
  
  .availability a:hover {
    text-decoration: underline;
  }
  
  footer {
    text-align: center;
    padding: 20px;
    background-color: #f7f7f7;
    font-size: 0.9rem;
  }
  
  /* Mobile Styles */
@media (max-width: 768px) {
    .menu{
        display: none;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo-text {
        font-size: 24px;
    }

    .nav {
        flex-direction: column;
        align-items: center;
    }

    .menu {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1rem;
    }

    .download-btn {
        font-size: 20px;
        padding: 8px 16px;
    }
    
    footer {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {

    .menu{
        display: none;
    }

    .hero {
        padding: 30px 10px;
    }

    .logo {
        flex-direction: column;
        font-size: 1rem;
    }

    .logo-img {
        margin-right: 0;
        margin-bottom: 5px;
    }

    .menu {
        flex-direction: column;
        gap: 10px;
    }

    .download-btn {
        font-size: 18px;
        padding: 8px 15px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    footer {
        font-size: 0.75rem;
    }
}
