body {
  margin: 0;
  font-family: Arial, sans-serif;
}

h1, h2 {
  font-family: 'Pacifico', cursive;
  text-align: center;
}



body {
  font-family: 'Inter', sans-serif;
}

#vanta-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.content {
  color: white;
  max-width: 500px;
  margin: 0 auto;
  padding: 80px 20px;
}

header, section {
  min-height: 100vh;
  padding: 100px 0;
}


/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 60px 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  z-index: 10;
  font-family: 'Pacifico', cursive;
}

.navbar .logo {
  font-size: 1.5rem;
  color: white;
}

.navbar .nav-links {
  margin-right: 70px;
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar .nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar .nav-links li a:hover {
  color: #ffcc00;
}

/* Hamburger menu */
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* Responsive: small screens */
@media (max-width: 768px) {
  .navbar .nav-links {
    position: fixed;
    top: 60px; /* below navbar */
    right: -100%; /* hidden by default */
    width: 200px;
    height: calc(100% - 60px);
    background: rgba(0,0,0,0.8);
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    transition: right 0.3s ease-in-out;
    z-index: 9;
  }

  .navbar .nav-links.show {
    right: 0;
  }

  .menu-toggle {
    display: block;
  }
}


/* CONTACT FORM */

#contact {
  /* centers children horizontally */
  text-align: center;   /* centers text of h2 and p */
  padding: 60px 20px;   /* optional: spacing from edges */
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  padding: 10px 15px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  
}

.contact-form button {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  background-color: rgba(255,255,255,0.1); /* playful accent color */
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: rgba(255, 255, 255, 0.747);
}


.box-container {
  display: flex;
  flex-direction: column;
  gap: 20px;              /* space between boxes */
  justify-content: space-between;
}

.box {
  flex: 1;                /* all boxes same width */
  padding: 30px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  color: white;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.box:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.25);
}


@media (max-width: 768px) {
  .box-container {
    flex-direction: column;
  }
}


.content {
  max-width: 1000px; 
  
}

.box h3 {
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}

.box ul {
  text-align: left; /* keep bullets readable */
  
}

/* Tags container */
.tags {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center; /* centers tags */
}

/* Individual tag */
.tag {
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.25);
  font-size: 0.85rem;
  font-weight: 500;
  color: white;
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease, background 0.2s ease;
  
}

.tag:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.35);
}

.box-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 15px;
}

.box-header h3 {
  margin: 0;
  font-size: 1.4rem;
  font-family: 'Pacifico', cursive;
  text-align: left;
}

/* Date styling */
.date {
  font-size: 0.85rem;
  opacity: 0.8;
  font-weight: 500;
}
