@charset "UTF-8";
/* Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

/* Variables */
.shade {
  background-color: rgba(203, 240, 204, 0.5);
  border-radius: 20px;
  padding: 10px;
}

.med-shade {
  box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.28);
  border-radius: 12px;
  background: rgba(203, 240, 204, 0.5);
  padding: 0px;
  transition: box-shadow 0.3s;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 99.5%;
  background: #f9f9f9;
  padding: 15px 0;
  z-index: 1000;
}
.header .container {
  max-width: 1400px;
  margin: auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  /* Hamburger Icon */
  /* When active → rotate icon */
}
.header .container .logo {
  width: 30%;
}
.header .container .logo img {
  width: 160px;
  height: 55px;
  margin-left: 2rem;
}
.header .container .navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.header .container .navbar ul li a {
  color: #517f09;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  transition: 0.3s;
}
.header .container .navbar ul li a.active, .header .container .navbar ul li a:hover {
  color: #517f09;
}
.header .container .btn.donate {
  background: #0072b1;
  border: none;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
@media screen and (max-width: 525px) {
  .header .container .btn.donate {
    padding: 4px 8px;
    font-size: 0.9rem;
  }
}
.header .container .btn.donate:hover {
  background: #f3780e;
  color: #fff;
}
.header .container .menu-toggle {
  display: none;
  font-size: 32px;
  cursor: pointer;
  color: black;
  padding: 5px 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (max-width: 460px) {
  .header .container .menu-toggle {
    font-size: 20px;
  }
}
.header .container .menu-toggle.open {
  transform: rotate(90deg);
}

/* -------------------------
   📌 1024px (Tablets Landscape / Small Laptops)
--------------------------*/
@media (max-width: 1024px) {
  .login-container {
    max-width: 480px;
    padding: 2rem;
  }
  .welcome-header h1 {
    font-size: 1.9rem;
  }
  .new-plan-banner h3 {
    font-size: 1.1rem;
  }
  .header .container .navbar ul li a {
    font-size: 0.85rem;
  }
}
/* RESPONSIVE (<=768px) */
@media (max-width: 768px) {
  .header .container {
    justify-content: flex-end; /* Align items to the start, allowing margin-left: auto to push elements */
  }
  .header .container .navbar {
    position: absolute;
    top: 80px;
    left: 0;
    background: #fff;
    padding: 20px 0;
    display: none;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  .header .container .navbar ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .header .container .navbar.active {
    display: block;
    width: 250px;
    margin-left: 10rem;
  }
  .header .container .logo img {
    width: 110px;
    height: 45px;
    margin-left: 1rem;
  }
  .header .container .menu-toggle {
    display: block;
    margin-left: 20rem; /* Keep this as it was explicitly set to 0 in a previous fix */
    float: right;
  }
  .header .container .btn.donate {
    display: block;
    margin-left: auto; /* Pushes this button and subsequent siblings to the right */
    min-width: 70px;
  }
}
/* -------------------------
   📌 425px (Mobiles)
--------------------------*/
@media (max-width: 426px) {
  .header .container .logo img {
    width: 100px;
    height: 35px;
    margin-left: 1rem;
  }
  .header .container .navbar.active {
    display: block;
    width: 200px;
    margin-left: 5rem;
  }
  .header .container .menu-toggle {
    margin-left: 8rem; /* Keep this as it was explicitly set to 0 in a previous fix */
  }
}
/* -------------------------
   📌 375px (Mobiles)
--------------------------*/
@media (max-width: 376px) {
  .header .container .logo img {
    width: 95px;
    height: 32px;
    margin-left: 1rem;
  }
  .header .container .navbar.active {
    display: block;
    width: 200px;
    margin-left: 5rem;
  }
  .header .container .menu-toggle {
    margin-left: 6rem; /* Keep this as it was explicitly set to 0 in a previous fix */
  }
}
/* -------------------------
   📌 320px (Mobiles)
--------------------------*/
@media (max-width: 320px) {
  .header .container .logo img {
    width: 90px;
    height: 30px;
    margin-left: 1.2rem;
  }
  .header .container .navbar.active {
    display: block;
    width: 200px;
    margin-left: 5rem;
  }
  .header .container .menu-toggle {
    margin-left: 4rem; /* Keep this as it was explicitly set to 0 in a previous fix */
  }
}/*# sourceMappingURL=header.css.map */