/* Base Styles */
:root {
  --scout-brown: #8B5A2B;
  --scout-darkBrown: #5E3A1E;
  --scout-beige: #F5F5DC;
  --scout-cream: #FFFDD0;
  --scout-green: #4B7F52;
  --scout-yellow: #E5B80B;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f8f8f8;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background-color: var(--scout-darkBrown);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid currentColor;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Utility Classes */
.text-white { color: white; }
.text-center { text-align: center; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-12 { margin-top: 3rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 0.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }
.max-w-3xl { max-width: 48rem; }
.relative { position: relative; }
.absolute { position: absolute; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }

/* Animations */
.animate-fade-in { animation: fadeIn 1s ease forwards; }
.animate-slide-in { animation: slideIn 1s ease forwards; }
.animate-zoom-in { animation: zoomIn 0.5s ease forwards; }
.animate-bounce { animation: bounce 2s infinite; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(-25%); }
  50% { transform: translateY(0); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar:not(.scrolled) {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: transparent;
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text {
  font-weight: 700;
  font-size: 1.125rem;
  transition: color 0.3s ease;
}

.navbar.scrolled .logo-text {
  color: var(--scout-brown);
}

.navbar:not(.scrolled) .logo-text {
  color: white;
}

.nav-desktop {
  display: none;
}

.nav-mobile-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.375rem;
  transition: background-color 0.3s ease;
}

.nav-mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 0.5rem;
  animation: fadeIn 0.3s ease forwards;
}

.nav-mobile-menu.show {
  display: block;
}

.nav-mobile-menu a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  color: var(--scout-brown);
  transition: background-color 0.3s ease;
  border-radius: 0.375rem;
}

.nav-mobile-menu a:hover {
  background-color: rgba(139, 90, 43, 0.1);
}

.nav-link {
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.navbar.scrolled .nav-link {
  color: var(--scout-brown);
}

.navbar:not(.scrolled) .nav-link {
  color: white;
}

.nav-link:hover {
  background-color: rgba(139, 90, 43, 0.1);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1501854140801-50d01698950b');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: white;
  padding: 0 1rem;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(139, 90, 43, 0.9);
  color: white;
  font-size: 0.875rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
  animation: fadeIn 1s ease forwards;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.hero-title span {
  color: var(--scout-cream);
}

.hero-description {
  font-size: 1rem;
  max-width: 48rem;
  margin: 0 auto 2rem;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  animation: bounce 2s infinite;
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background-color: var(--scout-beige);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  background-color: rgba(139, 90, 43, 0.1);
  color: var(--scout-brown);
  font-size: 0.875rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--scout-brown);
  margin-bottom: 1.5rem;
}

.section-divider {
  width: 6rem;
  height: 0.25rem;
  background-color: var(--scout-brown);
  margin: 1.5rem auto 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-text {
  order: 2;
}

.about-image {
  order: 1;
  position: relative;
  height: 400px;
}

.about-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 75%;
  background-color: rgba(75, 127, 82, 0.2);
  border-radius: 0.5rem;
}

.about-image-main {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 75%;
  height: 75%;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.about-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--scout-darkBrown);
  margin-bottom: 1.5rem;
}

.about-description {
  color: rgba(94, 58, 30, 0.8);
  margin-bottom: 1.5rem;
}

.about-vision {
  margin-top: 1rem;
}

.about-vision-title, .about-mission-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--scout-darkBrown);
  margin-bottom: 1rem;
}

.about-vision-text {
  color: rgba(94, 58, 30, 0.8);
  font-style: italic;
}

.about-mission-list {
  list-style-type: disc;
  list-style-position: inside;
  color: rgba(94, 58, 30, 0.8);
}

.about-mission-list li {
  margin-bottom: 0.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 5rem;
}

.value-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.value-icon-container {
  background-color: rgba(139, 90, 43, 0.1);
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.value-icon {
  color: var(--scout-brown);
  font-size: 1.5rem;
}

.value-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--scout-brown);
  text-align: center;
  margin-bottom: 0.5rem;
}

.value-description {
  color: rgba(94, 58, 30, 0.7);
  text-align: center;
}

/* Activities Section */
.activities-section {
  padding: 5rem 0;
  background-color: white;
}

.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slider-item {
  min-width: 100%;
}

.slider-image-container {
  position: relative;
  height: 500px;
}

.slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.slider-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2rem;
  color: white;
  width: 100%;
}

.slider-badge {
  display: inline-block;
  background-color: var(--scout-green);
  color: white;
  font-size: 0.875rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.slider-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.slider-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  max-width: 32rem;
}

.slider-metadata {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.slider-metadata-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s;
  z-index: 10;
}

.slider-nav:hover {
  background-color: white;
}

.slider-nav.prev {
  left: 1rem;
}

.slider-nav.next {
  right: 1rem;
}

.slider-nav-icon {
  font-size: 1.5rem;
  color: var(--scout-brown);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.slider-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: rgba(122, 79, 47, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot.active {
  width: 2rem;
  border-radius: 9999px;
  background-color: var(--scout-brown);
}

/* Schedule Section */
.schedule-section {
  padding: 80px 0;
  background-color: var(--scout-lightGray);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.event-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

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

.event-card-body {
  padding: 1.5rem;
  flex-grow: 1;
  min-height: 200px; /* Added for consistent card height */
  text-align: left; /* Ensure text is left-aligned */
}

.event-type {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.event-type-rutin {
  background-color: rgba(75, 127, 82, 0.1);
  color: var(--scout-green);
}

.event-type-khusus {
  background-color: rgba(255, 165, 0, 0.1);
  color: orange;
}

.event-type-lomba {
  background-color: rgba(0, 123, 255, 0.1);
  color: #007bff;
}

.event-type-sosial {
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.event-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--scout-darkBrown);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.event-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--scout-brown);
  font-size: 0.95rem;
}

.event-details i {
  margin-right: 0.5rem;
  color: var(--scout-green);
}

.event-description {
  color: var(--scout-darkBrown);
  line-height: 1.6;
  font-size: 0.95rem;
}

.event-card-footer {
  padding: 1.5rem;
  border-top: 1px solid #eee;
  text-align: right;
}

.event-card-footer a {
  color: var(--scout-green);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.event-card-footer a:hover {
  color: var(--scout-darkGreen);
}

.no-events-message {
  text-align: center;
  padding: 3rem;
  background-color: #f8f8f8;
  border-radius: 12px;
  color: var(--scout-brown);
  font-size: 1.1rem;
  font-style: italic;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background-color: white;
}

.faq-container {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: var(--scout-brown);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  text-align: left;
  background-color: white;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease;
}

.faq-item.active .faq-question {
  background-color: rgba(139, 90, 43, 0.05);
}

.faq-question-text {
  font-weight: 500;
  color: var(--scout-darkBrown);
  display: flex;
  align-items: center;
}

.faq-question-text i {
  color: var(--scout-brown);
  margin-right: 0.75rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1rem;
}

.faq-answer-text {
  color: rgba(94, 58, 30, 0.7);
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background-color: var(--scout-brown);
  color: white;
}

.cta-container {
  display: flex;
  flex-direction: column;
}

.cta-content {
  margin-bottom: 2rem;
}

.cta-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.875rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.cta-button-primary {
  background-color: white;
  color: var(--scout-brown);
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease;
}

.cta-button-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.cta-button-primary i {
  margin-left: 0.5rem;
}

.cta-button-outline {
  background-color: transparent;
  border: 1px solid white;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cta-button-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.benefits-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.benefits-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
}

.benefit-icon {
  background-color: white;
  color: var(--scout-brown);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 0.5rem;
}

.footer-logo-text {
  font-weight: 700;
  font-size: 1.125rem;
}

.footer-about {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  background-color: rgba(255, 255, 255, 0.1);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.footer-social-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.footer-heading {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: white;
}

.footer-contact-item {
  display: flex;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  color: var(--scout-cream);
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-link {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-bottom-link:hover {
  color: white;
}

/* Animations */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-slide-in {
  animation: slideIn 0.5s ease forwards;
}

.animate-zoom-in {
  animation: zoomIn 0.4s ease forwards;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .nav-mobile-toggle {
    display: block;
  }

  .hero-section {
    padding: 4rem 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image-bg {
    display: none;
  }

  .cta-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-buttons {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (min-width: 640px) {
  .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .schedule-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Improved Mobile Responsiveness for Activities */
@media (max-width: 768px) {
  .slider-image-container {
    height: 400px;
  }
  
  .slider-title {
    font-size: 1.5rem;
  }
  
  .slider-description {
    font-size: 0.875rem;
  }
  
  .slider-metadata {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .slider-nav {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .slider-nav.prev {
    left: 0.5rem;
  }
  
  .slider-nav.next {
    right: 0.5rem;
  }
  
  .slider-content {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .slider-image-container {
    height: 350px;
  }
  
  .slider-title {
    font-size: 1.25rem;
  }
  
  .slider-description {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }
  
  .slider-badge {
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
  }
  
  .slider-nav {
    width: 2rem;
    height: 2rem;
  }
  
  .slider-content {
    padding: 1rem;
  }
}