/* REMNANT HIGHLIGHTS SECTION */
.remnant.highlights-section {
  background: #faf8f5;
  padding: 60px 20px;
  text-align: center;
  font-family: "Inter", "Poppins", sans-serif;
}

.remnant-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.remnant-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.remnant-video-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.remnant-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.remnant-video iframe:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}


/* Base styles */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

.young-adults-section {
  background: linear-gradient(to bottom right, #e0f7fa, #fff8e1);
  padding: 60px 0;
}

.ya-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

/* Left Image */
.ya-image {
  flex: 1 1 50%;
  background-image: url('../images/remns.jpg'); /* Replace with actual image path */
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

/* Right Content */
.ya-content {
  flex: 1 1 50%;
  background: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ya-content h2 {
  font-size: 2.5rem;
  color: #00796b;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
}

.ya-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ya-card {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.ya-card h3 {
  color: #004d40;
  margin-bottom: 10px;
}

.ya-card p {
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .ya-wrapper {
    flex-direction: column;
  }

  .ya-image, .ya-content {
    flex: 1 1 100%;
  }
}
