: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);
}

/* ======= 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;
}

/* Page Banner */
/* 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/registerBanner.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(--primary-color);
}

/* Centered Section */
.section__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.header__container {
  min-height: calc(100vh - 40vh);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.header__content {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Form Styling */
.form-box {
  background-color: var(--secondary-color);
  max-width: 550px;
  width: 100%;
  padding: 2.5rem 2rem;
  border-radius: 1.25rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.form-box:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.inpt-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.input-field,
textarea,
select {
  width: 100%;
  padding: 0.9rem 1.1rem;
  font-size: 1rem;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  background-color: var(--secondary-color-dark);
  color: var(--white);
  transition: all 0.2s ease;
}

.input-field::placeholder,
textarea::placeholder {
  color: var(--white);
}

.input-field:focus,
textarea:focus,
select:focus {
  outline: none;
  background-color: var(--primary-color-extra-light);
  border: 1px solid var(--hover);
  box-shadow: 0 0 5px var(--hover);
}

textarea {
  resize: vertical;
  min-height: 100px;
  max-height: 250px;
}

.submit-btn {
  padding: 0.9rem;
  font-size: 1rem;
  font-weight: bold;
  background-color: var(--hover);
  color: var(--primary-color);
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background-color: #e5a700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media screen and (max-width: 600px) {
  .form-box {
    padding: 2rem 1.2rem;
  }

  .submit-btn {
    font-size: 0.95rem;
    padding: 0.8rem;
  }
}
  
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;
  }
}