html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  padding-top: 70px;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

nav ul li a {
  transition: color 0.3s ease, transform 0.2s ease;
  font-weight: 500;
}

nav ul li a:hover {
  color: #1095c1;
  transform: translateY(-2px);
}

nav ul li a[role="button"] {
  background: linear-gradient(135deg, #1095c1 0%, #0d7a9e 100%);
  border: none;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(16, 149, 193, 0.3);
}

nav ul li a[role="button"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(16, 149, 193, 0.4);
}

.hero-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(16, 149, 193, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(91, 192, 222, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-logo {
  width: 200px;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
  animation: floatLogo 3s ease-in-out infinite;
}

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

.hero-section h1 {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
}

.hero-tagline {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.hero-location {
  color: rgba(16, 149, 193, 1);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero-section a[role="button"] {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}

@media (max-width: 768px) {
  .hero-logo {
    width: 150px;
  }
  
  .hero-section h1 {
    font-size: 2.2rem;
  }
  
  .hero-tagline {
    font-size: 1.1rem;
  }
  
  .hero-section {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-logo {
    width: 120px;
  }
  
  .hero-section h1 {
    font-size: 1.8rem;
  }
  
  .hero-tagline {
    font-size: 1rem;
  }
}

.nav-logo {
  height: 70px;
  width: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-logo:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.price {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1095c1 0%, #0d7a9e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0.5rem 0;
}

.pricing-card {
  text-align: center;
  padding: 2.5rem;
  background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(16, 149, 193, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 400px;
  margin: 2rem auto;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.pricing-card h3 {
  color: #1a1a2e;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 300px;
  margin: 1.5rem auto;
}

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

.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1095c1;
  font-weight: bold;
}

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

.camps-list article {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(16, 149, 193, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.camps-list article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1095c1 0%, #5bc0de 100%);
}

.camps-list article:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(16, 149, 193, 0.15);
}

.camps-list article h4 {
  color: #1a1a2e;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.camps-list article p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

#sessions, #camps, #gallery, #sponsors {
  padding: 4rem 0;
}

#sessions article, #camps article {
  max-width: 900px;
  margin: 0 auto;
}

.hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  margin: 2rem auto;
  display: block;
}

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

.photo-gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.photo-gallery img:hover {
  transform: scale(1.03) translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.section-image {
  margin: 2rem 0;
  text-align: center;
}

.section-image img {
  width: 100%;
  max-width: 700px;
  height: 350px;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.mission-section {
  padding: 5rem 2rem;
  margin-bottom: 0;
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  --pico-color: #fff;
  --pico-muted-color: #fff;
}

.mission-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.mission-section article,
.mission-section p {
  color: #fff !important;
}

.mission-section article {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  background: transparent;
  box-shadow: none;
}

.mission-section h2 {
  font-size: 2.8rem;
  margin-bottom: 2.5rem;
  color: #fff !important;
  letter-spacing: -0.5px;
}

.mission-section article {
  background: transparent !important;
  box-shadow: none !important;
}

.mission-content p {
  margin-bottom: 1.25rem;
  line-height: 1.9;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9) !important;
}

.mission-bold {
  font-weight: 700;
  font-size: 1.5rem !important;
  color: #fff !important;
  letter-spacing: -0.3px;
}

.mission-highlight {
  font-size: 1.6rem !important;
  font-style: italic;
  background: linear-gradient(90deg, #5bc0de, #87d4ed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 2.5rem 0 !important;
  font-weight: 700;
}

.mission-closing {
  font-size: 1.5rem !important;
  font-weight: 700;
  margin-top: 2.5rem !important;
  padding-top: 2rem;
  border-top: 3px solid rgba(91, 192, 222, 0.5);
  color: #fff !important;
}

.about-section {
  padding: 4rem 0;
  margin-bottom: 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.about-section article {
  max-width: 1000px;
  margin: 0 auto;
}

.about-section hgroup {
  text-align: center;
  margin-bottom: 2rem;
}

.about-section hgroup h2 {
  font-size: 2.2rem;
  color: #1a1a2e;
}

.about-section hgroup h3 {
  color: #1095c1;
  font-weight: 500;
}

.about-content {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: start;
}

.owner-image img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.owner-bio h4 {
  color: #1095c1;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.owner-bio ul {
  padding-left: 1.5rem;
}

.owner-bio li {
  margin-bottom: 0.6rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .nav-logo {
    height: 50px;
  }
  
  nav ul {
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
  }
  
  nav ul li a {
    font-size: 0.85rem;
    padding: 0.4rem 0.6rem;
  }
  
  nav ul li a[role="button"] {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .owner-image {
    display: flex;
    justify-content: center;
  }
  
  .owner-bio ul {
    text-align: left;
  }
  
  .mission-section h2 {
    font-size: 2rem;
  }
  
  .mission-bold {
    font-size: 1.2rem !important;
  }
}

@media (max-width: 576px) {
  .nav-logo {
    height: 45px;
  }
  
  nav {
    padding: 0.5rem 1rem;
  }
  
  nav ul {
    gap: 0.3rem;
  }
  
  nav ul li a {
    font-size: 0.75rem;
    padding: 0.3rem 0.5rem;
  }
  
  nav ul li a[role="button"] {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }
}

#programs {
  padding: 3rem 0;
}

#programs hgroup {
  text-align: center;
  margin-bottom: 2rem;
}

#programs hgroup h2 {
  font-size: 2.2rem;
  color: #1a1a2e;
}

#programs hgroup h3 {
  color: #1095c1;
  font-weight: 500;
}

#programs h3:not(hgroup h3) {
  color: #1a1a2e;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
  position: relative;
  padding-left: 1rem;
  border-left: 4px solid #1095c1;
}

#programs p {
  line-height: 1.8;
  font-size: 1.05rem;
}

#gallery article {
  max-width: 100%;
}

#gallery hgroup {
  text-align: center;
  margin-bottom: 1rem;
}

#gallery h2 {
  font-size: 2.2rem;
  color: #1a1a2e;
}

#gallery h3 {
  color: #666;
  font-weight: 400;
}

#sessions hgroup, #camps hgroup {
  text-align: center;
  margin-bottom: 1.5rem;
}

#sessions h2, #camps h2 {
  font-size: 2.2rem;
  color: #1a1a2e;
}

#sessions h3, #camps h3 {
  color: #666;
  font-weight: 400;
}

#newsletter {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 4rem 0;
}

#newsletter article {
  background: #fff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  margin: 0 auto;
}

#newsletter hgroup {
  text-align: center;
  margin-bottom: 2rem;
}

#newsletter h2 {
  font-size: 2rem;
  color: #1a1a2e;
}

#newsletter h3 {
  color: #666;
  font-weight: 400;
}

#newsletter-form fieldset {
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  background: #fafafa;
  transition: border-color 0.3s ease;
}

#newsletter-form fieldset:hover {
  border-color: #1095c1;
}

#newsletter-form fieldset legend {
  padding: 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
}

.form-helper {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.75rem;
  margin-top: 0;
}

.week-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.5rem;
}

.week-grid label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  padding: 0.5rem;
  border-radius: 6px;
  transition: background 0.2s ease;
  cursor: pointer;
}

.week-grid label:hover {
  background: #e9ecef;
}

.add-selected-container {
  margin: 1.5rem 0;
  padding: 1rem;
  background: linear-gradient(135deg, #e8f4f8 0%, #d4edda 100%);
  border-radius: 12px;
  text-align: center;
  border: 2px dashed #1095c1;
}

.add-selected-btn {
  background: linear-gradient(135deg, #28a745 0%, #20943d 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.add-selected-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(40, 167, 69, 0.4);
  background: linear-gradient(135deg, #2dbe4e 0%, #28a745 100%);
}

.add-selected-helper {
  margin: 0.75rem 0 0 0;
  font-size: 0.85rem;
  color: #666;
}

#newsletter-form input[type="text"],
#newsletter-form input[type="email"],
#newsletter-form input[type="tel"],
#newsletter-form input[type="number"] {
  border-radius: 10px;
  border: 2px solid #e9ecef;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.phone-input-group {
  display: flex;
  gap: 0;
  align-items: stretch;
}

.country-code-select {
  width: 75px;
  min-width: 75px;
  border-radius: 10px 0 0 10px;
  border: 2px solid #e9ecef;
  border-right: none;
  background: #f8f9fa;
  font-weight: 600;
  text-align: center;
  padding: 0.5rem;
  margin: 0;
}

.phone-number-input {
  flex: 1;
  border-radius: 0 10px 10px 0 !important;
  margin: 0 !important;
}

#newsletter-form input:focus {
  border-color: #1095c1;
  box-shadow: 0 0 0 3px rgba(16, 149, 193, 0.15);
}

#newsletter-form textarea {
  width: 100%;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  border: 2px solid #e9ecef;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#newsletter-form textarea:focus {
  border-color: #1095c1;
  box-shadow: 0 0 0 3px rgba(16, 149, 193, 0.15);
}

#newsletter-form button[type="submit"] {
  width: 100%;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #1095c1 0%, #0d7a9e 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(16, 149, 193, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

#newsletter-form button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(16, 149, 193, 0.4);
}

.career-stats {
  display: flex;
  justify-content: space-around;
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(26, 26, 46, 0.3);
}

.stat-item {
  text-align: center;
  color: #fff;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1095c1 0%, #5bc0de 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.staff-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.staff-section article {
  max-width: 1000px;
  margin: 0 auto;
}

.staff-section hgroup {
  text-align: center;
  margin-bottom: 3rem;
}

.staff-section hgroup h2 {
  font-size: 2.2rem;
  color: #1a1a2e;
}

.staff-section hgroup h3 {
  color: #1095c1;
  font-weight: 500;
}

.staff-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.staff-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 350px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.staff-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.staff-image {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.staff-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.staff-info {
  padding: 1.5rem;
  text-align: center;
}

.staff-info h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.4rem;
  color: #1a1a2e;
}

.staff-title {
  color: #1095c1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.staff-bio {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.staff-quote {
  font-style: italic;
  color: #1095c1;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(16, 149, 193, 0.1) 0%, rgba(91, 192, 222, 0.1) 100%);
  border-radius: 10px;
  border-left: 4px solid #1095c1;
}

@media (max-width: 768px) {
  .staff-card {
    max-width: 100%;
  }
}

#sponsors {
  padding: 4rem 0;
  text-align: center;
  background: #f8f9fa;
}

#sponsors article {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

#sponsors h2 {
  font-size: 1.8rem;
  color: #1a1a2e;
}

#sponsors h3 {
  color: #666;
  font-weight: 400;
}

.sponsors-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.sponsor-logo {
  display: block;
  transition: all 0.3s ease;
  padding: 1rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.sponsor-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.sponsor-logo img {
  max-width: 180px;
  height: auto;
  border-radius: 8px;
  mix-blend-mode: multiply;
}

.shop-section {
  padding: 3rem 0;
}

.shop-card {
  background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border: 2px dashed rgba(16, 149, 193, 0.3);
  position: relative;
  overflow: hidden;
}

.coming-soon-badge {
  display: inline-block;
  background: linear-gradient(135deg, #1095c1 0%, #0d7a9e 100%);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(16, 149, 193, 0.3);
}

.shop-card h2 {
  color: #1a1a2e;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.shop-card > p {
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.shop-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.shop-item-placeholder {
  background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #ccc;
  transition: all 0.3s ease;
}

.shop-item-placeholder:hover {
  border-color: #1095c1;
  transform: translateY(-3px);
}

.shop-item-placeholder span {
  color: #888;
  font-weight: 600;
  font-size: 0.95rem;
}

.shop-notify {
  color: #666;
  font-size: 1rem;
}

.shop-notify a {
  color: #1095c1;
  font-weight: 600;
  text-decoration: none;
}

.shop-notify a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .shop-card {
    padding: 2rem 1.5rem;
  }
  
  .shop-card h2 {
    font-size: 1.8rem;
  }
  
  .shop-preview {
    grid-template-columns: 1fr;
  }
}

.directions-section {
  padding: 3rem 0;
}

.directions-section hgroup {
  text-align: center;
  margin-bottom: 2rem;
}

.directions-section hgroup h2 {
  font-size: 2.2rem;
  color: #1a1a2e;
}

.directions-section hgroup h3 {
  color: #1095c1;
  font-weight: 500;
}

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

.contact-card {
  background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(16, 149, 193, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-card h4 {
  color: #1a1a2e;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.contact-card .address {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.directions-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.directions-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.directions-btn.google {
  background: linear-gradient(135deg, #4285f4 0%, #3367d6 100%);
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.directions-btn.google:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

.directions-btn.apple {
  background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.directions-btn.apple:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-link {
  color: #1095c1;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #0d7a9e;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .directions-section hgroup h2 {
    font-size: 1.8rem;
  }
}

footer {
  background: #1a1a2e;
  padding: 2rem 0;
  text-align: center;
}

footer small {
  color: rgba(255, 255, 255, 0.7);
}

footer a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}

footer a:hover {
  color: #5bc0de;
}

a[role="button"] {
  display: inline-block;
  background: linear-gradient(135deg, #1095c1 0%, #0d7a9e 100%);
  color: #fff !important;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(16, 149, 193, 0.3);
  border: none;
}

a[role="button"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(16, 149, 193, 0.4);
}

a[role="button"].secondary {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  box-shadow: 0 6px 20px rgba(26, 26, 46, 0.3);
}

a[role="button"].secondary:hover {
  box-shadow: 0 10px 30px rgba(26, 26, 46, 0.4);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

main section, #gallery, #sessions, #camps, #newsletter, #sponsors {
  animation: fadeInUp 0.6s ease-out;
}

.cart-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
}

.cart-drawer.open {
  visibility: visible;
  opacity: 1;
}

.cart-drawer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.cart-drawer-content {
  position: absolute;
  top: 0;
  right: -400px;
  width: 400px;
  max-width: 90vw;
  height: 100%;
  background: white;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
}

.cart-drawer.open .cart-drawer-content {
  right: 0;
}

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #e9ecef;
}

.cart-drawer-header h3 {
  margin: 0;
  color: #1a1a2e;
}

.close-cart {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #666;
  line-height: 1;
  padding: 0;
  width: 40px;
  height: 40px;
}

.close-cart:hover {
  color: #e53935;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.cart-empty {
  text-align: center;
  color: #888;
  padding: 2rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
  margin-bottom: 0.75rem;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  display: block;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 0.25rem;
}

.cart-item-price {
  color: #1095c1;
  font-weight: 600;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #e53935;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
}

.cart-item-remove:hover {
  transform: scale(1.2);
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid #e9ecef;
  background: #f8f9fa;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a2e;
}

.checkout-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #1095c1 0%, #0d7a9e 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.checkout-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 149, 193, 0.3);
}

.checkout-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.cart-notification {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #1a1a2e;
  color: white;
  padding: 1rem 2rem;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  opacity: 0;
  transition: all 0.3s ease;
}

.cart-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.camp-weeks-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.5rem;
  margin-top: 1rem;
}

.add-to-cart-btn {
  background: linear-gradient(135deg, #43a047 0%, #2e7d32 100%);
  color: white;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0;
  text-align: center;
}

.add-to-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(67, 160, 71, 0.3);
}

.add-to-cart-btn.added {
  background: #666;
  cursor: default;
}

@media (max-width: 480px) {
  .cart-drawer-content {
    width: 100%;
    max-width: 100%;
  }
}
