
:root {
  --primary-color: #141414;
  --primary-color-light: #1f2125;
  --primary-color-extra-light: #35373b;
  --secondary-color: #535353;
  --secondary-color-dark: #2d2e2d;
  --text-light: #333;
  --hover: #f4b400;
  --white: #ffffff;
  --max-width: 1200px;
}
*::before,
*::after {
  box-sizing: border-box;
}

/* Reset and Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Kumbh Sans', sans-serif;
}
body {
    background-color: var(--white);
  color: var(--white);  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
}

/* ======= NAVBAR STYLES ======= */
.navbar {
  background: var(--white);
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  width: 100%;
  padding: 0 20px;
}

#navbar__logo {
  background-color: var(--secondary-color);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  font-size: 2rem;
}
#navbar__logo img{
height: 30%;
width: 40%;
}
#navbar__logo span{
  color: var(--secondary-color);
}


.navbar__menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 25px;
}

.navbar__item {
  position: relative;
}

.navbar__links {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 5px;
  transition: 0.3s ease;
}

.navbar__links:hover,
.navbar__links:focus {
  background-color: var(--hover);
  color: var(--primary-color);
}

/* Ensure the parent <li> has relative positioning */
.dropdown {
  position: relative;
}

/* Dropdown menu */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%; /* 👈 places it directly under the button */
  left: 0;
  background-color: var(--white);
  min-width: 220px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  z-index: 1000;
  flex-direction: column;
  padding: 10px 0;
}

.dropdown-content a {
  padding: 10px 16px;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  display: block;
  transition: 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #f5f5f5;
  color: var(--hover);
}

/* Show dropdown on click */
.dropdown-content.show {
  display: flex;
}


/* Mobile menu */
.navbar__toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.dropbtn  {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 5px;
  transition: 0.3s ease;
}
.dropbtn:hover,
.dropbtn:focus {
  background-color: var(--hover);
  color: var(--primary-color);
}
.bar {
  height: 3px;
  width: 25px;
  background-color: var(--primary-color);
  margin: 4px 0;
  border-radius: 2px;
}
/* Shop Page */
#page-header {
  position: relative;
  width: 100%;
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 14px;
  overflow: hidden;
  text-align: center;
  margin-top: 2%;
  margin-bottom: -4%;
  background-size: cover;
  background-position: center;
  margin-bottom: 5%;
}

#page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 background-image: url("../images/banners/homepageBanner.png");
  background-size: inherit;
  background-position: inherit;
  filter: blur(3.5px); /* Increase blur intensity if needed */
  z-index: -1; /* Ensure the pseudo-element is behind the text */
}
  #page-header h1,
  #page-header p {
    color: var(--secondary-color);
  }
.terms-section {
  padding: 60px 20px;
  max-width: var(--max-width);
  margin: auto;
}

.container h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--hover);
}


.intro {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 30px;
}

.term-block {
  background: var(--white);
  padding: 25px;
  border-left: 5px solid var(--hover);
  margin-bottom: 25px;
  border-radius: 6px;
}

.term-block h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.term-block i {
  color: var(--hover);
  margin-right: 8px;
}

.term-block p {
  font-size: 1rem;
  color: var(--text-light);
}

.updated {
  margin-top: 40px;
  font-size: 0.9rem;
  color: var(--secondary-color);
}

  .section__container {
    max-width: var(--max-width);
    margin: auto;
    padding: 5rem 1rem;
  }
   footer.footer__container {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 20px 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: var(--max-width);
    margin: auto;
    border-top: 4px solid var(--hover);
    position: relative;
  }
  
  .footer__col {
    flex: 1 1 220px;
    min-width: 220px;
  }
  
  .footer__logo img {
    width: 120px;
    margin-bottom: 15px;
  }
  
  .footer__col h4 {
    font-size: 1.2rem;
    color: var(--hover);
    margin-bottom: 20px;
  }
  
  .footer__col a {
    display: block;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.3s ease;
    font-size: 15px;
  }
  
  .footer__col a:hover {
    color: var(--hover);
    transform: translateX(5px);
  }
  
  .footer__socials {
    margin-top: 20px;
    display: flex;
    gap: 12px;
  }
  
  .footer__socials a {
    font-size: 1.25rem;
    background-color: var(--hover);
    color: var(--primary-color);
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .footer__socials a:hover {
    background-color: var(--white);
    transform: scale(1.1);
  }
  
  .footer__bar {
    background-color: var(--primary-color-extra-light);
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
    color: var(--white);
    border-top: 1px solid var(--secondary-color);
    margin-top: 40px;
  }
  
  @media (max-width: 768px) {
    footer.footer__container {
      flex-direction: column;
      text-align: center;
      align-items: center;
    }
  
    .footer__col {
      margin-bottom: 30px;
    }
  
    .footer__socials {
      justify-content: center;
    }
  }
