/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #f9f9f9;
  color: #111;
  line-height: 1.6;
}

/* Navigation */
nav {
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  flex-wrap: wrap;
}

nav a {
  color: #FFD700;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  font-size: 16px;
}

nav a:hover,
nav a.active {
  text-decoration: underline;
}

/* Hero */
#hero {
  padding: 80px 20px;
  text-align: center;
  color: #000;
  background-size: cover;
  background-position: center;
}

#hero h1 {
  font-size: 2.8em;
  margin-bottom: 15px;
}

#hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.btn {
  background-color: #FFD700;
  color: #000;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.btn:hover {
  background-color: #e6c200;
}

/* Courses Section */
#courses {
  padding: 60px 20px;
  text-align: center;
}

#courses h2 {
  font-size: 2.4em;
  margin-bottom: 30px;
}

#courses ul {
  list-style: none;
}

#courses li {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.course-icon {
  width: 40px;
  vertical-align: middle;
  margin-right: 10px;
}

/* Booking Form */
#contact {
  padding: 60px 20px;
  background-color: #fff8e1;
  text-align: center;
}

#contact h2 {
  margin-bottom: 15px;
  font-size: 2em;
}

#contact form {
  max-width: 500px;
  margin: auto;
  text-align: left;
}

#contact label {
  display: block;
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: bold;
}

#contact input,
#contact select,
#contact textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1em;
}

#contact button {
  margin-top: 15px;
  width: 100%;
  background-color: #FFD700;
  color: #000;
  padding: 12px;
  font-size: 1.1em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

#contact button:hover {
  background-color: #e6c200;
}

/* Calendly Section */
#calendar {
  padding: 60px 20px;
  text-align: center;
}

#calendar h2 {
  margin-bottom: 10px;
  font-size: 2em;
}

/* Pricing Section */
.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  padding: 40px 20px;
}

.pricing-card {
  background-color: #fff;
  border-left: 6px solid #FFD700;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.pricing-card .price {
  color: #FFD700;
  font-size: 1.6em;
  font-weight: bold;
  margin: 10px 0;
}

.small {
  font-size: 0.9em;
  color: #555;
}

/* Footer */
footer {
  background-color: #000;
  color: #FFD700;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
  }

  #hero h1 {
    font-size: 2em;
  }

  #hero p {
    font-size: 1em;
  }

  .pricing-container {
    grid-template-columns: 1fr;
  }
}
