
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: #f8fafc;
}

.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=1600&auto=format&fit=crop') center/cover;
  color: white;
  display: flex;
  flex-direction: column;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8%;
}

.logo {
  font-size: 1.3rem;
  font-weight: bold;
}

.logo img {
  height: 72px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
}

nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8%;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 28px;
}

.buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.primary {
  background: #0ea5e9;
  color: white;
}

.secondary {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1px solid white;
}

.section {
  padding: 80px 8%;
}

.section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.card {
  background: white;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.card h3 {
  margin-bottom: 12px;
}

.alt {
  background: #e0f2fe;
}

.content {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.about-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  text-align: left;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #1e3a5f;
}

.about-photo {
  flex: 0 0 420px;
  max-width: 420px;
}

.about-photo img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 36px rgba(0,0,0,0.18);
}

@media (max-width: 900px) {
  .about-inner {
    flex-direction: column;
  }

  .about-photo {
    flex: unset;
    max-width: 100%;
    width: 100%;
  }

  .about-text h2 {
    text-align: center;
  }
}

.cta {
  background: #0f172a;
  color: white;
  text-align: center;
  padding: 70px 8%;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 14px;
}

.cta p {
  margin-bottom: 24px;
}

.contact-box {
  max-width: 500px;
  margin: auto;
  background: white;
  padding: 32px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  text-align: center;
}

.schedule-section {
  background: #f0f9ff;
}

.schedule-intro {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 32px;
  color: #475569;
}

.schedule-embed {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  background: white;
}

.schedule-embed iframe {
  display: block;
  width: 100%;
  height: 700px;
  border: none;
}

.schedule-fallback {
  text-align: center;
  padding: 12px;
  font-size: 0.9rem;
  color: #64748b;
  border-top: 1px solid #e2e8f0;
}

.schedule-fallback a {
  color: #0ea5e9;
  font-weight: 600;
  text-decoration: none;
}

.schedule-fallback a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .schedule-embed iframe {
    height: 500px;
  }
}

.gallery-section {
  background: #0f172a;
}

.gallery-section h2 {
  color: white;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  image-orientation: from-image;
  transition: transform 0.25s, box-shadow 0.25s;
}

.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

footer {
  background: #111827;
  color: white;
  text-align: center;
  padding: 24px;
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 16px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }
}
