/* Reset & basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #6F00FF;
  color: #FFF1F1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Navbar */
header {
  background: #3B0270;
  color: #FFF1F1;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.logo {
  font-size: 1.5rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-links li a.active {
  text-decoration: underline;
}

.nav-links li a {
  transition: color 0.3s, border-bottom 0.3s;
}

.nav-links li a:hover {
  color: #FFD700;
  border-bottom: 2px solid #FFD700;
}


.menu-btn {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Hero section */
main {
  flex: 1;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 120px);
  text-align: center;
  padding: 2rem;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #d3c4ff;
}

.hero-image {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-image img {
  max-width: 90%;
  width: 400px;
  height: auto;
  border-radius: 10px;
}

.hero, .hero-image {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
  animation-delay: 0.3s; /* stagger appearance */
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.image-caption {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #FFF1F1;
  text-align: center;
}

/* General page content (About/Contact) */
.page-content {
  min-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
}

.page-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.page-content p {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 1.5rem; /* space between paragraphs */
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 400px;
}

.contact-form input,
.contact-form textarea {
  padding: 0.5rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form button {
  padding: 0.7rem;
  background: #3B0270;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #52039e;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-image img {
    width: 100%;
    max-width: 300px;
  }

  .image-caption {
    font-size: 0.9rem;
  }
}

/* Footer */
footer {
  background: #3B0270;
  color: #FFF1F1;
  text-align: center;
  padding: 1rem;
}

.nav-links li a.active {
  text-decoration: underline;
}


/* Responsive nav */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #3B0270;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-btn {
    display: block;
  }
}

/* Page content links */
.page-content p a {
  color: #FFD700; /* gold color for the link */
  text-decoration: underline;
  transition: color 0.3s, text-shadow 0.3s;
}

.page-content p a:hover {
  color: #FFF1F1; /* changes to light color on hover */
  text-shadow: 0 0 5px #FFD700; /* subtle glow */
}

/* Social media bar */
.social-bar {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem 0;
  background: #3B0270; /* same as footer */
}

.social-bar a img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s, filter 0.3s;
}

.social-bar a img:hover {
  transform: scale(1.2);
  filter: brightness(1.2);
}





