/* General Resets and Typography */
:root {
  --color-primary-dark: #6b4d3f;
  --color-signup-box: #bfa88f;
  --color-input-bg: #e5e5e5;
  --color-text-light: #ffffff;
  --color-text-dark: #333333;
  --color-button-signup: #8b5e4d;
  --color-navbar: #5c4333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}


body {
  background-color: white;
}





a {
  text-decoration: none;
  color: inherit;

}

/* --- Navbar --- */
.navbar {
  background-color: var(--color-navbar);
  color: var(--color-text-light);
  font-weight:600;
  font-size: 14px;
  padding: 1rem 2rem;
  letter-spacing: 1px;
}

.navbar a {
  color: var(--color-text-light);
}

.nav-link:hover {
  opacity: 0.8;
}

/* --- Hero Image --- */
.hero-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Sign Up --- */
.signup-container {
  padding: 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.signup-form-box {
  background-color: var(--color-signup-box);
  width: 100%;
  max-width: 900px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 5%;
}

.form-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--color-button-signup);
  margin-bottom: 30px;
}

.signup-form input {
  width: 100%;
  padding: 15px 20px;
  margin-bottom: 20px;
  border: none;
  background-color: var(--color-input-bg);
  color: var(--color-text-dark);
  font-size: 16px;
}

.signup-form input::placeholder {
  color: #888;
}

.btn-signup {
  width: 100%;
  padding: 12px 0;
  background-color: var(--color-button-signup);
  color: var(--color-text-light);
  border: none;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 20px;
  transition: opacity 0.2s;
}

.btn-signup:hover {
  opacity: 0.9;
}

.login-text {
  font-size: 14px;
  color: var(--color-text-dark);
}

.login-link {
  color: var(--color-button-signup);
  font-weight: bold;
  text-decoration: underline;
}

.login-link:hover {
  opacity: 0.8;
}

/* --- Footer --- */
.footer {
  background-color:#5c4333;
  color: var(--color-text-light);
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 12px;
  flex-wrap: wrap;
  text-align: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.contact-text {
  font-weight: bold;
  margin-bottom: 5px;
}

.contact-number {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 25px;
}

.contact-number::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--color-primary-dark);
  box-sizing: border-box;
}

.contact-number::after {
  font-family: "Font Awesome 6 Free";
  content: "\f095";
  font-weight: 900;
  color: var(--color-text-light);
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  font-size: 24px;
  color: var(--color-text-light);
  transition: color 0.2s;
}

.social-icons .fa-facebook-f {
  background-color: #4267B2;
  padding: 3px 6px;
  border-radius: 3px;
}

.social-icons .fa-tiktok {
  background-color: #000000;
  padding: 3px 6px;
  border-radius: 3px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 700px) {
  .navbar {
    padding: 15px 20px;
  }

  .signup-form-box {
    padding: 30px 25px;
  }

  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-info {
    align-items: center;
    margin-top: 10px;
  }
}
