@charset "UTF-8";
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Junicode", Georgia, "Times New Roman", serif;
  line-height: 1.7;
  color: #333;
  background-color: #ffffff;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 140, 0, 0.05) 1px, transparent 0);
  background-size: 20px 20px;
  opacity: 1;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Junicode", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: 1.1rem;
}

/* Utility Classes */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.section-title {
  text-align: center;
  color: #000000;
  margin-bottom: 3rem;
  position: relative;
  text-decoration: none;
}

.section-title * {
  text-decoration: none;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #000000, #ff8c00);
  margin: 1rem auto;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.dither-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(135deg, rgba(44, 90, 160, 0.1), rgba(255, 140, 0, 0.1));
}

.hero-content {
  max-width: 800px;
  padding: 0 2rem;
  z-index: 10;
  position: relative;
}

@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0px) scale(1);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  50% {
    transform: translateY(-10px) scale(1.02);
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4);
  }
}
.hero-title {
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-style: italic;
  color: #ff8c00;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #ff8c00, #e67c00);
  color: #000000;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

/* Wave Divider */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 5;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.wave-divider .shape-fill {
  fill: #ffffff;
}

/* Programs Section */
.programs {
  padding: 6rem 0;
  background: #ffffff;
  position: relative;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1400px;
  margin: 2rem auto;
}

.program-card {
  min-width: 400px; /* Adjusted for better fit in 3-column layout */
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.card-title {
  color: #000000;
  text-align: center;
  margin-bottom: 0.75rem;
  white-space: nowrap; /* Prevents wrapping */
  overflow: hidden;
  text-overflow: ellipsis; /* Shows ellipsis if text overflows */
  font-size: 1.5rem;
}

.card-subtitle {
  color: #ff8c00;
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  font-style: italic;
}

.card-description {
  margin-bottom: 2rem;
  color: #555;
}

.card-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.card-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 1.5rem;
}

.card-features li::before {
  content: "⚽";
  position: absolute;
  left: 0;
  color: #ff8c00;
}

.travel-info {
  margin-top: 1.5rem;
}

.travel-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.travel-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 1.5rem;
}

.travel-features li::before {
  content: "⚽";
  position: absolute;
  left: 0;
  color: #ff8c00;
}

.travel-info p {
  font-style: italic;
  color: #666;
  text-align: center;
  margin: 1rem 0 0 0;
}

.travel-info a {
  color: #ff8c00;
  text-decoration: none;
}

.travel-info a:hover {
  text-decoration: underline;
}

.travel-divisions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.division {
  background: rgba(0, 0, 0, 0.05);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}

.division h4 {
  color: #000000;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.division p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* Registration Section */
/* Registration Section */
.registration {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  transition: all 0.5s ease;
}

/* Registration Open State */
.registration.registration-open {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.registration.registration-open .registration-hero {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border: 2px solid transparent;
}

.registration.registration-open .registration-hero:hover {
  border-color: #ff8c00;
  transform: translateY(-5px);
}

.registration.registration-open .registration-hero h3 {
  color: #2c5aa0;
}

/* Registration Closed State */
.registration.registration-closed {
  background: linear-gradient(135deg, #f8f8f8 0%, #e9e9e9 100%);
}

.registration.registration-closed .registration-hero {
  background: linear-gradient(135deg, #f5f5f5 0%, #eeeeee 100%);
  border: 2px solid #d6d6d6;
  opacity: 0.9;
}

.registration.registration-closed .registration-hero:hover {
  border-color: #999;
  transform: translateY(-2px);
}

.registration.registration-closed .registration-hero h3 {
  color: #666;
}

.registration.registration-closed .registration-intro {
  color: #777;
}

.registration-content {
  margin-top: 2rem;
}

/* Registration Hero Section */
.registration-hero {
  text-align: center;
  margin-bottom: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.registration-hero:hover {
  border-color: #ff8c00;
  transform: translateY(-5px);
}

.registration-hero h3 {
  color: #2c5aa0;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.registration-intro {
  margin-bottom: 2rem;
  color: #555;
  font-size: 1.2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.register-button {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, #ff8c00, #e67c00);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.3);
  margin-top: 1rem;
}

.register-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

/* Registration Open Button */
.register-button.registration-open-btn {
  background: linear-gradient(135deg, #ff8c00, #e67c00);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.3);
}

.register-button.registration-open-btn:hover {
  background: linear-gradient(135deg, #e67c00, #d67000);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

/* Registration Closed Button */
.register-button.registration-closed-btn {
  background: linear-gradient(135deg, #6c757d, #5a6268);
  box-shadow: 0 6px 20px rgba(108, 117, 125, 0.3);
  opacity: 0.8;
}

.register-button.registration-closed-btn:hover {
  background: linear-gradient(135deg, #5a6268, #495057);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(108, 117, 125, 0.4);
}

/* Program Information Cards */
.registration-programs {
  margin-bottom: 4rem;
}

.registration-programs h4 {
  text-align: center;
  color: #2c5aa0;
  margin-bottom: 2rem;
  font-size: 2rem;
}

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

.program-info-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
}

.program-info-card:hover {
  border-color: #ff8c00;
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.program-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.program-info-card h5 {
  color: #2c5aa0;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.program-details {
  text-align: left;
}

.program-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff8c00;
  margin: 0 0 0.5rem 0;
}

.program-ages,
.program-deadline {
  color: #666;
  margin: 0.5rem 0;
  font-size: 1rem;
}

/* Registration Information Grid */
.registration-info {
  background: #ffffff;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.info-item {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.info-item:hover {
  border-color: #ff8c00;
  transform: translateY(-5px);
}

.info-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.info-item h5 {
  color: #2c5aa0;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.info-item ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.info-item li {
  padding: 0.5rem 0;
  color: #666;
  position: relative;
  padding-left: 1.5rem;
}

.info-item li:before {
  content: "•";
  color: #ff8c00;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.contact-item p {
  margin: 0.5rem 0;
  color: #666;
}

.contact-item a {
  color: #2c5aa0;
  text-decoration: none;
  font-weight: 600;
}

.contact-item a:hover {
  color: #ff8c00;
  text-decoration: underline;
}

/* Responsive Design for Registration */
@media (max-width: 768px) {
  .registration {
    padding: 4rem 0;
  }
  .registration-hero {
    padding: 2rem 1.5rem;
    margin-bottom: 3rem;
  }
  .registration-hero h3 {
    font-size: 2rem;
  }
  .programs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .program-info-card {
    padding: 2rem;
  }
  .registration-info {
    padding: 2rem;
  }
  .info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .info-item {
    padding: 1.5rem;
  }
}
@media (max-width: 480px) {
  .registration-hero {
    padding: 1.5rem 1rem;
  }
  .registration-hero h3 {
    font-size: 1.8rem;
  }
  .registration-intro {
    font-size: 1.1rem;
  }
  .register-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    width: 100%;
  }
  .program-info-card {
    padding: 1.5rem;
  }
  .registration-info {
    padding: 1.5rem;
  }
  .info-item {
    padding: 1rem;
  }
}
/* About Section */
.about {
  padding: 6rem 0;
  background: #ffffff;
  position: relative;
}

.about-content {
  margin-top: 2rem;
}

.about-story {
  margin-bottom: 4rem;
}

.about-story h3 {
  color: #000000;
  margin-bottom: 1.5rem;
}

.about-values {
  margin-bottom: 4rem;
}

.about-values h3 {
  color: #000000;
  margin-bottom: 2rem;
}

.about-memberships {
  margin-bottom: 4rem;
}

.about-memberships h3 {
  color: #000000;
  margin-bottom: 2rem;
}

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

.membership-item {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(255, 140, 0, 0.05));
  border-radius: 10px;
  border: 2px solid rgba(255, 140, 0, 0.2);
  transition: transform 0.3s ease;
}

.membership-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 140, 0, 0.4);
}

.membership-item h4 {
  color: #ff8c00;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.membership-item p {
  color: #333;
  font-weight: 500;
  margin: 0;
  font-size: 1.1rem;
}

.about-board {
  margin-bottom: 4rem;
}

.about-board h3 {
  color: #000000;
  margin-bottom: 2rem;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.board-member {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.board-member:hover {
  transform: translateY(-3px);
}

.board-member h4 {
  color: #ff8c00;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.board-member p {
  color: #333;
  font-weight: 500;
  margin: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-3px);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.value-item h4 {
  color: #000000;
  margin-bottom: 1rem;
}

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

.testimonials h3 {
  color: #000000;
  margin-bottom: 2rem;
}

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

.testimonial {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #ff8c00;
  font-style: italic;
}

.testimonial p {
  color: #555;
  margin-bottom: 1rem;
}

.testimonial cite {
  color: #000000;
  font-weight: 600;
  font-style: normal;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), rgba(255, 140, 0, 0.05));
  position: relative;
}

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
  text-align: center;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.contact-info h3 {
  color: #000000;
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
  padding: 2rem 1.5rem;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  flex-basis: 250px;
  max-width: 280px;
  min-width: 250px;
}

.contact-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2c5aa0, #ff8c00);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 140, 0, 0.15);
  border-color: rgba(255, 140, 0, 0.2);
}

.contact-item:hover::before {
  opacity: 1;
}

.contact-icon {
  font-size: 2rem;
  margin-right: 1rem;
  color: #ff8c00;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 2rem;
  height: 2rem;
  color: #ff8c00;
}

.contact-item h4 {
  color: #2c5aa0;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
}

.contact-item p {
  color: #555;
  margin: 0;
  line-height: 1.6;
  font-size: 1rem;
  text-align: center;
}

.contact-item a {
  color: #2c5aa0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #ff8c00;
  text-decoration: underline;
}

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #000000;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e1e5e9;
  border-radius: 5px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff8c00;
}

.submit-button {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #ff8c00, #e67c00);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

/* Footer */
.footer {
  background: #000000;
  color: white;
  padding: 3rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-family: "Junicode";
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff8c00;
}

.footer-info p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  color: #ccc;
}

/* Registration Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1005;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  height: 100vh; /* Ensure full viewport height on mobile */
  height: 100dvh; /* Use dynamic viewport height when supported */
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

.modal-content {
  background-color: #ffffff;
  margin: 5% auto;
  padding: 2rem;
  border: none;
  border-radius: 15px;
  width: 90%;
  max-width: 1200px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: modalSlideIn 0.3s ease-out;
  position: relative;
  overflow: visible; /* Ensure close button isn't clipped */
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.close {
  color: #666;
  float: right;
  font-size: 32px;
  font-weight: bold;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-tap-highlight-color: transparent; /* Remove tap highlight on iOS */
  z-index: 1000; /* Ensure it's above other content */
  pointer-events: auto; /* Ensure it can be clicked */
  background: rgba(255, 255, 255, 0.9); /* More visible background */
  border: 2px solid rgba(170, 170, 170, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.close:hover,
.close:focus {
  color: #fff;
  background: #ff4757;
  border-color: #ff4757;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3);
}

.modal-content h2 {
  color: #2c5aa0;
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  font-family: "Junicode", serif;
  font-weight: 700;
  position: relative;
}

.modal-content h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ff8c00, #ff6b35);
  border-radius: 2px;
}

.modal-content > p {
  text-align: center;
  margin-bottom: 2rem;
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.program-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.program-option {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px; /* Ensure consistent height */
}

.program-option:hover {
  border-color: #ff8c00;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 140, 0, 0.1);
}

.program-option h3 {
  color: #2c5aa0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.program-option p {
  margin-bottom: 1rem;
  color: #555;
  line-height: 1.6;
}

.program-button {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: auto; /* Push buttons to bottom */
  font-size: 1rem;
  border: none;
  cursor: pointer;
  min-height: 44px; /* Ensure minimum touch target size */
  width: 100%; /* Make buttons full width of container */
  box-sizing: border-box;
  align-self: stretch; /* Stretch to fill available width */
}

/* Open State Buttons */
.program-button.open-state {
  opacity: 1;
  cursor: pointer;
}

.program-button.open-state:hover {
  transform: translateY(-2px);
}

/* Closed State Buttons */
.program-button.closed-state {
  background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%) !important;
  color: #ffffff !important;
  opacity: 0.7;
  cursor: not-allowed;
}

.program-button.closed-state:hover {
  transform: none !important;
  box-shadow: none !important;
  background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%) !important;
}

/* Program-specific styling for open state */
.rec-button.open-state {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
}

.rec-button.open-state:hover {
  background: linear-gradient(135deg, #218838 0%, #1ca085 100%);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.travel-button.open-state {
  background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
  color: white;
}

.travel-button.open-state:hover {
  background: linear-gradient(135deg, #e67e00 0%, #ff9500 100%);
  box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.sailors-button.open-state {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
}

.sailors-button.open-state:hover {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

/* Legacy support - keeping original button styles for backwards compatibility */
.rec-button {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
}

.rec-button:hover {
  background: linear-gradient(135deg, #218838 0%, #1ca085 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.travel-button {
  background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
  color: white;
}

.travel-button:hover {
  background: linear-gradient(135deg, #e67e00 0%, #ff9500 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.sailors-button {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
}

.sailors-button:hover {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

/* Mobile menu backdrop overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 80px, rgba(0, 0, 0, 0.6) 120px, rgba(0, 0, 0, 0.7) 100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 998;
  /* Gradient overlay that doesn't affect the navbar area */
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modern Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: linear-gradient(145deg, rgba(15, 15, 15, 0.98) 0%, rgba(25, 25, 25, 0.95) 50%, rgba(35, 35, 35, 0.98) 100%);
  border-left: 1px solid rgba(255, 140, 0, 0.2);
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.8), inset 1px 0 0 rgba(255, 140, 0, 0.1), 0 0 30px rgba(255, 140, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1004;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%) scale(0.9);
  opacity: 0;
  /* Optimize text rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.mobile-menu.active {
  right: 0;
  transform: translateX(0) scale(1);
  opacity: 1;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid rgba(255, 140, 0, 0.1);
  background: rgba(0, 0, 0, 0.3);
  position: relative;
  /* Prevent text blur */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translateZ(0);
  will-change: transform;
}

.mobile-menu-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff8c00, transparent);
  transition: all 0.6s ease;
  transform: translateX(-50%);
}

.mobile-menu.active .mobile-menu-header::after {
  width: 80%;
}

.mobile-menu-title {
  color: #ff8c00;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease 0.2s;
  /* Fix blurred text */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.mobile-menu.active .mobile-menu-title {
  opacity: 1;
  transform: translateY(0) translateZ(0);
}

.mobile-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  opacity: 0;
  transform: rotate(-90deg) scale(0.8);
}

.mobile-menu.active .mobile-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
  transition-delay: 0.2s;
}

.mobile-close:hover {
  background: rgba(255, 140, 0, 0.1);
  color: #ff8c00;
  transform: rotate(90deg) scale(1.1);
}

.mobile-close:focus {
  outline: 2px solid #ff8c00;
  outline-offset: 2px;
}

.mobile-close span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.mobile-close span:first-child {
  transform: rotate(45deg);
}

.mobile-close span:last-child {
  transform: rotate(-45deg);
}

.mobile-nav {
  padding: 1rem 0;
  /* Optimize text rendering for all nav links */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.mobile-nav-link {
  display: block;
  padding: 1.2rem 2rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  opacity: 0;
  transform: translateX(30px);
  animation-fill-mode: forwards;
  /* Ensure crisp text rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
}

.mobile-menu.active .mobile-nav-link {
  opacity: 1;
  transform: translateX(0);
  animation: slideInLeft 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.mobile-menu.active .mobile-nav-link:nth-child(1) {
  animation-delay: 0.1s;
}

.mobile-menu.active .mobile-nav-link:nth-child(2) {
  animation-delay: 0.15s;
}

.mobile-menu.active .mobile-nav-link:nth-child(3) {
  animation-delay: 0.2s;
}

.mobile-menu.active .mobile-nav-link:nth-child(4) {
  animation-delay: 0.25s;
}

.mobile-menu.active .mobile-nav-link:nth-child(5) {
  animation-delay: 0.3s;
}

.mobile-nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(90deg, #ff8c00, rgba(255, 140, 0, 0.1));
  transition: width 0.3s ease;
}

.mobile-nav-link:hover {
  color: #ff8c00;
  background: rgba(255, 140, 0, 0.05);
  padding-left: 2.5rem;
}

.mobile-nav-link:hover::before {
  width: 4px;
}

.mobile-nav-link:active {
  background: rgba(255, 140, 0, 0.1);
  transform: scale(0.98);
}

.mobile-nav-link:active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ripple 0.6s ease-out;
}

@keyframes ripple {
  to {
    width: 300px;
    height: 300px;
  }
}
/* Improved menu performance on iOS */
.nav-menu {
  -webkit-overflow-scrolling: touch;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Better touch targets */
@media (max-width: 1050px) {
  .hamburger {
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
/* Responsive Design */
/* Large desktop - keep 3 columns with reduced gap */
@media (max-width: 1400px) {
  .programs-grid {
    gap: 2rem;
    max-width: 1200px;
  }
  .program-card {
    min-width: 350px;
  }
}
/* Medium desktop - reduce gap for tighter layouts */
@media (max-width: 1200px) {
  .programs-grid {
    gap: 1.5rem;
    max-width: 1000px;
  }
  .program-card {
    min-width: 300px;
  }
  .program-options {
    gap: 1.5rem;
  }
}
/* Small desktop - switch to 2 columns */
@media (max-width: 1024px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
  }
  .program-card {
    min-width: 350px;
  }
}
/* Tablet breakpoint - single column */
@media (max-width: 768px) {
  .programs-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .program-card {
    min-width: unset;
  }
  .program-options {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 1050px) {
  .hamburger {
    display: flex;
  }
  .nav-menu {
    display: none;
  }
  .nav-container {
    padding: 0 1.5rem;
  }
}
@media (max-width: 768px) {
  .nav-logo {
    font-size: 1.3rem;
  }
  .logo-icon img {
    width: 40px;
    height: 40px;
  }
  .nav-link:hover::before {
    width: 4px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .container {
    padding: 0 1rem;
  }
  .registration-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-grid {
    justify-content: center;
    gap: 1.5rem;
    max-width: 100%;
  }
  .contact-item {
    padding: 1.5rem;
    flex-basis: 280px;
    max-width: none;
    min-width: 280px;
  }
  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
    gap: 1.5rem;
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  /* Modal responsive styles for tablets */
  .modal-content {
    margin: 8% auto;
    padding: 2rem;
    width: 85%;
    max-width: 900px;
  }
  .modal-content h2 {
    font-size: 2rem;
  }
  .modal-content h2::after {
    width: 50px;
    height: 2px;
    bottom: -6px;
  }
  .program-options {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .program-option {
    padding: 1.5rem;
    min-height: 260px; /* Medium size for tablets */
  }
  .close {
    font-size: 24px;
    top: 0.8rem;
    right: 1.2rem;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  .program-card {
    padding: 1.5rem;
  }
  .contact-form {
    padding: 1.5rem;
  }
  .travel-info {
    grid-template-columns: 1fr;
  }
  .nav-logo {
    font-size: 1.2rem;
  }
  .logo-text {
    display: none;
  }
  .logo-icon img {
    width: 80px;
    height: 80px;
  }
  /* Modal responsive styles for mobile phones */
  .modal-content {
    margin: 2% auto;
    padding: 1.5rem;
    width: 95%;
    border-radius: 10px;
    max-height: 95vh;
    overflow-y: auto;
  }
  .modal-content h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  .modal-content h2::after {
    width: 40px;
    height: 2px;
    bottom: -6px;
  }
  .modal-content > p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .program-options {
    gap: 1.2rem;
    margin-top: 1rem;
  }
  .program-option {
    padding: 1.2rem;
    min-height: 250px; /* Slightly smaller for mobile but still consistent */
  }
  .program-option h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }
  .program-option p {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }
  .program-button {
    padding: 14px 20px;
    font-size: 1rem;
    margin-top: auto; /* Push buttons to bottom */
    width: 100%;
    display: block;
    align-self: stretch; /* Stretch to fill available width */
  }
  .close {
    font-size: 20px;
    top: 0.5rem;
    right: 1rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
  }
}
/* Sponsorship Contact Styles */
.sponsorship-contact {
  margin-top: 1.5rem;
}

.contact-card {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 1.5rem;
  border-radius: 12px;
  border: 2px solid #ff8c00;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent; /* Remove blue tap highlight */
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.2);
}

.contact-card:focus-within {
  outline: 2px solid #ff8c00;
  outline-offset: 2px;
  border-radius: 14px;
}

.contact-icon {
  font-size: 2.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-details {
  flex: 1;
}

.contact-details h5 {
  color: #2c5aa0;
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-name {
  color: #333;
  margin: 0 0 0.5rem 0;
  font-weight: 500;
  font-size: 1rem;
}

.contact-email {
  color: #ff8c00;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.contact-email:hover {
  color: #e67c00;
  text-decoration: underline;
}

.contact-note {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
  text-align: center;
  margin: 0;
}

/* Simple Clean Sponsorship Contact Styles */
.sponsorship-contact-simple {
  margin-top: 2rem;
  text-align: center;
}

.coordinator-card-simple {
  background: #ffffff;
  border: 2px solid #ff8c00;
  border-radius: 12px;
  padding: 2rem;
  margin: 0 auto 1rem auto;
  max-width: 400px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.coordinator-card-simple:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.coordinator-card-simple h5 {
  color: #2c5aa0;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.coordinator-card-simple h4 {
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  font-family: "Junicode", serif;
}

.coordinator-email {
  color: #ff8c00;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.coordinator-email:hover {
  color: #e67c00;
  text-decoration: underline;
}

.contact-note-simple {
  color: #666;
  font-size: 0.95rem;
  font-style: italic;
  margin: 0;
  text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .coordinator-card-simple {
    padding: 1.5rem;
    margin: 0 1rem 1rem 1rem;
  }
  .coordinator-card-simple h4 {
    font-size: 1.3rem;
  }
  .coordinator-email {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .coordinator-card-simple {
    padding: 1.25rem;
    margin: 0 0.5rem 1rem 0.5rem;
  }
  .coordinator-card-simple h5 {
    font-size: 0.9rem;
  }
  .coordinator-card-simple h4 {
    font-size: 1.2rem;
  }
}
/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* Focus indicators - removing the orange box from clicked nav links */
.nav-link:focus {
  outline: none;
}

.nav-link:focus-visible {
  outline: 2px solid #ff8c00;
  outline-offset: 2px;
}

/* Regular focus styles for other interactive elements */
a:focus:not(.nav-link),
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #ff8c00;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .hero {
    background: #000000;
  }
  .program-card,
  .contact-form,
  .value-item,
  .testimonial {
    border: 2px solid #000000;
  }
}
/* Menu state indicator for hamburger */
.hamburger[aria-expanded=true] .bar:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger[aria-expanded=true] .bar:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.hamburger[aria-expanded=true] .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Add subtle glow effect to active menu */
.nav-menu.active {
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5), 0 0 50px rgba(255, 140, 0, 0.1);
}

/* Smooth menu item hover effects */
.nav-item:hover {
  transform: translateX(5px);
}

/* Focus styles for better accessibility */
.nav-link:focus {
  outline: 2px solid #ff8c00;
  outline-offset: 2px;
  background: rgba(255, 140, 0, 0.2);
}

.hamburger:focus {
  outline: 2px solid #ff8c00;
  outline-offset: 2px;
}

/* Additional text sharpening for all mobile menu text */
.mobile-menu * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* iPhone SE and very small screens mobile menu adjustments */
@media (max-width: 375px) {
  .mobile-menu {
    width: 280px;
    max-width: 90vw;
  }
  .mobile-menu-header {
    padding: 1.5rem 1.5rem 1rem;
  }
  .mobile-menu-title {
    font-size: 1.2rem;
  }
  .mobile-close {
    width: 36px;
    height: 36px;
  }
  .mobile-close span {
    width: 18px;
  }
  .mobile-nav-link {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}
/* Extra small screens (320px and below) */
@media (max-width: 320px) {
  .mobile-menu {
    width: 260px;
    max-width: 95vw;
  }
  .mobile-menu-header {
    padding: 1.25rem 1.25rem 0.75rem;
  }
  .mobile-menu-title {
    font-size: 1.1rem;
  }
  .mobile-nav-link {
    padding: 0.9rem 1.25rem;
    font-size: 0.95rem;
  }
}
/* Schedules Section */
.schedules {
  padding: 6rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.no-selection {
  text-align: center;
  padding: 4rem 2rem;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.selection-prompt {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.selection-prompt:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.selection-prompt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff8c00, #ff7300);
}

.selection-prompt h3 {
  color: #000000;
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  font-weight: 800;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.selection-prompt p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #555;
  font-weight: 400;
  text-decoration: none;
}

.prompt-icon {
  font-size: 4.5rem;
  margin: 2rem 0;
  opacity: 0.8;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.select-team-button {
  display: inline-block;
  padding: 18px 36px;
  background: linear-gradient(135deg, #ff8c00, #ff7300);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
}

.select-team-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 140, 0, 0.4);
  color: white;
  text-decoration: none;
  background: linear-gradient(135deg, #ff7300, #e66500);
}

.team-schedule-display {
  max-width: 1100px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
  overflow: hidden;
}

.schedule-header {
  background: linear-gradient(135deg, #000000, #333333);
  color: white;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
}

.schedule-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff8c00, #ff7300);
}

.schedule-header h3 {
  margin: 0;
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.schedule-content {
  padding: 3rem;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.schedule-section {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid #e9ecef;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.schedule-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.schedule-section:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.schedule-section h4 {
  color: #000000;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #ff8c00;
}

.schedule-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.schedule-list li {
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 1rem;
  gap: 1rem;
}

.schedule-list li:hover {
  background: rgba(255, 140, 0, 0.05);
  border-radius: 8px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin: 0 -0.5rem;
  transition: all 0.3s ease;
}

.schedule-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.schedule-list .label {
  font-weight: 600;
  color: #333;
  flex-shrink: 0;
  min-width: 120px;
}

.schedule-list .value {
  color: #ff8c00;
  font-weight: 600;
  text-align: right;
  flex: 1;
}

.coach-contact {
  background: linear-gradient(135deg, #fff7e6, #fffbf0);
  padding: 2.5rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  border: 2px solid #ff8c00;
  position: relative;
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.1);
}

.coach-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff8c00, #ff7300);
  border-radius: 16px 16px 0 0;
}

.coach-contact h4 {
  color: #000000;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.coach-info {
  margin-bottom: 1.5rem;
}

.coach-info p {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.coach-info strong {
  color: #000000;
  font-weight: 700;
}

.coach-info a {
  color: #ff8c00;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.coach-info a:hover {
  color: #e67300;
  text-decoration: underline;
}

.contact-coach {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ff8c00, #ff7300);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.contact-coach:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 140, 0, 0.4);
  color: white;
  text-decoration: none;
}

.additional-info {
  background: linear-gradient(135deg, #e8f4f8, #f0f8ff);
  border: 2px solid #4fc3f7;
  padding: 2.5rem;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 4px 12px rgba(79, 195, 247, 0.1);
}

.additional-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4fc3f7, #29b6f6);
  border-radius: 16px 16px 0 0;
}

.additional-info h4 {
  color: #0277bd;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.additional-info p {
  color: #0277bd;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}

/* Responsive design for schedules section */
@media (max-width: 768px) {
  .schedules {
    padding: 4rem 0;
  }
  .no-selection {
    padding: 3rem 1rem;
    min-height: 300px;
  }
  .selection-prompt {
    padding: 2rem;
    margin: 0 1rem;
    min-height: auto;
  }
  .selection-prompt h3 {
    font-size: 1.9rem;
  }
  .selection-prompt p {
    font-size: 1.1rem;
  }
  .prompt-icon {
    font-size: 3.5rem;
    margin: 1.5rem 0;
  }
  .select-team-button {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
  .schedule-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .schedule-content {
    padding: 2rem;
  }
  .schedule-header {
    padding: 2rem 1.5rem;
  }
  .schedule-header h3 {
    font-size: 2rem;
  }
  .schedule-section {
    padding: 2rem;
  }
  .schedule-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }
  .schedule-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1.2rem 0;
  }
  .schedule-list .label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: auto;
  }
  .schedule-list .value {
    font-size: 1.1rem;
    text-align: left;
    font-weight: 700;
  }
  .coach-contact {
    padding: 2rem;
  }
  .coach-contact h4 {
    font-size: 1.3rem;
  }
  .coach-info p {
    font-size: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
  .additional-info {
    padding: 2rem;
  }
  .additional-info h4 {
    font-size: 1.3rem;
  }
  .additional-info p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .schedules {
    padding: 3rem 0;
  }
  .no-selection {
    padding: 2rem 0.5rem;
    min-height: 250px;
  }
  .selection-prompt {
    padding: 1.5rem;
    margin: 0 0.5rem;
    border-radius: 16px;
  }
  .selection-prompt h3 {
    font-size: 1.6rem;
  }
  .selection-prompt p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  .prompt-icon {
    font-size: 3rem;
    margin: 1.5rem 0;
  }
  .select-team-button {
    padding: 14px 28px;
    font-size: 1rem;
  }
  .team-schedule-display {
    margin: 0 0.5rem;
    border-radius: 16px;
  }
  .schedule-content {
    padding: 1.5rem;
  }
  .schedule-header {
    padding: 1.5rem;
  }
  .schedule-header h3 {
    font-size: 1.8rem;
  }
  .schedule-section {
    padding: 1.5rem;
    border-radius: 12px;
  }
  .schedule-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .schedule-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
  }
  .schedule-list .label {
    font-size: 0.85rem;
    font-weight: 500;
  }
  .schedule-list .value {
    font-size: 1rem;
    margin-top: 0.2rem;
  }
  .coach-contact,
  .additional-info {
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
  }
  .coach-contact h4,
  .additional-info h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .coach-info p {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
  }
}
/* Extra small devices */
@media (max-width: 375px) {
  .selection-prompt {
    padding: 1rem;
    margin: 0 0.3rem;
  }
  .team-schedule-display {
    margin: 0 0.3rem;
  }
  .schedule-content {
    padding: 1rem;
  }
  .schedule-section,
  .coach-contact,
  .additional-info {
    padding: 1rem;
  }
  .schedule-header {
    padding: 1rem;
  }
  .schedule-header h3 {
    font-size: 1.4rem;
  }
}
/* Additional schedule enhancements */
.schedule-section:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.coach-contact:focus-within {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.2);
}

.additional-info:focus-within {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(79, 195, 247, 0.2);
}

/* Enhanced button states */
.select-team-button:focus,
.contact-coach:focus {
  outline: 3px solid rgba(255, 140, 0, 0.3);
  outline-offset: 2px;
}

/* Loading animation for schedule display */
.team-schedule-display.loading {
  opacity: 0;
  transform: translateY(20px);
}

.team-schedule-display:not(.loading) {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s ease;
}

/* Enhanced emoji spacing */
.schedule-section h4::before,
.coach-contact h4::before,
.additional-info h4::before {
  margin-right: 0.3rem;
}

/* Better responsive spacing for very small screens */
@media (max-width: 320px) {
  .selection-prompt {
    padding: 1rem;
    margin: 0 0.3rem;
  }
  .team-schedule-display {
    margin: 0 0.3rem;
  }
  .schedule-content {
    padding: 1rem;
  }
  .schedule-section,
  .coach-contact,
  .additional-info {
    padding: 1rem;
  }
  .schedule-header {
    padding: 1rem;
  }
  .schedule-header h3 {
    font-size: 1.4rem;
  }
}
/* Card stacking effect for mobile */
@media (max-width: 768px) {
  .schedule-grid {
    gap: 1.5rem;
  }
  .schedule-section,
  .coach-contact {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
  }
  .schedule-section:nth-child(1) {
    order: 1;
  }
  .coach-contact {
    order: 2;
  }
}
/* Improved spacing for schedule items on mobile */
@media (max-width: 480px) {
  .schedule-list li {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  }
  .schedule-list li:last-child {
    margin-bottom: 0;
  }
  .schedule-list li:hover {
    margin: 0 0 0.5rem 0;
    padding: 1rem;
    background: rgba(255, 140, 0, 0.08);
    border-color: rgba(255, 140, 0, 0.2);
  }
  .schedule-list li:last-child:hover {
    margin-bottom: 0;
  }
}
/* Enhanced visual hierarchy */
.schedules .section-title {
  margin-bottom: 3rem;
  position: relative;
}

.schedules .section-title::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ff8c00, #ff7300);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .schedules .section-title {
    margin-bottom: 2rem;
  }
  .schedules .section-title::after {
    width: 40px;
    height: 2px;
  }
}
/* Referee Section */
.referee {
  padding: 6rem 0;
  background: #ffffff;
  position: relative;
}

.referee-content {
  margin-top: 2rem;
}

.referee-intro {
  margin-bottom: 4rem;
  text-align: center;
}

.referee-intro h3 {
  color: #000000;
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
}

.referee-intro p {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 1rem;
}

.referee-benefits {
  margin-bottom: 4rem;
  text-align: center;
}

.referee-benefits h4 {
  color: #2c5aa0;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.referee-benefits > p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 2rem;
}

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

.benefit-item {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.benefit-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2c5aa0, #ff8c00);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  border-color: #ff8c00;
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 140, 0, 0.2);
}

.benefit-item:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
  transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-item h5 {
  color: #2c5aa0;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.benefit-item p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.referee-action {
  text-align: center;
  background: #ffffff;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  max-width: 800px;
  margin: 0 auto;
}

.referee-action:hover {
  border-color: #ff8c00;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 140, 0, 0.15);
}

.referee-action h4 {
  color: #2c5aa0;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.referee-action p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

.referee-button {
  display: inline-block;
  background: linear-gradient(135deg, #2c5aa0, #4a90e2);
  color: white;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
  position: relative;
  overflow: hidden;
  min-height: 44px;
  min-width: 200px;
}

.referee-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.referee-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(44, 90, 160, 0.4);
  background: linear-gradient(135deg, #1e4080, #3a7bc8);
}

.referee-button:hover::before {
  left: 100%;
}

.referee-action .contact-note {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

.referee-action .contact-note a {
  color: #ff8c00;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.referee-action .contact-note a:hover {
  color: #e67c00;
  text-decoration: underline;
}

/* Support Section */
.support {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.support-content {
  margin-top: 2rem;
}

.support-intro {
  margin-bottom: 4rem;
  text-align: center;
}

.support-intro h3 {
  color: #000000;
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
}

.support-intro p {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 1rem;
}

.support-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.donation-info {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
}

.donation-info:hover {
  border-color: #ff8c00;
  transform: translateY(-5px);
}

.donation-info h4 {
  color: #2c5aa0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  text-align: center;
}

.mailing-address {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #ff8c00;
  margin-top: 1rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.sponsorship-section {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
}

.sponsorship-section:hover {
  border-color: #ff8c00;
  transform: translateY(-5px);
}

.sponsorship-section h4 {
  color: #2c5aa0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.sponsorship-button {
  background: linear-gradient(135deg, #ff8c00, #ff6b35);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-top: 1rem;
  min-height: 48px;
  min-width: 220px;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
  position: relative;
  overflow: hidden;
  font-family: "Inter", sans-serif;
}

.sponsorship-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.sponsorship-button:hover::before {
  left: 100%;
}

.sponsorship-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
  background: linear-gradient(135deg, #ff6b35, #ff5722);
}

.sponsorship-button:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.5);
}

/* Mobile responsive sponsorship button */
@media (max-width: 768px) {
  .sponsorship-button {
    padding: 14px 28px;
    font-size: 1rem;
    min-width: 200px;
    width: 100%;
    max-width: 300px;
  }
}
@media (max-width: 480px) {
  .sponsorship-button {
    padding: 12px 24px;
    font-size: 0.95rem;
    min-width: 180px;
  }
}
.support-impact {
  text-align: center;
}

.support-impact h4 {
  color: #000000;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

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

.impact-item {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
}

.impact-item:hover {
  border-color: #ff8c00;
  transform: translateY(-5px);
}

.impact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.impact-item h5 {
  color: #2c5aa0;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.impact-item p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

/* Sponsorship Modal Specific Styles */
.sponsorship-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.sponsorship-tier {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 2.5rem;
  border-radius: 16px;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 400px;
}

.sponsorship-tier:hover {
  border-color: #ff8c00;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 140, 0, 0.15);
}

.sponsorship-tier h3 {
  color: #2c5aa0;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  font-family: "Junicode", serif;
  position: relative;
}

.sponsorship-benefits {
  flex-grow: 1;
  margin-bottom: 1rem;
}

.sponsorship-benefits h4 {
  color: #333;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sponsorship-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sponsorship-benefits li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  padding-left: 1rem;
  transition: all 0.3s ease;
  line-height: 1.6;
}

.sponsorship-benefits li:hover {
  background: rgba(255, 140, 0, 0.05);
  border-radius: 6px;
  padding-left: 1.2rem;
  margin: 0 -0.5rem;
  padding-right: 0.5rem;
}

.sponsorship-benefits li:last-child {
  border-bottom: none;
}

.sponsorship-investment {
  margin-top: auto;
  padding: 1.5rem;
  background: linear-gradient(135deg, #fff7e6 0%, #fffbf0 100%);
  border-radius: 12px;
  border: 2px solid #ff8c00;
  font-weight: 600;
  color: #e67300;
  font-size: 1.1rem;
  box-shadow: inset 0 2px 4px rgba(255, 140, 0, 0.1);
  text-align: center;
}

.sponsorship-contact {
  margin-top: 2.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2.5rem;
  border-radius: 16px;
  border: 2px solid #e9ecef;
  position: relative;
}

.sponsorship-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2c5aa0, #3498db);
}

.sponsorship-contact h3 {
  color: #2c5aa0;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  font-family: "Junicode", serif;
}

.contact-info {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-info p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

.contact-info strong {
  color: #2c5aa0;
  font-weight: 600;
}

.contact-info .contact-email {
  color: #ff8c00;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  outline: none; /* Remove default browser focus outline */
  -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
}

.contact-info .contact-email:hover {
  color: #e67300;
  text-decoration: underline;
  transform: translateX(3px);
}

.contact-info .contact-email:focus {
  outline: 2px solid #ff8c00;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Responsive Sponsorship Modal Styles */
@media (max-width: 768px) {
  .sponsorship-options {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .sponsorship-tier {
    padding: 2rem;
    min-height: 350px;
  }
  .sponsorship-benefits {
    flex-grow: 1;
    margin-bottom: 1rem;
  }
  .sponsorship-benefits h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .sponsorship-benefits li {
    padding: 0.6rem 0;
    padding-left: 0.8rem;
    font-size: 0.95rem;
  }
  .sponsorship-investment {
    margin-top: auto;
    padding: 1.2rem;
    font-size: 1rem;
  }
  .sponsorship-contact {
    margin-top: 2rem;
    padding: 2rem;
  }
  .sponsorship-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }
  .contact-info {
    padding: 1.5rem;
  }
  .contact-info p {
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .sponsorship-options {
    gap: 1.2rem;
  }
  .sponsorship-tier {
    padding: 1.5rem;
    min-height: 320px;
  }
  .sponsorship-benefits {
    flex-grow: 1;
    margin-bottom: 1rem;
  }
  .sponsorship-tier h3 {
    font-size: 1.3rem;
  }
  .sponsorship-benefits li {
    padding: 0.5rem 0;
    padding-left: 0.6rem;
    font-size: 0.9rem;
  }
  .sponsorship-investment {
    padding: 1rem;
    font-size: 0.95rem;
  }
  .sponsorship-contact {
    padding: 1.5rem;
  }
  .sponsorship-contact h3 {
    font-size: 1.3rem;
  }
  .contact-info {
    padding: 1.2rem;
  }
}
.current-sponsors-dos h3 {
  font-family: "Junicode", serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
  text-align: center;
  padding: 1rem;
}

/*# sourceMappingURL=styles.css.map */
