:root {
  --jazz-black: #111;
  --jazz-gold: #d9a441;
  --button-background: #b66e30;
  --button-background-hover: #a85f27;
  --button-text-color:  #f6dfc2;
  --text-light: #f9f9f9;
  --accent-glow: rgba(217, 164, 65, 0.2);
  --accent-color: #ffb86b; /* soft orange used for your Get Started button */
  --nav-hover-color: var(--accent-color);
  --site-background: #0b1f2d;
  --hero-background: var(--site-background);
  --max-width: 1200px;
}


body { background-color: var(--site-background); color: white; font-family: Arial, sans-serif; } /* ...truncated for brevity... */



.site-header {
  background-color: #0d2235; /* or transparent if you prefer */
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
}

.navcontainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.branding .logo {
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}

/* Tablets and small laptops (768px and up) */
@media (min-width: 768px) {
  .main-nav a {
    font-size: 1.15rem;
  }

  .branding .logo {
    font-size: 1.4rem;
  }
}

/* Larger desktops (1024px and up) */
@media (min-width: 1024px) {
  .main-nav a {
    font-size: 1.25rem;
  }

  .branding .logo {
    font-size: 1.7rem;
  }
}

.main-nav a:hover {
  text-decoration: underline;
  color: var(--nav-hover-color);
}


/* Base container */
.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 2rem;
}

.section-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem; /* Matches hero-content spacing */
}

/* Hero section */
.hero {
  background-color: var(--hero-background);
  padding: 4rem 2rem;
}

/* Text block */
.hero-content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.hero-button {
  background-color: var(--button-background); 
  color: var(--button-text-color);    
  font-weight: bold;
  font-size: 1.5rem;   
  padding: 1rem 2rem;  
  border: none;
  border-radius: 8px;  
  width: fit-content;
  cursor: pointer;
  text-decoration: none;  
  transition: background-color 0.3s ease;
}

.hero-button:hover {
  background-color: #a85f27;   /* Slightly darker on hover */
}


/* .btn-primary {
  background-color: #F4A261;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
} */

/* .btn-primary:hover {
  background-color: #e07b39;
} */

/* Image block */
.hero-image img {
  max-width: 100%;
}

.hero-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.hero-content, .hero-image {
  flex: 1 1 45%;
}


.skills-section {
  padding: 0.5rem 0.5rem;
  text-align: center;
}

.skills-section h2,
.featured-etude h2,
.featured-lesson-section h2 {
  font-family: 'Roboto Slab', serif; /* Match hero font */
  font-size: 2.25rem;
  color: #ffffff;
  margin-bottom: 1rem;
  text-align: left;
}

.featured-etude {
  max-width: 960px;
  margin: 3rem auto;
  padding: 2rem;
  text-align: left;
}

.featured-etude img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
}

.featured-etude p {
  font-size: 1rem;
  color: var(--text-light);
}

.skills-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
  margin-bottom: 2rem;
  color: var(--text-color); /* or white if using dark background */
}

.skills-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.skill-card {
  background-color: #122536; /* or your card bg color */
  padding: 1.5rem;
  border-radius: 0.75rem;
  min-width: 200px;

  color: white;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.skill-card img {
  height: 64px;
  margin-bottom: 1rem;
}




/* .featured-lesson-section h2 {
  font-family: 'Roboto Slab', serif;
  font-size: 1.75rem;
  color: #ffffff;
  margin-bottom: 1rem;
  text-align: left;
} */

.featured-lesson-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: none;
}

.lesson-thumbnail {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  max-width: 70%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.lesson-thumbnail img {
  display: block;
  width: 100%;
  height: auto;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  color: #333;
  font-size: 1.25rem;
  padding: 10px 14px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  cursor: pointer;
}

.lesson-info h3 {
  font-family: 'Roboto Slab', serif;
  font-size: 1.75rem;
  color: #ffffff;
  margin: 0 0 0.5rem 0;

}

.lesson-info p {
  /* font-family: 'Roboto Slab'; */
  font-size: 1.25rem;
  color: #ffffff;
  margin: 0 0 0.5rem 0;

}

.watch-button {
  display: inline-block;
  background-color: #0e1d28;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  border: 1px solid #fff;
}

.watch-button:hover {
  background-color: #1a2f40;
}


