/* style.css - SmartAura Updated */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
}

body {
  background: #fefefe;
  color: #1f2937;
  line-height: 1.7;
  letter-spacing: 0.3px;
  background-color: #e6e5da;
}

section {
  padding: 3rem 2rem; /* top-bottom 48px, left-right 32px */
  max-width: 1100px;
  margin: auto;
}

section + section {
  margin-top: 3rem; /* 48px same as padding for perfect symmetry */
}



h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #111827;
}

#features {
  margin-top: 3rem; /* 48px top margin */
}

#features h2 {
  margin-bottom: 2rem;
}

/* Uniform gap between sections */
section + section {
  margin-top: 3rem;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #C96868);
  padding: 1rem 2rem;
  position:sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.logo img {
  height: 60px;
  width: auto;
  border: 2px solid black;
  border-radius: 30px;
}

.logo span {
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #ffb703;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #1f2937;
    padding: 1rem;
    border-radius: 8px;
    position: absolute;
    top: 70px;
    right: 20px;
    z-index: 999;
  }
  .nav-links.show {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}

/* Hero */
.hero {
  background: linear-gradient(to right, #9F5255);
  color: #fff;
  text-align: center;
  padding: 6rem 2rem;
  animation: fadeIn 2s ease-in;
  box-shadow: 0 10px 5px  #4a171c;
  border-radius: 0 0 30px 30px;
}

.hero-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  animation: fadeIn 1s ease-in-out;
}

.hero-logo img {
  width: 250px;
  height: auto;
  margin-bottom: 0.5rem;
  border: 2px solid black;
  border-radius: 175px;
}

.hero-logo h1 {
  font-size: 2.8rem;
  color: #fff;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-btn {
  background: #ffb703;
  color: #000;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.3s;
  display: inline-block;
}

.cta-btn:hover {
  background: #fb8500;
  color: #fff;
  transform: scale(1.05);
}

#vision, #about {
  text-align: center;
}

/* How It Works Section */
#how h2 {
  font-size: 2rem;
  color: #1f2937;
  margin-bottom: 2rem;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.1rem;
  color: #374151;
  line-height: 1.6;
}

.how-steps p {
  background-color: #f3f4f6;
  padding: 1.2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.how-steps p:hover {
  transform: translateY(-3px);
  background-color: #fff7ed;
}

.how-steps, .benefits-list, .faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: center;
}

.benefits-list li, .faq-list li {
  background: #f3f4f6;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1.05rem;
  transition: 0.3s ease-in-out;
}

.benefits-list li:hover, .faq-list li:hover {
  background: #e2e8f0;
}

#features {
  background: #f3f4f6;
  padding: 1rem;
  border-radius: 12px;
  max-width: 1000px;
  margin: auto;
  margin-top: 3rem;
}

#features ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  padding: 0;
  list-style: none;
  font-size: 1.05rem;
  color: #374151;
}

#features li {
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 3px 2px #111827;
}

.price-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}

.price-card-link {
  text-decoration: none;
  color: inherit;
}

.price-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease-in-out;
  width: 280px;
  border: 2px solid #ffb703;
  background: #fffdf2;
  text-align: center;
}

.price-card:hover {
  transform: scale(1.03);
}

.premium {
  border: 2px solid #ffb703;
  background: #fffdf2;
}

.price-card p {
  font-size: 0.95rem;
  margin: 0.5rem 0;
}

.price-card .green {
  color: #16a34a;
  font-size: 0.85rem;
}

.price-card .no-offer {
  color: #9ca3af;
  font-size: 0.85rem;
}

.badge {
  font-size: 0.8rem;
  padding: 3px 6px;
  border-radius: 4px;
  margin-left: 8px;
}

.badge.best {
  color: #e11d48;
  background-color: #ffe4e6;
}

.badge.high {
  color: #2563eb;
  background-color: #dbeafe;
}

.contact {
  background: #fffdf2;
  border-radius: 12px;
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: 3rem auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem auto;
  max-width: 1000px;
}

.contact-box {
  background: #ebe5e5;
  border-radius: 10px;
  padding: 1.2rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.contact-box p {
  margin: 0;
  font-size: 1rem;
  color: #1f2937;
}

.contact-box a {
  color: inherit;
  font-weight: 600;
  text-decoration: none;
}

.contact-box a:hover {
  color: #ffb703;
}

footer {
  background: #1f2937;
  color: #ccc;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
}

footer a {
  color: #ffb703;
  text-decoration: none;
}

@media (max-width: 600px) {
  section {
    padding: 3rem 1.2rem;
  }
  .hero-logo img {
    width: 180px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
