/* Custom styles to match the design */
:root {
  --school-green: #1b4d3e;
  --school-green-dark: #153c31;
  --school-green-light: #2a6b5a;
}

body {
  font-family: "Roboto", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.uppercase,
.font-medium,
.font-bold {
  font-family: "Montserrat", sans-serif;
}

.bg-park-red {
  background-color: rgb(22 101 52 / var(--tw-bg-opacity, 1));
}

.hover\:bg-park-red-dark:hover {
  background-color: var(--school-green-dark);
}

.border-park-red-light {
  border-color: rgba(255, 255, 255, 0.2);
}

.border-park-red {
  border-color: var(--school-green);
}

/* School Logo Styling */
.park-logo {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.05em;
}

.university-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: -2px;
}

/* Hero Swiper styles */
.heroSwiper {
  width: 100%;
  height: 700px;
  margin-top: -1px;
}

.swiper-button-next,
.swiper-button-prev,
.swiper-pagination {
  display: none !important;
}

/* Hero section styles */
.hero-section {
  height: 80vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-section h1,
.hero-section h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Mobile sidebar styles - completely rewritten */
#mobileSidebar {
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

#mobileSidebar.active {
  opacity: 1;
  pointer-events: auto;
}

#sidebarContent {
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  background-color: rgb(22 101 52 / var(--tw-bg-opacity, 1));
}

#mobileSidebar.active #sidebarContent {
  transform: translateX(0);
}

/* No-scroll for body */
body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

/* Program button hover effects */
.border-gray-600:hover {
  transition: all 0.3s ease;
}

/* Program statistics */
.text-4xl,
.text-5xl {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

/* Enhanced Responsive styles */
@media (max-width: 1024px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .heroSwiper,
  .hero-section {
    height: 700px;
  }

  .text-4xl {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .park-logo {
    font-size: 1.6rem;
  }

  .university-text {
    font-size: 0.9rem;
  }

  .heroSwiper,
  .hero-section {
    height: 700px;
  }

  .flex-wrap.justify-center.gap-2 {
    gap: 0.5rem;
  }

  .flex-wrap.justify-center.gap-2 a {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 640px) {
  .park-logo {
    font-size: 1.4rem;
  }

  .university-text {
    font-size: 0.8rem;
  }

  .heroSwiper,
  .hero-section {
    height: 700px;
  }

  .flex-wrap.justify-center.gap-2 {
    gap: 0.25rem;
  }

  .flex-wrap.justify-center.gap-2 a {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
  }

  .text-2xl {
    font-size: 1.5rem;
  }

  .text-4xl {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .heroSwiper,
  .hero-section {
    height: 700px;
  }

  .text-2xl {
    font-size: 1.25rem;
  }

  .text-4xl {
    font-size: 1.5rem;
  }

  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

/* Custom Styles */
.park-red {
  background-color: #8b0000;
}

.park-red-dark {
  background-color: #6b0000;
}

.park-red-light {
  background-color: #aa0000;
}
