@charset "UTF-8";
* {
  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: #333333;
  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;
}

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

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.75rem;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 2.25rem;
  }
}

h2 {
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  h2 {
    font-size: 1.75rem;
  }
}

h3 {
  font-size: 2rem;
}
@media (max-width: 768px) {
  h3 {
    font-size: 1.65rem;
  }
}
@media (max-width: 480px) {
  h3 {
    font-size: 1.5rem;
  }
}

h4 {
  font-size: 1.5rem;
}
@media (max-width: 480px) {
  h4 {
    font-size: 1.3rem;
  }
}

p {
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: 1.1rem;
}
@media (max-width: 480px) {
  p {
    font-size: 1rem;
    line-height: 1.7;
  }
}

.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: 1.5rem auto 0;
  border-radius: 2px;
}

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

/* Main Navigation Container */
.main-navigation {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1002;
  padding: 0.5rem 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.main-navigation.scrolled {
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 140, 0, 0.2);
  padding: 0.25rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Navigation Wrapper */
.navigation-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 0.5rem;
}
.brand-logo:hover {
  color: #ff8c00;
  background: rgba(255, 140, 0, 0.1);
}
.brand-logo:hover .brand-icon img {
  filter: drop-shadow(0 4px 8px rgba(255, 140, 0, 0.4));
}
.brand-logo:focus-visible {
  outline: 2px solid #ff8c00;
  outline-offset: 3px;
  background: rgba(255, 140, 0, 0.1);
}

.brand-icon {
  display: flex;
  align-items: center;
  margin-right: 0.75rem;
  color: #ff8c00;
  transition: transform 0.3s ease;
}
.brand-icon img {
  width: 5rem;
  height: 5rem;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: filter 0.3s ease;
}

.brand-text {
  font-family: "Junicode", Georgia, "Times New Roman", serif;
  white-space: nowrap;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Navigation Menu */
.navigation-menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.menu-item {
  position: relative;
}

.menu-link {
  color: #ffffff;
  text-decoration: none;
  font-family: "Junicode", Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  display: flex;
  align-items: center;
  letter-spacing: 0.3px;
  border: 1px solid transparent;
}
.menu-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff8c00, #ffa333);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 1px;
}
.menu-link:hover {
  color: #ff8c00;
  background: rgba(255, 140, 0, 0.1);
  border-color: rgba(255, 140, 0, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.2);
}
.menu-link:hover::before {
  width: 80%;
}
.menu-link:focus-visible {
  outline: 2px solid #ff8c00;
  outline-offset: 3px;
  border: 1px solid transparent;
  background: rgba(255, 140, 0, 0.1);
}

/* Mobile Toggle Button */
.mobile-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 12px;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 1003;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.mobile-toggle:hover {
  background: rgba(255, 140, 0, 0.15);
  border-color: rgba(255, 140, 0, 0.3);
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.2);
}
.mobile-toggle:active {
  transform: scale(0.95);
  outline: none;
}
.mobile-toggle:focus-visible {
  outline: 2px solid #ff8c00;
  outline-offset: 3px;
  background: rgba(255, 140, 0, 0.15);
}
.mobile-toggle.active {
  background: rgba(255, 140, 0, 0.2);
  border-color: rgba(255, 140, 0, 0.4);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.3);
}
.mobile-toggle.active .toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
  background: #ff8c00;
  box-shadow: 0 2px 6px rgba(255, 140, 0, 0.4);
}
.mobile-toggle.active .toggle-line:nth-child(2) {
  opacity: 0;
  transform: scale(0) rotate(180deg);
}
.mobile-toggle.active .toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(9px, -9px);
  background: #ff8c00;
  box-shadow: 0 2px 6px rgba(255, 140, 0, 0.4);
}

.toggle-line {
  width: 28px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 3px;
  transform-origin: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .navigation-wrapper {
    padding: 0 1.5rem;
  }
  .brand-logo {
    font-size: 1.3rem;
  }
  .brand-icon img {
    width: 2.5rem;
    height: 2.5rem;
  }
  .navigation-menu {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
}
@media (max-width: 480px) {
  .navigation-wrapper {
    padding: 0 1rem;
  }
  .brand-logo {
    font-size: 1.2rem;
  }
  .brand-text {
    font-size: 0.9rem;
  }
  .menu-link {
    font-size: 1.3rem;
    padding: 0.8rem 1.5rem;
    min-width: 180px;
  }
}
/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  color: #ffffff;
  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);
  margin-top: 1rem;
}

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

/* Hero Logo Styles */
.hero-logo {
  text-align: center;
  margin-bottom: -2.5rem;
}

.hero-logo-image {
  width: 400px;
  height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}
.hero-logo-image:hover {
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-subtitle {
    font-size: 1.3rem;
  }
  .hero-logo {
    margin-bottom: -1.5rem;
  }
  .hero-logo-image {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .hero-logo {
    margin-bottom: -1rem;
  }
  .hero-logo-image {
    width: 250px;
    height: 250px;
  }
}
.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 {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}
.cta-button:hover::before {
  left: 100%;
}
.cta-button:focus-visible {
  outline: 3px solid #ff8c00;
  outline-offset: 3px;
}

.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);
}
.register-button:focus-visible {
  outline: 3px solid #ff8c00;
  outline-offset: 3px;
}
.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, rgb(204.5, 110.252173913, 0));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}
.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;
  cursor: not-allowed;
}
.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);
}

/* 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;
}
@media (max-width: 1000px) {
  .programs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .programs-grid {
    gap: 1.5rem;
  }
}

.program-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.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: #555555;
}

.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;
}
.card-features li:last-child {
  border-bottom: none;
}

.travel-info {
  margin-top: 1.5rem;
}
.travel-info p {
  font-style: italic;
  color: #666666;
  text-align: center;
  margin: 1rem 0 0 0;
}
.travel-info a {
  color: #ff8c00;
  text-decoration: none;
}
.travel-info a:hover {
  text-decoration: underline;
}

.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-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: #666666;
  margin: 0;
}

/* Contact Info Box for Sailors Program */
.contact-info-box {
  background: #f8f9fa;
  border: 2px solid #ff8c00;
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}
.contact-info-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 140, 0, 0.2);
}
.contact-info-box h5 {
  color: #2c5aa0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}
.contact-info-box p {
  margin: 0;
  font-size: 1rem;
}
.contact-info-box a {
  color: #ff8c00;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  background: rgba(255, 140, 0, 0.1);
  border: 1px solid rgba(255, 140, 0, 0.3);
  display: inline-block;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}
.contact-info-box a:hover {
  background: #ff8c00;
  color: #ffffff;
  transform: translateY(-1px);
}
.contact-info-box a:focus-visible {
  outline: 2px solid #ff8c00;
  outline-offset: 2px;
}

/* 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 {
  /* 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: #666666;
}
.registration.registration-closed .registration-intro {
  color: #777777;
}
@media (max-width: 768px) {
  .registration {
    padding: 4rem 0;
  }
}

.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;
}
@media (max-width: 768px) {
  .registration-hero {
    padding: 2rem 1.5rem;
    margin-bottom: 3rem;
  }
  .registration-hero h3 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .registration-hero {
    padding: 1.5rem 1rem;
  }
  .registration-hero h3 {
    font-size: 1.8rem;
  }
}

.registration-intro {
  margin-bottom: 2rem;
  color: #555555;
  font-size: 1.2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 480px) {
  .registration-intro {
    font-size: 1.1rem;
  }
}

/* Program Information Cards */
.registration-programs {
  margin-bottom: 4rem;
}
.registration-programs h4 {
  text-align: center;
  color: #2c5aa0;
  margin-bottom: 2rem;
  font-size: 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-info-card h5 {
  color: #2c5aa0;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .program-info-card {
    padding: 2rem;
  }
}
@media (max-width: 480px) {
  .program-info-card {
    padding: 1.5rem;
  }
}

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

.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: #666666;
  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);
}
@media (max-width: 768px) {
  .registration-info {
    padding: 2rem;
  }
}
@media (max-width: 480px) {
  .registration-info {
    padding: 1.5rem;
  }
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
    gap: 1.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-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: #666666;
  position: relative;
  padding-left: 1.5rem;
}
.info-item li:before {
  content: "•";
  color: #ff8c00;
  font-weight: bold;
  position: absolute;
  left: 0;
}
@media (max-width: 480px) {
  .info-item {
    padding: 1rem;
  }
}

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

/* 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;
}

.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-item h4 {
  color: #000000;
  margin-bottom: 1rem;
}
.value-item p {
  color: #666666;
  font-size: 0.95rem;
  margin: 0;
}

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

.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: #333333;
  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: #333333;
  font-weight: 500;
  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: #555555;
  margin-bottom: 1rem;
}
.testimonial cite {
  color: #000000;
  font-weight: 600;
  font-style: normal;
}

/* Calendar Section Styles */
.calendar {
  background: linear-gradient(135deg, #f8fffe 0%, #e8f4f8 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.calendar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.calendar .section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  color: #1a365d;
  margin-bottom: 1rem;
  font-family: "Junicode", Georgia, "Times New Roman", serif;
}
.calendar {
  /* Wave Divider Styling for Calendar Section */
}
.calendar .wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.calendar .wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}
.calendar .wave-divider .shape-fill {
  fill: #ffffff;
}
@media (max-width: 768px) {
  .calendar {
    padding: 3rem 0;
  }
  .calendar .section-title {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .calendar {
    padding: 2rem 0;
  }
  .calendar .section-title {
    font-size: 1.75rem;
  }
}

.calendar-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .calendar-intro {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

.calendar-container {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}
@media (max-width: 1024px) {
  .calendar-container {
    max-width: 100%;
    margin: 0 1rem;
  }
}
@media (max-width: 768px) {
  .calendar-container {
    margin: 0 0.5rem;
    border-radius: 8px;
  }
}

.calendar-iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}
@media (max-width: 1024px) {
  .calendar-iframe {
    height: 550px;
  }
}
@media (max-width: 768px) {
  .calendar-iframe {
    height: 450px;
  }
}
@media (max-width: 480px) {
  .calendar-iframe {
    height: 400px;
  }
}

/* Loading State for Calendar */
.calendar-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #666666;
  font-size: 1.1rem;
  z-index: 1;
  pointer-events: none;
  background: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.calendar-loading.hidden {
  display: none;
}

/* Schedules download panel */
.schedules-panel {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid #eef3f7;
  background: #fbfeff;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.schedules-panel h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1.1rem;
  color: #1a365d;
  font-weight: 600;
}
@media (max-width: 768px) {
  .schedules-panel {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem;
  }
}
@media (max-width: 480px) {
  .schedules-panel {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }
}

.schedules-info {
  flex: 1;
  min-width: 200px;
}

.schedules-note {
  margin: 0;
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.4;
}

.schedules-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .schedules-buttons {
    width: 100%;
    gap: 0.5rem;
  }
}
@media (max-width: 480px) {
  .schedules-buttons {
    width: 100%;
    flex-direction: column;
    gap: 0.5rem;
  }
}

.schedule-btn {
  background: #1a365d;
  color: #fff;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: 0 4px 8px rgba(26, 54, 93, 0.12);
  transition: all 200ms ease;
  white-space: nowrap;
  border: 2px solid transparent;
}
.schedule-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 54, 93, 0.2);
  background: #2c5282;
}
.schedule-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 8px rgba(26, 54, 93, 0.12);
}
@media (max-width: 480px) {
  .schedule-btn {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
  }
}

/* Support Section (from styles.scss) */
.support {
  padding: 6rem 0;
  background: #ffffff;
  position: relative;
}

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

.support-intro {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.support-intro p {
  color: #555555;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.support-actions {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.sponsorship-section {
  text-align: center;
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 15px;
  max-width: 800px;
  margin: 0 auto;
}
.sponsorship-section h4 {
  color: #000000;
  margin-bottom: 1rem;
}
.sponsorship-section p {
  color: #555555;
  margin-bottom: 2rem;
}

.sponsorship-button {
  padding: 1rem 2rem;
  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;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}
.sponsorship-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.sponsorship-contact-simple {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.coordinator-card-simple {
  margin-bottom: 1rem;
}
.coordinator-card-simple h5 {
  color: #666666;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.coordinator-card-simple h4 {
  color: #2c5aa0;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

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

.contact-note-simple {
  font-size: 0.95rem;
  color: #666666;
  font-style: italic;
  margin-top: 1rem;
}

/* ===== SPONSORS SECTION STYLING (from sponsors.scss) ===== */
.current-sponsors {
  margin: 2rem 0 4rem 0;
}
.current-sponsors h3 {
  font-family: "Junicode", Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 1rem;
  text-align: center;
}
.current-sponsors > p {
  font-family: "Junicode", Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  color: #666666;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .current-sponsors {
    margin: 2rem 0;
  }
  .current-sponsors h3 {
    font-size: 1.5rem;
  }
  .current-sponsors > p {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
}
@media (max-width: 480px) {
  .current-sponsors h3 {
    font-size: 1.6rem;
  }
  .current-sponsors > p {
    font-size: 0.95rem;
  }
}

/* Sponsors Grid */
.sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  margin-top: 2rem;
  padding: 0 1rem;
}
.sponsors-grid:has(> .sponsor-item:only-child) {
  justify-content: center;
}
.sponsors-grid:has(> .sponsor-item:only-child) .sponsor-item {
  max-width: 400px;
  flex: none;
}
@media (max-width: 768px) {
  .sponsors-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 0;
  }
}

.sponsor-item {
  background: #fff;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  flex: 1 1 280px;
  max-width: 350px;
  /* Animation for sponsor items when they come into view */
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}
.sponsor-item:nth-child(1) {
  animation-delay: 0.1s;
}
.sponsor-item:nth-child(2) {
  animation-delay: 0.2s;
}
.sponsor-item:nth-child(3) {
  animation-delay: 0.3s;
}
.sponsor-item:nth-child(4) {
  animation-delay: 0.4s;
}
.sponsor-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.15);
  border-color: #3498db;
}
.sponsor-item:focus-within {
  outline: 2px solid #3498db;
  outline-offset: 2px;
}
.sponsor-item h4 {
  font-family: "Junicode", Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  margin: 0;
  line-height: 1.4;
  padding: 0.5rem 0.5rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .sponsor-item {
    padding: 1.5rem;
    min-height: 150px;
    width: 100%;
    max-width: 400px;
    flex: none;
  }
  .sponsor-item h4 {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .sponsor-item {
    padding: 1.2rem 0.8rem;
  }
  .sponsor-item h4 {
    font-size: 1rem;
  }
}
@media (prefers-color-scheme: dark) {
  .sponsor-item {
    background: #fff;
    border-color: #e5e5e5;
    color: #333;
  }
  .sponsor-item:hover {
    border-color: #3498db;
  }
  .sponsor-item h4 {
    color: #000000;
  }
}
@media print {
  .sponsor-item {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }
  .sponsor-item:hover {
    transform: none;
  }
}

.sponsor-logo {
  max-width: 120px;
  max-height: 80px;
  width: auto;
  height: auto;
  margin-bottom: 1rem;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
@media (max-width: 768px) {
  .sponsor-logo {
    max-width: 100px;
    max-height: 60px;
  }
}
@media (max-width: 480px) {
  .sponsor-logo {
    max-height: 50px;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 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: #555555;
  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: #555555;
  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);
}
.benefit-item:hover::before {
  transform: scaleX(1);
}
.benefit-item h5 {
  color: #2c5aa0;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
}
.benefit-item p {
  color: #666666;
  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: #555555;
  margin-bottom: 2rem;
}
.referee-action .contact-note {
  font-size: 1rem;
  color: #666666;
  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;
}

.referee-button {
  display: inline-block;
  background: linear-gradient(135deg, #2c5aa0, rgb(55, 112.5, 200));
  color: #ffffff;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 20px;
  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, rgb(38.5, 78.75, 140), rgb(49.5, 101.25, 180));
}
.referee-button:hover::before {
  left: 100%;
}
.referee-button:focus-visible {
  outline: 3px solid #2c5aa0;
  outline-offset: 3px;
}

/* 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%;
}
@media (max-width: 768px) {
  .contact-grid {
    justify-content: center;
    gap: 1.5rem;
    max-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-item h4 {
  color: #2c5aa0;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
}
.contact-item p {
  color: #555555;
  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;
}
@media (max-width: 768px) {
  .contact-item {
    padding: 1.5rem;
    flex-basis: 280px;
    max-width: none;
    min-width: 280px;
  }
}

.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-form {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
@media (max-width: 480px) {
  .contact-form {
    padding: 1.5rem;
  }
}

.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);
}

/* 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 */
}
.modal-content h2 {
  color: #2c5aa0;
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  font-family: "Junicode", Georgia, "Times New Roman", 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: #666666;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .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;
  }
}
@media (max-width: 480px) {
  .modal-content {
    margin: 2% auto;
    padding: 1.5rem;
    width: 95%;
    border-radius: 10px;
  }
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.close {
  color: #666666;
  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: #ffffff;
  background: #ff4757;
  border-color: #ff4757;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3);
}
@media (max-width: 768px) {
  .close {
    font-size: 24px;
    top: 0.8rem;
    right: 1.2rem;
  }
}

.program-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .program-options {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 480px) {
  .program-options {
    gap: 1.2rem;
    margin-top: 1rem;
  }
}

.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: #555555;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .program-option {
    padding: 1.5rem;
    min-height: 260px;
    /* Medium size for tablets */
  }
}
@media (max-width: 480px) {
  .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 {
  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);
}
.program-button {
  /* 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;
}
@media (max-width: 480px) {
  .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 */
  }
}

/* Program-specific styling for open state */
.rec-button {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: #ffffff;
}
.rec-button.open-state {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: #ffffff;
}
.rec-button.open-state:hover {
  background: linear-gradient(135deg, #218838 0%, #1ca085 100%);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}
.rec-button {
  /* Legacy support */
}
.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: #ffffff;
}
.travel-button.open-state {
  background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
  color: #ffffff;
}
.travel-button.open-state:hover {
  background: linear-gradient(135deg, #e67e00 0%, #ff9500 100%);
  box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}
.travel-button {
  /* Legacy support */
}
.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: #ffffff;
}
.sailors-button.open-state {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #ffffff;
}
.sailors-button.open-state:hover {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}
.sailors-button {
  /* Legacy support */
}
.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);
}

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

.sponsorship-tier {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  padding: 3rem;
  border-radius: 15px;
  border: 2px solid #e1e8ed;
  transition: all 0.3s 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: 420px;
}
.sponsorship-tier::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff8c00, #2c5aa0);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sponsorship-tier:hover {
  border-color: #ff8c00;
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(255, 140, 0, 0.15);
}
.sponsorship-tier:hover::before {
  transform: scaleX(1);
}
.sponsorship-tier h3 {
  color: #2c5aa0;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
}
@media (max-width: 768px) {
  .sponsorship-tier {
    padding: 2rem;
    min-height: 380px;
  }
}
@media (max-width: 480px) {
  .sponsorship-tier {
    padding: 1.5rem;
    min-height: 350px;
  }
  .sponsorship-tier h3 {
    font-size: 1.5rem;
  }
}

.sponsorship-benefits {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}
.sponsorship-benefits h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #333333;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}
.sponsorship-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sponsorship-benefits li {
  padding: 1rem 0;
  padding-left: 2rem;
  font-size: 1rem;
  color: #555555;
  position: relative;
  line-height: 1.6;
}
.sponsorship-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
  font-size: 1.2rem;
}
.sponsorship-benefits li + li {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
@media (max-width: 480px) {
  .sponsorship-benefits li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    font-size: 0.95rem;
  }
}

.sponsorship-investment {
  margin-top: auto;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.08), rgba(44, 90, 160, 0.08));
  border-radius: 8px;
  text-align: center;
  border: 2px solid rgba(255, 140, 0, 0.2);
}
.sponsorship-investment strong {
  font-size: 2rem;
  color: #2c5aa0;
  font-weight: 700;
  display: block;
}
@media (max-width: 480px) {
  .sponsorship-investment {
    padding: 1rem;
  }
  .sponsorship-investment strong {
    font-size: 1.6rem;
  }
}

.sponsorship-contact {
  margin-top: 3rem;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.05), rgba(44, 90, 160, 0.05));
  border-radius: 10px;
  border: 2px solid rgba(255, 140, 0, 0.15);
}
.sponsorship-contact h3 {
  color: #2c5aa0;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  text-align: center;
}
.sponsorship-contact p {
  text-align: center;
  color: #555555;
  margin-bottom: 2rem;
}
@media (max-width: 480px) {
  .sponsorship-contact {
    padding: 2rem;
    margin-top: 2rem;
  }
  .sponsorship-contact h3 {
    font-size: 1.4rem;
  }
}

.contact-info {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  max-width: 600px;
  margin: 0 auto;
}
.contact-info p {
  margin-bottom: 1.5rem;
  color: #333333;
  line-height: 1.8;
}
.contact-info p:last-child {
  margin-bottom: 0;
}
.contact-info p strong {
  color: #2c5aa0;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}
@media (max-width: 480px) {
  .contact-info {
    padding: 1.5rem;
  }
}

/* Footer */
.footer {
  background: #000000;
  color: #ffffff;
  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: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-family: "Junicode", Georgia, "Times New Roman", serif;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #ff8c00;
}

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

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

/* Board Section */
.board {
  padding: 6rem 0;
  background: #f8f9fa;
  position: relative;
}

.board-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.board-section {
  text-align: center;
}

.board-section h3 {
  color: #2c5aa0;
  margin-bottom: 1rem;
}

.board-section p {
  color: #555;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Bylaws Section */
.bylaws-section .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Roles Grid */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.role-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  color: #333;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(0,0,0,0.05);
}

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

.role-card h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c5aa0;
}

.role-name {
  font-size: 0.95rem;
  color: #666;
  margin: 0 !important;
  font-weight: 500;
}

.role-btn {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #ff8c00;
  text-decoration: none;
  border: 1px solid #ff8c00;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.role-btn:hover {
  background: #ff8c00;
  color: #ffffff;
}

/* Apply Section */
.apply-card {
  background: #ffffff;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 2px solid rgba(44, 90, 160, 0.1);
}

.apply-card p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
