/* home-enhanced.css */

main {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.9;
  text-align: center;
  color: #222;
}

body.dark main {
  color: #eee;
}

section {
  scroll-margin-top: 80px;
}

.section-alt {
  background-color: #f5f7fa;
}

body.dark .section-alt {
  background-color: #1a1a1a;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}

.hero {
  padding: 100px 24px 80px;
  color: white;
  background: linear-gradient(to bottom right, #141429, #1b1b3a);
}

body.dark .hero {
  background: linear-gradient(to bottom right, #141429, #1b1b3a);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  background: #e74c3c;
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-primary:hover {
  background: #c0392b;
}

.features {
  list-style: none;
  padding: 0;
  margin-top: 24px;
  text-align: left;
  display: inline-block;
}

.features li {
  font-size: 1.2rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  justify-content: center;
}

.card {
  flex: 1 1 280px;
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  font-size: 1.1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

body.dark .card {
  background: #222;
  color: #f1f1f1;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

blockquote {
  background: #eef2f7;
  border-left: 5px solid #1976d2;
  margin: 32px auto;
  padding: 20px 28px;
  border-radius: 12px;
  font-size: 1.1rem;
  max-width: 700px;
  text-align: left;
}

body.dark blockquote {
  background: #222;
  border-left-color: #64b5f6;
}

blockquote footer {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #666;
}

#countdown-timer {
  font-size: 2rem;
  margin-top: 20px;
  font-weight: 700;
}

#contact ul {
  list-style: none;
  padding: 0;
  font-size: 1.15rem;
}

#contact li {
  margin-bottom: 16px;
}

#contact a {
  color: #1976d2;
  text-decoration: none;
}

#contact a:hover {
  text-decoration: underline;
}

footer {
  background: #f1f1f1;
  color: #444;
  text-align: center;
  padding: 28px 0;
  font-size: 1rem;
}

body.dark footer {
  background: #111;
  color: #aaa;
}

@media (max-width: 768px) {
  .cards {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .btn-primary {
    font-size: 1rem;
    padding: 12px 24px;
  }
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.brand-logo {
  height: 48px;
}

.brand-name {
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
}

body.dark .brand-name {
  color: white;
}

.brand-link:hover .brand-name {
  opacity: 0.85;
}

.brand-link a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.brand-name {
  margin-right: 20px;
}

.brand-link a:hover {
  color: #1976d2; /* Adjust to your accent color */
  text-decoration: underline;
}
