/* DailyVital - Modern Red Theme Styles */

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

:root {
  --primary-red: #dc2626;
  --dark-red: #b91c1c;
  --light-red: #fef2f2;
  --text-dark: #1f2937;
  --text-gray: #6b7280;
  --white: #ffffff;
  --light-gray: #f9fafb;
  --border-gray: #e5e7eb;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation */
.header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-red);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-red);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary-red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--dark-red);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-red);
  border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
  background: var(--primary-red);
  color: var(--white);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--light-red) 0%, var(--white) 100%);
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid Layouts */
.guides-grid,
.benefits-grid,
.reviews-grid,
.articles-grid {
  display: grid;
  gap: 2rem;
  margin: 3rem 0;
}

.guides-grid,
.reviews-grid,
.articles-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.benefits-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Cards */
.guide-card,
.review-card,
.article-card,
.benefit-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.guide-card:hover,
.review-card:hover,
.article-card:hover {
  transform: translateY(-5px);
}

.guide-card h3,
.article-card h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.article-card h2 a {
  text-decoration: none;
  color: inherit;
}

.article-card h2 a:hover {
  color: var(--primary-red);
}

/* Benefits */
.benefit-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.benefit-item h3 {
  color: var(--primary-red);
  margin-bottom: 0.5rem;
}

/* Reviews */
.stars {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.review-card cite {
  font-style: normal;
  color: var(--text-gray);
  font-weight: 600;
}

/* Sections */
.guides,
.benefits,
.reviews,
.cta-block,
.contact-form-section {
  padding: 60px 0;
}

.guides {
  background: var(--light-gray);
}

.cta-block {
  background: var(--light-red);
  text-align: center;
}

.cta-block h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

/* Forms */
.contact-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--border-gray);
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-red);
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin: 3rem 0;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h3 {
  color: var(--primary-red);
  margin-bottom: 0.5rem;
}

/* About Page */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin: 3rem 0;
}

.value-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--light-gray);
  border-radius: 8px;
}

.value-item h3 {
  color: var(--primary-red);
  margin-bottom: 0.5rem;
}

/* Blog & Articles */
.blog-header,
.about-hero,
.contact-hero {
  background: var(--light-red);
  padding: 60px 0;
  text-align: center;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 20px;
}

.article-header {
  text-align: center;
  margin-bottom: 3rem;
}

.article-intro {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-top: 1rem;
}

.article-body h2 {
  color: var(--primary-red);
  margin: 2rem 0 1rem 0;
}

.article-body h3 {
  color: var(--text-dark);
  margin: 1.5rem 0 0.5rem 0;
}

.article-body ul,
.article-body ol {
  margin: 1rem 0;
  padding-left: 2rem;
}

.article-body li {
  margin-bottom: 0.5rem;
}

.article-cta,
.blog-cta,
.about-cta {
  background: var(--light-red);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 3rem 0;
}

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 20px;
}

.legal-content h1 {
  color: var(--primary-red);
  margin-bottom: 2rem;
}

.legal-content h2 {
  color: var(--text-dark);
  margin: 2rem 0 1rem 0;
}

.legal-content h3 {
  color: var(--primary-red);
  margin: 1.5rem 0 0.5rem 0;
}

.legal-cta {
  text-align: center;
  margin: 3rem 0;
  gap: 1rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* Thank You Page */
.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 20px;
  text-align: center;
}

.thank-you-message {
  background: var(--light-red);
  padding: 3rem;
  border-radius: 12px;
}

.next-steps,
.while-you-wait,
.contact-reminder {
  margin: 2rem 0;
  text-align: left;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 2rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer h3,
.footer h4 {
  color: var(--primary-red);
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-red);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    gap: 1rem;
  }

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

  .hero p {
    font-size: 1.1rem;
  }

  .contact-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .guides-grid,
  .benefits-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .legal-cta,
  .action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding: 40px 0;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
