
body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  background-color: #1e1e1e;
  color: #e3e4eb;
}

header {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #2b2b2b;
}

h1 {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  color: #c39bd3;
  margin-bottom: 0.5rem;
}

.special-text {
  color: #c39bd3;
  font-family: 'Cinzel', serif;
  font-size: 2rem;
}


h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: #a0a0a0;
  margin-top: 0;
}

.tagline {
  font-size: 1.25rem;
  font-weight: bold;
  color: #cb0adf;
}

.courses {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 2rem 1rem;
  gap: 2rem;
  background-color: #111;
}

.course {
  flex: 1 1 300px;
  max-width: 300px;
  background-color: #292929;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
}

.course img {
  width: 100%;
  border-radius: 5px;
}

.course h2 {
  font-family: 'Cinzel', serif;
  color: #76c7c0;
}

.course p {
  font-size: 0.95rem;
  line-height: 1.4;
}

.button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: #cb0adf;
  color: #1e1e1e;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.button:hover {
  background-color: #ddb800;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #2b2b2b;
  font-size: 0.85rem;
}

.intro {
  background-color: #1c1c1c;
  padding: 2rem 1.5rem;
  text-align: left;
}

.intro .container {
  max-width: 800px;
  margin: 0 auto;
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ccc;
}

.intro-tagline {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  color: #cb0adf;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.intro-tagline {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  color: #cb0adf;
  font-style: italic;
  animation: fadeIn 1s ease-in-out 0.3s both;
}

@keyframes sparkle {
  0%, 100% {
    text-shadow: 0 0 5px #cb0adf, 0 0 10px #cb0adf, 0 0 15px #d03a7f;
  }
  50% {
    text-shadow: 0 0 10px #fff176, 0 0 20px #cb0adf, 0 0 30px #f06292;
  }
}

.intro-tagline {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  color: #cb0adf;
  font-style: italic;
  text-shadow: none;
  animation: none;
}

.button:hover {
  box-shadow: 0 0 8px #cb0adf, 0 0 16px #f06292;
  transform: scale(1.05);
}

.course h2 {
  font-family: 'Cinzel', serif;
  color: #cb0adf;
  position: relative;
  transition: text-shadow 0.3s ease;
}

@keyframes sparkleTitle {
  0% {
    text-shadow: 0 0 4px #cb0adf, 0 0 8px #f06292;
  }
  100% {
    text-shadow: 0 0 8px #fff176, 0 0 12px #cb0adf;
  }
}

.button:hover {
  box-shadow: 0 0 8px #cb0adf, 0 0 16px #f06292, 0 0 24px #d03a7f;
  transform: scale(1.05);
  transition: all 0.3s ease;
}


/* Navigation Styles */
.navbar {
  background-color: #1c1c1c;
  border-bottom: 1px solid #444;
  font-family: 'Lato', sans-serif;
  padding: 0.75rem 1rem;
  position: relative;
  z-index: 1000;
}

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

.logo {
  font-family: 'Cinzel', serif;
  color: #cb0adf;
  text-decoration: none;
  font-size: 1.5rem;
}

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

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #e3e4eb;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #cb0adf;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #2e2e2e;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  margin-top: 0.5rem;
  padding: 0.5rem 0;
  border-radius: 4px;
  z-index: 1;
}

.dropdown-content li {
  padding: 0;
  margin: 0;
}

.dropdown-content a {
  display: block;
  padding: 0.5rem 1rem;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Hamburger Menu */
.menu-icon {
  display: none;
  font-size: 1.8rem;
  color: #cb0adf;
  cursor: pointer;
}

.menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #1c1c1c;
    position: absolute;
    top: 100%;
    left: 0;
  }

  .menu-toggle:checked + .menu-icon + .nav-links {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    padding: 0.5rem 0;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    background: none;
  }

  .dropdown:hover > .dropdown-content,
.dropdown-content:hover {
  display: block;
}

.dropdown-content {
  list-style-type: none;
  padding-left: 0;
}

.dropdown-content li {
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

.dropdown-toggle {
  pointer-events: auto;
}

}
