/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;  
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333; /* Adjust color to match your site's theme */
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.menu {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
}

.menu a:hover {
    text-decoration: underline;
}

.auth-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.auth-buttons button {
    padding: 8px 15px;
    background-color: #007bff; /* Button color */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.auth-buttons button:hover {
    background-color: #0056b3; /* Button hover color */
}

/* Hamburger Button */
.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 1200;
  background-color: #333;
  color: white;
  border-radius: 6px;
}

/* Sidebar Menu */
.sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 260px;
  height: 100vh;
  background-color: #222;
  color: white;
  padding-top: 60px;
  transition: left 0.5s ease;
  z-index: 1100;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
}

.sidebar.open {
  left: 0;
}

.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

.sidebar-menu a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
}

.sidebar-btn {
  padding: 10px;
  background-color: #007bff;
  color: white;
  border: none;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
}

/* Responsive Rules */
/* NEW: Hide .desktop-only on mobile */
@media screen and (max-width: 1200px) {
  .desktop-only {
    display: none;
  }

  .hamburger {
    display: block;
  }
}
/* Ensure logo stays on left */
.logo img {
  height: 60px;
}

/* Ensure the background image covers the entire page */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.hero-image {
    background-image: url(HOMECOVER.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
}


/* Hero Content Styling */
.hero-content {
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.terms-container {
    padding: 30px; /* Ensures spacing inside */
    width: 90%; /* Makes it responsive */
    max-width: 800px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    line-height: 1.6;
    margin: 100px auto;
}

.terms-container h1 {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.terms-container h2 {
    color: #555;
    margin-top: 15px;
}

.terms-container p {
    color: #666;
    margin-bottom: 10px;
}

.back-link {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    color: #007bff;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}
.terms-container ul {
    margin-left: 20px; /* Adds left margin for indentation */
    padding-left: 20px; /* Ensures bullets appear properly */
    list-style-type: disc; /* Ensures bullets are visible */
}
.terms-container li {
    margin-bottom: 5px; /* Adds spacing between list items */
    color: #666; /* Matches the paragraph text */
    font-size: 1rem;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}
@media screen and (max-width: 768px) {
    .terms-container {
        padding: 30px; /* Ensures spacing inside */
        width: 90%; /* Makes it responsive */
        max-width: 800px;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        line-height: 1.6;
        margin: 100px auto;
    }
    
    .terms-container h1 {
        color: #333;
        margin-bottom: 20px;
        text-align: center;
        font-size: 20px;
    }
    
    .terms-container h2 {
        color: #555;
        margin-top: 15px;
        font-size: 16px;
    }
    
    .terms-container p {
        color: #666;
        margin-bottom: 10px;
        font-size: 12px;
    }
    
    .back-link {
        display: block;
        text-align: center;
        margin-top: 20px;
        font-size: 12px;
        color: #007bff;
        text-decoration: none;
    }
    
    .back-link:hover {
        text-decoration: underline;
    }
    .terms-container ul {
        margin-left: 20px; /* Adds left margin for indentation */
        padding-left: 20px; /* Ensures bullets appear properly */
        list-style-type: disc; /* Ensures bullets are visible */
        font-size: 11px;
    }
    .terms-container li {
        margin-bottom: 5px; /* Adds spacing between list items */
        color: #666; /* Matches the paragraph text */
        font-size: 11px;
    }
    footer {
        background-color: #333;
        color: white;
        padding: 20px;
        text-align: center;
        font-size: 12px;
    }
  }
  