body {
  margin: 0;
  font-family: 'Roboto', Arial, sans-serif;
  background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1500&q=80') center center/cover no-repeat fixed;
  color: #222;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(244,250,255,0.82);
  z-index: 0;
  pointer-events: none;
}

/* Ensure main content is above overlay */
body > * {
  position: relative;
  z-index: 1;
}

.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1100px;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 4px 24px rgba(33,147,176,0.10);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 28px;
  backdrop-filter: blur(6px);
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar .brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #2193b0;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar .brand .wave-icon {
  font-size: 1.5em;
  margin-right: 0;
}
.navbar-links {
  display: flex;
  gap: 28px;
}
.navbar a {
  color: #2193b0;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.08rem;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.navbar a:hover, .navbar a:focus {
  color: #fff;
  background: linear-gradient(90deg, #2193b0 60%, #6dd5ed 100%);
}

/* Hamburger menu for mobile */
.navbar .hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  margin-left: 16px;
}
.navbar .hamburger span {
  height: 4px;
  width: 100%;
  background: #2193b0;
  border-radius: 2px;
  margin: 3px 0;
  transition: all 0.3s;
}

@media (max-width: 700px) {
  .navbar {
    padding: 8px 12px;
    top: 10px;
  }
  .navbar-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 16px;
    background: rgba(255,255,255,0.98);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(33,147,176,0.10);
    flex-direction: column;
    gap: 0;
    min-width: 140px;
    overflow: hidden;
  }
  .navbar-links.open {
    display: flex;
  }
  .navbar .hamburger {
    display: flex;
  }
}

/* Adjust hero padding for new navbar */
.hero {
  padding-top: 100px;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://images.unsplash.com/photo-1502086223501-7ea6ecd79368?auto=format&fit=crop&w=1500&q=80') center center/cover no-repeat;
  filter: brightness(0.7) saturate(1.2);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 80px 20px 60px 20px;
}
.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  margin: 0 0 10px 0;
  letter-spacing: 2px;
  text-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.hero-content p {
  font-size: 1.3rem;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.wave-divider {
  display: block;
  width: 100vw;
  min-width: 100%;
  height: 60px;
  margin: -1px 0 0 0;
}

.wave-icon {
  font-size: 1.3em;
  vertical-align: middle;
  margin-right: 6px;
}

.section {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px 40px 20px;
  background: rgba(255,255,255,0.92);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(33,147,176,0.04);
}
.section h2 {
  font-family: 'Montserrat', sans-serif;
  color: #2193b0;
  margin-bottom: 20px;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.coach-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #6dd5ed;
}

.media-content {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
.media-content video, .media-content .media-gif {
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(33,147,176,0.10);
  max-width: 100%;
}
.media-gif {
  width: 220px;
}

.pricing-table {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.price-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(33,147,176,0.10);
  padding: 24px 20px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
}
.price-card h3 {
  margin-top: 0;
  color: #2193b0;
}
.price {
  font-size: 2rem;
  color: #6dd5ed;
  margin: 10px 0 16px 0;
}
.price-card ul {
  padding-left: 18px;
  margin: 0;
}

.contact-info {
  background: #e3f6fc;
  border-radius: 10px;
  padding: 20px;
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}
.contact-info a {
  color: #2193b0;
  text-decoration: none;
  font-weight: 500;
}
.social-links {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 18px;
}
.social-icon {
  font-size: 2rem;
  transition: color 0.2s;
}
.social-icon:hover {
  color: #6dd5ed;
}

footer {
  text-align: center;
  padding: 24px 0 12px 0;
  background: #2193b0;
  color: #fff;
  margin-top: 40px;
}

@media (max-width: 700px) {
  .about-content, .media-content, .pricing-table {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .coach-img {
    margin: 0 auto;
  }
  .section {
    padding: 0 8px 32px 8px;
  }
} 