html {
  min-height: 100%;
  background: linear-gradient(
    135deg,
    #ffa5ff 0%,
    #d1b3ff 50%,
    #8298ff 100%
  );
}

body {
  font-family: 'Comfortaa', sans-serif;
  background: linear-gradient(
    135deg,
    #ffa5ff 0%,
    #d1b3ff 50%,
    #8298ff 100%
  );
  color: #3a3a3a;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}


h1, h2, h3 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

h2 {
  margin-top: 40px;
  font-size: 1.5rem;
}

p,
ul {
  font-size: 1.1rem;
  line-height: 1.6;
}

.cta {
  margin-top: 40px;
  padding: 15px 25px;
  display: inline-block;
  background-color: #6b4f4f;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.cta:hover {
  background-color: #5a4040;
}

/* Navigation Bar */
.navbar {
  background-color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
}

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

.logo {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  text-decoration: none;
  color: #333;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-family: 'Comfortaa', sans-serif;
  color: #333;
}

.nav-links a:hover {
  text-decoration: underline;
}

.youtube-section {
  margin-top: 60px;
  text-align: center;
}

.youtube-section h2 {
  margin-bottom: 20px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  max-width: 100%;
  margin: 0 auto 30px;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

@media (max-width: 600px) {
  .nav-container {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
