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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
}

/* HEADER/NAVIGATION */
header {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #d4a853;
}

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

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #d4a853;
}

/* HERO SECTION */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 30px;
  background-image: url('../assets/hero_diverse_children_music-wedZav63.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.93);
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero video {
  max-width: 550px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  margin-bottom: 40px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero .subheadline {
  font-size: 24px;
  font-weight: 300;
  color: #555;
  opacity: 0.85;
}

/* SECTION STYLING */
section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 30px;
}

section h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 50px;
  color: #2c3e50;
}

/* GRID LAYOUTS */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #2c3e50;
}

.card p {
  color: #666;
  line-height: 1.8;
}

/* ICON STYLING */
.icon {
  width: 60px;
  height: 60px;
  background: #d4a853;
  border-radius: 50%;
  margin: 0 auto 20px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  background: #d4a853;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  margin-top: 20px;
}

.btn:hover {
  background: #c49843;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 168, 83, 0.3);
}

/* FOOTER */
footer {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 40px 30px;
  margin-top: 100px;
}

footer a {
  color: #d4a853;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .grid-3, .grid-2 {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero .subheadline {
    font-size: 18px;
  }
  
  nav ul {
    gap: 15px;
    font-size: 14px;
  }
}

/* PAGE-SPECIFIC STYLES */
.content-page {
  background: white;
  padding: 60px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin: 40px auto;
  max-width: 1000px;
}

.content-page h1 {
  font-size: 42px;
  margin-bottom: 30px;
  color: #2c3e50;
}

.content-page h2 {
  font-size: 32px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #2c3e50;
}

.content-page p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #555;
}

.content-page img {
  max-width: 100%;
  border-radius: 12px;
  margin: 30px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* HERO SMALL - FOR INNER PAGES */
.hero-small {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-small .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-small::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 62, 80, 0.6);
  z-index: 1;
}

.hero-small .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-small h1 {
  color: white;
  font-size: 56px;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}


/* VIDEO CONTROLS */
.video-container {
  position: relative;
  max-width: 550px;
  width: 100%;
  margin-bottom: 40px;
}

.custom-video-controls {
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 10;
}

.control-btn {
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.control-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.mute-icon {
  font-size: 24px;
}

/* APPLICATION FORM STYLES */
.application-form {
  max-width: 800px;
  margin: 40px auto;
}

.application-form h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 25px;
  color: #d4a853;
  border-bottom: 2px solid #d4a853;
  padding-bottom: 10px;
}

.form-group {
  margin-bottom: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2c3e50;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s;
}

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

.form-group small {
  display: block;
  margin-top: 5px;
  color: #666;
  font-size: 14px;
}

.form-group input[type="checkbox"] {
  margin-right: 10px;
}

/* FLOATING CONTACT BUTTON (MOBILE ONLY) */
.floating-contact {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.floating-contact-btn {
  background: #d4a853;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  box-shadow: 0 4px 12px rgba(212, 168, 83, 0.4);
  cursor: pointer;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.floating-contact-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(212, 168, 83, 0.6);
}

.contact-menu {
  display: none;
  position: absolute;
  bottom: 70px;
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  padding: 15px;
  min-width: 200px;
}

.contact-menu.active {
  display: block;
}

.contact-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  color: #2c3e50;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s;
  font-size: 16px;
}

.contact-menu a:hover {
  background: #f8f8f8;
}

.contact-menu a span {
  font-size: 20px;
}

/* ENHANCED MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  /* Show floating contact button on mobile */
  .floating-contact {
    display: block;
  }
  
  /* Navigation adjustments */
  nav {
    flex-direction: column;
    gap: 15px;
    padding: 15px 20px;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  /* Hero adjustments */
  .hero {
    min-height: 70vh;
    padding: 40px 20px;
  }
  
  .video-container {
    max-width: 100%;
  }
  
  .hero h1 {
    font-size: 28px;
    line-height: 1.3;
  }
  
  .hero .subheadline {
    font-size: 16px;
  }
  
  /* Hero small adjustments */
  .hero-small {
    height: 250px;
  }
  
  .hero-small h1 {
    font-size: 36px;
  }
  
  /* Content page adjustments */
  .content-page {
    padding: 30px 20px;
    margin: 20px 15px;
  }
  
  .content-page h1 {
    font-size: 32px;
  }
  
  .content-page h2 {
    font-size: 24px;
  }
  
  /* Card adjustments */
  .card {
    padding: 25px 20px;
  }
  
  /* Form adjustments */
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .application-form {
    padding: 0 15px;
  }
  
  /* Button adjustments */
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Section spacing */
  section {
    margin: 40px auto;
    padding: 0 20px;
  }
  
  section h2 {
    font-size: 32px;
  }
  
  /* Footer adjustments */
  footer {
    padding: 30px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
  }
  
  .hero-small h1 {
    font-size: 28px;
  }
  
  .content-page h1 {
    font-size: 28px;
  }
  
  nav ul {
    gap: 10px;
    font-size: 13px;
  }
}
