* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color: #2b0026;
  color: #ffffff;
  overflow-x: hidden;
}

.outfit-thin {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

.outfit-extralight {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

.outfit-regular {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.outfit-medium {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.outfit-semibold {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.outfit-bold {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.outfit-extrabold {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

.outfit-black {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}


/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: #2b0026;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid #5e0050;
}

.navbar .logo {
  font-family: "Outfit", sans-serif;
  font-size: 1.5em;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  /* font-weight: bold; */
  color: #fe0f8a;
  letter-spacing: 1px;
}

.navbar nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #cfcfcf;
  font-weight: 500;
  transition: color 0.2s ease;
}

.navbar nav a:hover {
  color: #fe0f8a;
}

.login-btn {
  background: linear-gradient(135deg, #fe0f8a, #ff6fd8);
  color: #fff;
  border: 1px solid #cfcfcf;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background: #fe0f8a;
  box-shadow: 0 0 10px #fe0f8a, 0 0 20px #ff6fd8;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 100px;
  background: linear-gradient(135deg, #2b0026, #fe0f8a);
  border-bottom: 1px solid #cfcfcf33;
}

.hero-content {
  max-width: 500px;
}

.hero-illustration img {
  max-height: 400px;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(254, 15, 138, 0.4);
}

.hero p {
  line-height: 1.6;
  margin-bottom: 30px;
  color: #e6e6e6;
}

.hero-buttons .btn {
  background: #cfcfcf;
  color: #2b0026;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  margin-right: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

.hero-buttons .btn:hover {
  background: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(254, 15, 138, 0.4);
}

/* Features */
.features {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 80px 60px;
  background: #fff1fa;
  color: #1a1a1a;
}

.feature {
  text-align: center;
  max-width: 300px;
  background: linear-gradient(180deg, #ffffff, #e6e6e6);
  padding: 30px 20px;
  border-radius: 20px;
  border: 1px solid #cfcfcf;
  box-shadow: 0 4px 15px rgba(254, 15, 138, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(254, 15, 138, 0.25);
}

.feature img {
  width: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 6px rgba(254, 15, 138, 0.4));
}

.feature h2 {
  margin-bottom: 10px;
  color: #fe0f8a;
}

.feature p {
  color: #333;
}

/* Footer */
.footer {
  background-color: #1a0018;
  padding: 30px 60px;
  border-top: 1px solid #cfcfcf33;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #cfcfcf;
}

.footer nav a {
  color: #cfcfcf;
  margin-left: 15px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer nav a:hover {
  color: #fe0f8a;
}

/* ============================= */
/* 📱 Responsive Adjustments */
/* ============================= */

/* Medium Screens (Tablets) */
@media (max-width: 1024px) {
  .navbar {
    padding: 20px 30px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 40px;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .hero-illustration img {
    width: 80%;
    max-width: 400px;
  }

  .features {
    flex-wrap: wrap;
    gap: 30px;
    padding: 60px 40px;
  }
}

/* Small Screens (Phones) */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }

  .navbar nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .login-btn {
    width: 100%;
    max-width: 300px;
  }

  .hero {
    padding: 50px 20px;
  }

  .hero h1 {
    font-size: 2em;
  }

  .hero p {
    font-size: 1em;
  }

  .hero-buttons .btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .features {
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
  }

  .feature {
    width: 100%;
    max-width: 400px;
  }

  .footer-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Extra Small Screens */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8em;
  }

  .hero p {
    font-size: 0.9em;
  }

  .feature img {
    width: 60px;
  }
}
