@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

body {
  margin: 0;
  background: #0e0b16;
  color: #fff5e1;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  overflow-x: hidden;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 0;
  filter: brightness(0.4);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 215, 0, 0.15) 0%,
    rgba(14, 11, 22, 0.9) 80%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeIn 2s ease-in-out;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 52px;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 16px;
  line-height: 24px;
  color: #f4ebd0;
  margin-bottom: 40px;
  font-weight: 400;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(90deg, #ffd700, #b68d40);
  color: #2c1a0c;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
}

.note {
  margin-top: 20px;
  font-size: 12px;
  opacity: 0.8;
}

/* ===== Animation ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 28px;
    line-height: 38px;
  }
  .subtitle {
    font-size: 14px;
    line-height: 22px;
  }
  .cta-button {
    padding: 12px 30px;
    font-size: 13px;
  }
}

/* ===== About Section ===== */
.about {
  background: #120d1c;
  padding: 100px 20px;
  color: #fff5e1;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-text p {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: #f4ebd0;
  margin-bottom: 20px;
}

.about-btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(90deg, #ffd700, #b68d40);
  color: #2c1a0c;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.about-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    margin-top: 40px;
  }

  .about-text h2 {
    font-size: 28px;
    line-height: 36px;
  }
}

/* ===== Learn Section ===== */
.learn {
  background: #0e0b16;
  padding: 100px 20px;
  color: #fff5e1;
  text-align: center;
}

.learn-container {
  max-width: 1200px;
  margin: 0 auto;
}

.learn h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 60px;
  font-weight: 700;
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.learn-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 10px;
  padding: 40px 20px;
  transition: all 0.3s ease;
}

.learn-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.learn-item .icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.learn-item h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 12px;
}

.learn-item p {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #f4ebd0;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .learn-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .learn-item {
    padding: 30px 15px;
  }

  .learn h2 {
    font-size: 26px;
    line-height: 34px;
  }
}

/* ===== Program Section ===== */
.program {
  background: #120d1c;
  padding: 100px 20px;
  color: #fff5e1;
}

.program-container {
  max-width: 1000px;
  margin: 0 auto;
}

.program h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 700;
}

.program-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.program-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #ffd700;
  border-radius: 6px;
  padding: 30px 25px;
  transition: all 0.3s ease;
}

.program-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.module-num {
  font-size: 28px;
  font-weight: 700;
  color: #ffd700;
  min-width: 32px;
}

.program-content h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffd700;
}

.program-content p {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #f4ebd0;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .program-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .module-num {
    font-size: 22px;
  }

  .program-content h3 {
    font-size: 15px;
  }
}

/* ===== Teacher Section ===== */
.teacher {
  background: #0e0b16;
  padding: 100px 20px;
  color: #fff5e1;
}

.teacher-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.teacher-photo {
  flex: 1;
  display: flex;
  justify-content: center;
}

.teacher-photo img {
  width: 100%;
  max-width: 420px;
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.1);
}

.teacher-text {
  flex: 1;
}

.teacher-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 10px;
  font-weight: 700;
}

.teacher-text h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 20px;
}

.teacher-text p {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: #f4ebd0;
  margin-bottom: 16px;
}

.teacher-btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(90deg, #ffd700, #b68d40);
  color: #2c1a0c;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.teacher-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .teacher-container {
    flex-direction: column;
    text-align: center;
  }

  .teacher-photo img {
    max-width: 320px;
  }

  .teacher-text h2 {
    font-size: 28px;
  }
}

.reviews {
  background: #0e0b16;
  padding: 100px 20px;
  color: #fff5e1;
  text-align: center;
}

.reviews h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 60px;
  font-weight: 700;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.review-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px 20px;
  transition: 0.3s ease;
}

.review-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.review-item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}

.review-text {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 15px;
  color: #f4ebd0;
}

.review-name {
  font-size: 13px;
  color: #ffd700;
  text-decoration: none;
}

.review-name:hover {
  text-decoration: underline;
}

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

/* ===== Price Section ===== */
.price {
  background: #0e0b16;
  padding: 120px 20px;
  text-align: center;
  color: #fff5e1;
}

.price-container {
  max-width: 600px;
  margin: 0 auto;
}

.price h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 20px;
  font-weight: 700;
}

.price-value {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 15px;
}

.price-desc {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: #f4ebd0;
  margin-bottom: 40px;
}

.price-btn {
  display: inline-block;
  padding: 16px 50px;
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(90deg, #ffd700, #b68d40);
  color: #2c1a0c;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
}

.price-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.price-note {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  margin-top: 20px;
  opacity: 0.8;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .price h2 {
    font-size: 26px;
  }

  .price-value {
    font-size: 28px;
  }
}

/* ===== Final CTA Section ===== */
.final-cta {
  position: relative;
  background: url('images/final-bg.jpg') center/cover no-repeat;
  padding: 140px 20px;
  text-align: center;
  color: #fff5e1;
  overflow: hidden;
}

.final-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 11, 22, 0.8);
  backdrop-filter: blur(2px);
  z-index: 0;
}

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

.final-cta h2 {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  line-height: 44px;
  margin-bottom: 20px;
  font-weight: 700;
}

.final-cta p {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 50px;
  color: #f4ebd0;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn.primary {
  background: linear-gradient(90deg, #ffd700, #b68d40);
  color: #2c1a0c;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.cta-btn.primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.cta-btn.secondary {
  border: 2px solid #ffd700;
  color: #ffd700;
  background: transparent;
}

.cta-btn.secondary:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: scale(1.05);
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .final-cta h2 {
    font-size: 26px;
    line-height: 34px;
  }

  .cta-buttons {
    flex-direction: column;
  }
}

/* ===== Footer ===== */
.footer {
  background: #0e0b16;
  padding: 60px 20px 30px;
  color: #fff5e1;
  text-align: center;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-logo {
  text-align: left;
}

.footer-logo img {
  width: 100px;
  margin-bottom: 10px;
}

.footer-logo p {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #ffd700;
}

.footer-links a {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #f4ebd0;
  text-decoration: none;
  margin: 0 10px;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #ffd700;
}

.footer-socials a {
  color: #ffd700;
  font-size: 20px;
  margin: 0 8px;
  transition: 0.3s ease;
}

.footer-socials a:hover {
  color: #fff5e1;
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  padding-top: 20px;
}

.footer-bottom p {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  color: #aaa;
  margin: 0;
}

/* ===== Responsive ===== */
@media (max-width: 700px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-logo {
    text-align: center;
  }

  .footer-links {
    margin-top: 10px;
  }
}
