@charset "UTF-8";

/* ===== Root & Base ===== */
:root {
  --main-color: #820000;
  --hover-color: #660000;
  --bg-light: #f6f4f8;
  --text-color: #333;
  --font-main: system-ui, sans-serif;
}

body {
  font-family: var(--font-main);
  margin: 0;
  padding: 0;
  color: var(--text-color);
  background-color: #fff;
}

a {
  color: var(--main-color);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.hidden {
  display: none !important;
}

/* ===== Header ===== */
.main-header {
  background-color: #fefefe;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
}

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

.logo {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--main-color);
  margin-right: 24px;
}

.main-nav {
  display: flex;
  gap: 20px;
}

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

.main-nav a:hover {
  color: var(--main-color);
}

.nav-cta {
  max-width: none;
  width: auto !important;
  padding: 6px 14px;
  font-size: 0.9em;
  line-height: 1;
  border-radius: 6px;
}

/* ===== Mobile Nav ===== */
.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

#menu-toggle {
  display: none;
}

@media (max-width: 700px) {
  .menu-icon {
    display: block;
  }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    margin-top: 10px;
  }

  #menu-toggle:checked + .menu-icon + .main-nav {
    display: flex;
  }

  .nav-cta {
    display: none;
  }
}

/* ===== Hero Section ===== */
.hero {
  text-align: center;
  padding: 60px 20px 40px;
  background-color: #fff;
  color: var(--text-color);
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 30px;
  font-weight: 700;
}

.hero p {
  font-size: 1.2em;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

.hero-buttons a {
  display: inline-block;
  margin: 0 10px;
  padding: 14px 26px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1em;
  transition: background 0.2s ease;
}


/* ===== Buttons ===== */
.cta-button,
.cta-secondary,
button {
  font-size: 1em;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: background 0.2s ease;
}

.cta-button {
  background-color: var(--main-color);
  color: white;
}

.cta-button:hover {
  background-color: var(--hover-color);
}

.cta-button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}

.cta-button-group a {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1em;
  text-align: center;
  text-decoration: none;
  min-width: 220px;
}

.cta-secondary {
  background: transparent;
  color: var(--main-color);
  border: 2px solid var(--main-color);
}

.cta-secondary:hover {
  background-color: var(--main-color);
  color: white;
}

/* ===== Footer ===== */
.main-footer {
  background-color: var(--bg-light);
  padding: 40px 20px;
  text-align: center;
  font-size: 0.95em;
  color: var(--text-color);
}

/* ===== Sections ===== */
.program-overview {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 20px auto 30px auto;
  padding: 0 20px;
  max-width: 1000px;
}

.program-overview h1 {
  text-align: center;
  margin-top: 20px; /* Add or increase this */
  margin-bottom: 10px;
  font-size: 2em;
  color: #820000;
}

.program-box {
  background-color: #f6f4f8;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  margin: 20px;
  flex: 1 1 280px;
  max-width: 300px;
  text-align: center;
}

.program-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--main-color);
}

.program-box p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-color);
}

.about-roxana {
  max-width: 700px;
  margin: 60px auto 40px auto;
  padding: 0 20px;
  text-align: center;
}

.about-roxana h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: var(--main-color);
}

.about-roxana p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text-color);
}

.quiz-section {
  background-color: #f9f7fb;
  padding: 80px 20px;
  text-align: center;
}

.quiz-section h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: var(--main-color);
}

.quiz-section p {
  font-size: 1.1em;
  max-width: 600px;
  margin: 0 auto 30px;
  color: var(--text-color);
}

.testimonials-section {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 2em;
  margin-bottom: 40px;
  color: var(--main-color);
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.testimonial {
  background-color: #f6f4f8;
  border-radius: 8px;
  padding: 30px 20px;
  max-width: 300px;
  font-size: 1em;
  color: var(--text-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial span {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: var(--main-color);
}

.cta-section {
  text-align: center;
  padding: 20px 20px 30px;
  background-color: #fefefe;
}

.cta-section h2 {
  font-size: 2em;
  color: var(--main-color);
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
#mc_embed_signup {
  background: #fff;
  font: 14px Helvetica, Arial, sans-serif;
  width: 100%;
  max-width: 600px;
  margin: 40px auto;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

#mc_embed_signup h2 {
  color: #820000;
  text-align: center;
}

#mc_embed_signup label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

#mc_embed_signup input[type="text"],
#mc_embed_signup input[type="email"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

#mc_embed_signup input[type="checkbox"] {
  display: inline-block;
  width: auto;
  margin-right: 10px;
}

#mc_embed_signup .button {
  background-color: #820000;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 12px 20px;
  cursor: pointer;
  width: 100%;
}
/* ===== Blog List Styling ===== */
.program-detail h1 {
  margin-top: 40px;
  font-size: 2.2em;
  margin-bottom: 10px;
  color: #820000;
}

.program-detail p {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.program-detail ul {
  list-style-type: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
}

.program-detail ul li {
  background-color: #f9f7fb;
  margin-bottom: 12px;
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: background 0.2s ease;
}

.program-detail ul li:hover {
  background-color: #f3edf4;
}

.program-detail ul li a {
  text-decoration: none;
  color: #820000;
  font-weight: bold;
  font-size: 1.1em;
  display: block;
}

.program-detail ul li a:hover {
  color: #660000;
}
.program-detail {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 20px; /* ✅ Add this if missing or increase slightly if it's already there */
  text-align: left;
}
.social-media {
  display: flex;
  gap: 32px; /* More spacing */
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 16px;
}

.social-media img {
  height: 32px;
  width: auto; /* Keeps logo proportions */
  transition: transform 0.2s ease;
}

.social-media a:hover img {
  transform: scale(1.2);
}

.cert-badges {
  margin: 30px auto;
  max-width: 1000px;
  padding: 20px;
  text-align: center;
}

.cert-badges h2 {
  font-size: 1.8rem;
  color: var(--main-color, #820000);
  margin-bottom: 30px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.badge-row img {
  height: 80px;
  max-width: 120px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.badge-row img:hover {
  transform: scale(1.05);
}

.badge-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  text-align: center;
}

.cert-item {
  max-width: 140px;
}

.cert-item img {
  height: 80px;
  object-fit: contain;
  margin-bottom: 10px;
  transition: transform 0.2s ease;
}

.cert-item img:hover {
  transform: scale(1.05);
}

.cert-item p {
  font-size: 0.95rem;
  margin: 0;
  color: #333;
}

.roxana-photo {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.subscribed-message {
  color: #820000;  /* dark red or use #2c6b2e for dark green */
  font-weight: bold;
  font-size: 1.1em;
  text-align: center;
  margin-top: 20px;
}

.comparison-table {
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  border-collapse: collapse;
  font-size: 1rem;
}

.comparison-table th,
.comparison-table td {
  border: 1px solid #ccc;
  padding: 12px 16px;
  text-align: center;
}

.comparison-table th {
  background-color: #f9f9f9;
  font-weight: bold;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: bold;
}

.centered {
  text-align: center;
  margin-top: 30px;
}

.blog-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-list ul {
  list-style: none;
  padding: 0;
}

.blog-list li {
  background: #f7f3f8;
  padding: 18px 24px;
  border-radius: 10px;
  margin-bottom: 16px;
  transition: transform 0.2s ease;
}

.blog-list li:hover {
  border: thin solid #820000;
  transform: none;
  padding: 17px 23px;
}

.blog-list a {
  font-weight: bold;
  color: #820000;
  text-decoration: none;
}

/* ===== Contact Form ===== */
form#contactForm {
  max-width: 600px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form#contactForm label {
  font-weight: bold;
  font-size: 1em;
  margin-top: 10px;
}

form#contactForm input[type="text"],
form#contactForm input[type="email"],
form#contactForm textarea {
  font-size: 1em;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
}

form#contactForm textarea {
  resize: vertical;
}

form#contactForm button[type="submit"] {
  align-self: flex-start;
  background-color: var(--main-color);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s ease;
}

form#contactForm button[type="submit"]:hover {
  background-color: var(--hover-color);
}

@media (max-width: 600px) {
  .hero-buttons a {
    display: block;
    margin: 20px auto;
    width: 90%; /* Optional: makes them look better stacked */
    text-align: center;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons a {
    flex: unset;
    width: auto;
    min-width: 220px;
    margin: 8px 0;
  }
	.cta-button-group {
    flex-direction: column;
    align-items: center;
  }

  .cta-button-group a {
    width: auto;
    min-width: 220px;
  }
}

@media (max-width: 500px) {
  .main-footer {
    padding: 5px 10px;
	margin-top: 20px;
  }

  .social-media {
    flex-wrap: wrap;
    gap: 16px;
    overflow-x: hidden;
    justify-content: center;
  }

  body {
    overflow-x: hidden;
  }
  .hero {
	padding-top: 20px;
	padding-bottom: 10px;
	}
	.program-overview {
	  margin-top: 0px;
	}

	.program-overview h1 {
	  margin-top: 10px; /* Add or increase this */
	}

	.program-box {
	  padding: 30px 20px;
	  margin: 20px;
	}
}
/* === Button Consistency Fix === */
.hero-buttons,
.cta-button-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.hero-buttons a,
.cta-button-group a,
.cta-button,
.cta-secondary,
button {
  max-width: 280px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  box-sizing: border-box;
}
.program-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding: 20px 0;
}

.program-card {
  flex: 1 1 300px;
  background: #f9f7fb;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.program-card h3 {
  color: #820000;
  margin-bottom: 10px;
}

.program-card p {
  font-size: 1em;
  margin: 8px 0;
}

.program-card .cta-button {
  display: inline-block;
  margin-top: 10px;
}


