/* --------------------
   MC Jonah Page Styles
-----------------------*/

.mc-hero {
  position: relative;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  padding: 6rem 2rem 8rem; /* bottom extra space for floating card */
  color: #fff;
}

.mc-hero .container.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
}

/* Left Column - Text */
.hero-text .tag {
  display: inline-block;
  background: #ff3b3f;
  color: #fff;
  font-size: 0.85rem;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-text h1 span {
  color: #ffd700; /* accent color */
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 500px;
  color: #f1f1f1;
}

/* Hero Buttons */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: #fff;
  color: #007bff;
}

.btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #007bff;
  transform: translateY(-2px);
}
/* Hero Social Links */
.hero-social {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.hero-social a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 1.1rem;
  color: #fff;
  background: #007bff; /* default brand color */
  transition: all 0.3s ease;
}

.hero-social a:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* Optional: platform-specific colors */
.hero-social a:nth-child(1) {
  background: #1877f2;
} /* Facebook */
.hero-social a:nth-child(2) {
  background: #e4405f;
} /* Instagram */
.hero-social a:nth-child(3) {
  background: #0077b5;
} /* LinkedIn */
.hero-social a:nth-child(4) {
  background: #000000;
} /* TikTok */

/* Right Column - Image */
.hero-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: block;
  margin-left: auto;
}

/* Floating Stat Card */
.floating-card {
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #333;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  animation: floatUp 1s ease-out;
}

.floating-card i {
  font-size: 2rem;
  color: #ff3b3f;
}

.floating-card h4 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
}

.floating-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #666;
}

/* Animation */
@keyframes floatUp {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .mc-hero .container.hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    order: 2;
  }

  .hero-image {
    order: 1;
    display: flex;
    justify-content: center;
  }

  .hero-text p {
    margin: 0 auto 2rem;
  }

  .hero-image img {
    margin: 0 auto;
  }

  .floating-card {
    bottom: -4rem;
  }
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}
/* About MC Jonah Section */
.about-mc {
  padding: 80px 20px;
  background: #fff;
  color: #333;
}

.about-mc .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-mc h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 30px;
  font-family: "Playfair Display", serif;
  color: #0056b3;
}

.about-mc .intro {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #555;
}

.about-mc p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

/* Left Column */
.about-col h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #007bff;
}

.check-list,
.lang-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.check-list li,
.lang-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  font-size: 1rem;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #28a745;
}

.lang-list li::before {
  content: "🌐";
  position: absolute;
  left: 0;
  color: #007bff;
}

/* Right Column - Event Cards */
.event-card {
  background: #f9f9f9;
  padding: 20px;
  border-left: 5px solid #007bff;
  border-radius: 6px;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.event-card h4 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #0056b3;
}

.event-card .meta {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-mc h2 {
    font-size: 2.2rem;
  }
}
