/* 🔧 Global Reset and Font Setup */
*,
*::before,
*::after {
  margin: 0;
  box-sizing: border-box;
  /* font-family: "Courier New", Courier, monospace; */ /* ← Optional alternate font */
  font-family: "Times New Roman", Times, serif; /* 👈 Default font used */
}

/* 🧱 HEADER SECTION */
.header {
  /* border: 2px solid red; */ /* ← Dev border (can remove later) */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em;
  /* margin: 0px auto; width: 90%; */ /* moved to `.container` class */
}

.header_title {
  font-size: 1.5rem;
  text-transform: uppercase; /* 👆 Makes all text uppercase */
  font-weight: 900;
  flex: 1; /* ← Shares space with menu & buttons */
}

.header_menu {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex: 1;
  justify-content: center;
  text-transform: capitalize;
}

.header_links {
  text-decoration: none;
  color: black;
}

.header_btn_container {
  display: flex;
  gap: 1rem;
  flex: 1;
  justify-content: end;
}

.header_bars_btn {
  display: none; /* Only shows in small screen (see media query) */
}

/* 📱 RESPONSIVE HEADER */
@media (max-width: 979px) {
  .header_title {
    font-size: 1.2rem;
  }

  .header_links {
    font-size: 0.8rem;
  }

  .header_btn {
    font-size: 0.6rem;
  }
}

@media (max-width: 783px) {
  .header_title {
    font-size: 1rem;
  }

  .header_links {
    font-size: 0.6rem;
  }

  .header_btn {
    font-size: 0.4rem;
  }
}

@media (max-width: 653px) {
  .header_title {
    font-size: 0.8rem;
  }

  .header_links {
    display: none; /* 👈 Hides menu on small screen */
  }

  .header_btn_container {
    display: none; /* 👈 Hides buttons */
  }

  .header_bars_btn {
    display: block; /* 👈 Hamburger icon visible */
  }
}

/* 🦸 HERO SECTION */
.hero {
  margin-top: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero_title {
  font-size: 3rem;
  text-align: center;
  letter-spacing: -0.05em;
}

.hero_description {
  font-size: 1.5rem;
  text-align: center;
  margin: 1rem 0;
}

/* 💰 PRICING SECTION */
.pricing {
  margin-top: 10rem;
}

.pricing_title {
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.pricing_description {
  font-size: 1.5rem;
}

.pricing_options {
  display: flex;
  gap: 10rem; /* 💡 Consider smaller gap for mobile layout */
  flex-wrap: wrap; /* ✅ Add this if not present, for responsiveness */
  justify-content: center;
}

.pricing_box {
  margin-top: 2rem;
  background-color: black;
  color: white;
  padding: 2em;
  border-radius: 20px;
  width: 300px; /* 💡 Optional: Limit box width for consistency */
}

.pricing_cost {
  font-size: 2rem;
}

.pricing_plans {
  margin: 1em;
}

.pricing_details {
  color: #ccc; /* Lighter for secondary info */
}

.pricing_btn {
  background-color: white;
  color: black;
  border-radius: 10000000px; /* ❗ Use practical value like 9999px */
  padding: 0.5em 1em;
  margin: 2em 0;
  cursor: pointer;
  text-align: center;
  width: 100%;
  font-weight: 900;
}

.pricing_list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.9rem;
  color: #ccc;
}

/* 🧰 FEATURES SECTION */
.features {
  margin: 10rem;
  text-align: center;
}

.features_titles {
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.features_description {
  font-size: 1.5rem;
  max-width: 40%;
  margin: 1rem auto;
}

.features_box_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.features_boxs {
  border: 2px solid rgb(142, 134, 134);
  width: 500px;
  border-radius: 10px;
  padding: 2em;
}

.features_titles {
  font-size: 1.6rem;
  letter-spacing: -0.05em;
}

/* ☎️ CONTACT + FOOTER SECTION */
.contact {
  margin: 10rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.contact_title {
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.contact_description {
  font-size: 1.05rem;
  max-width: 40%;
  margin: 1rem auto;
}

.contact_btn {
  font-size: 1rem;
}

.footer {
  margin: 3rem;
  text-align: center;
  font-size: 0.9rem;
  color: gray;
}

.footer p {
  margin: 5px 0;
}

.footer-brand {
  font-weight: lighter;
}

/* 🧰 UTILITY CLASSES */
.btn {
  border: none;
  background-color: black;
  color: white;
  border-radius: 5px;
  padding: 0.5em 1em;
  cursor: pointer;
  text-decoration: none;
}

/* Container utility: used to center content */
.container {
  width: 90%;
  margin-inline: auto;
  /* Alternative: margin: 0 auto; */
}

/* more css styles */
/* 🎨 Hover Effects */
.header_links:hover {
  color: #6a0dad;
  transition: color 0.3s ease;
}

.btn:hover,
.pricing_btn:hover {
  background: linear-gradient(135deg, #ff8a00, #e52e71);
  color: white;
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}

/* 📦 Box hover effect */
.pricing_box:hover,
.features_boxs:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

/* 🌀 Smooth transition utility */
* {
  transition: all 0.3s ease;
}

/* 🌈 Gradient background for hero & contact */
.hero,
.contact {
  background: linear-gradient(to bottom, #f5f7fa, #c3cfe2);
  padding: 2rem 0;
  border-radius: 10px;
}

/* 💫 Gradient border effect on pricing boxes */
.pricing_box {
  position: relative;
  z-index: 1;
}

.pricing_box::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(45deg, #ff0080, #7928ca);
  z-index: -1;
  border-radius: 25px;
  filter: blur(10px);
  opacity: 0.5;
}

/* ✨ Gradient text effect for hero title */
.hero_title {
  background: linear-gradient(to right, #ff512f, #dd2476);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 🟡 Gradient footer text */
.footer {
  background: linear-gradient(to right, #434343, #000000);
  color: white;
  padding: 1rem;
  border-radius: 10px;
}
