* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fafafa;
  color: #222;
  line-height: 1.6;
}
h1, h2, h3 {
  font-family: 'Patrick Hand SC', cursive;
  letter-spacing: 1px;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

h3 {
  font-size: 1.4rem;
}
.navbar {
  background: #b3e5fc;
  padding: 1rem;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .nav-links.open {
    max-height: 400px;
  }
}

.page-hero {
  padding: 5rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, #fff1f6, #fdfdfd);
}

.page-hero h1 {
  color: #ff5fa2;
}

.page-hero p {
  max-width: 700px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
  color: #555;
}
.bento {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 4rem 3rem;
}

.bento-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bento-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}
.bento-text {
  padding: 1.2rem 1.4rem;
}

.bento-text h3 {
  margin-bottom: 0.4rem;
}

.bento-text p {
  font-size: 0.95rem;
  color: #555;
}
.site-footer {
  background: #111;
  color: #eee;
  padding: 3rem 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.footer-links {
  margin: 1rem 0;
}

.footer-links a {
  color: #ff5fa2;
  margin: 0 0.8rem;
  text-decoration: none;
}

.footer-copy {
  font-size: 0.85rem;
  opacity: 0.7;
}
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #000080;
  color: white;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 40px;
  background: #6ec1ff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.logo {
  font-weight: bold;
  font-size: 1.2rem;
  color: #000080;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #000080;
  font-weight: 500;
}

/* HERO */
.hero {
  height: 100vh;
  background-image: url("../images/hero-artclass.jpg"); /* YOU ADD IMAGE */
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 60px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 128, 0.75);
}

.hero-content {
  position: relative;
  max-width: 700px;
  animation: fadeUp 1.2s ease forwards;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

.hero-intro {
  font-size: 1rem;
  margin-bottom: 30px;
  opacity: 0.85;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

.primary {
  background: white;
  color: #000080;
}

.secondary {
  border: 2px solid white;
  color: white;
}

/* CONTACT */
.contact {
  padding: 80px 40px;
  text-align: center;
  background: #000066;
}

.contact-links a {
  margin: 0 10px;
  color: #6ec1ff;
  text-decoration: none;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* BENTO / IMAGE GRID */
.bento {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 60px 20px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  width: 300px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.bento-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}

.bento-card .bento-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-family: 'Patrick Hand SC', cursive;
  font-size: 1rem;
  text-align: center;
  transition: background 0.3s;
}

.bento-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
}

.bento-card:hover .bento-text {
  background: rgba(0, 0, 0, 0.7);
}

/* Trips page hero */
.page-hero {
  padding: 120px 40px 60px 40px;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-family: 'Patrick Hand SC', cursive;
}

.page-hero p {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto;
}
.artclass-bento .bento-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 255, 200, 0.5); /* soft yellow glow for kids */
}
.gallery-bento .bento-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.bento-card .btn.small {
  display: inline-block;
  margin-top: 6px;
  padding: 6px 12px;
  font-size: 0.9rem;
  border-radius: 20px;
  text-decoration: none;
}

.bento-card .btn.small.primary {
  background: white;
  color: #000080;
}

.bento-card .btn.small.secondary {
  border: 2px solid white;
  color: white;
}
/* HOME BENTO */
.home-bento {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 60px 20px;
}

.home-bento .bento-card {
  position: relative;
  width: 320px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.home-bento .bento-card img {
  width: 100%;
  display: block;
  transition: transform 0.3s;
}

.home-bento .bento-card .bento-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px;
  text-align: center;
  font-family: 'Patrick Hand SC', cursive;
  font-size: 1.2rem;
  color: white;
  background: rgba(0,0,0,0.5);
  transition: background 0.3s;
}

/* Glow & background darken on hover */
.home-bento .bento-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(255,255,255,0.6);
}

.home-bento .bento-card:hover .bento-text {
  background: rgba(0,0,0,0.7);
}
/* FOOTER */
.site-footer {
  background-color: #000080; /* Navy blue */
  color: white;
  padding: 50px 20px;
  text-align: center;
  font-family: 'Patrick Hand SC', cursive;
}

.site-footer h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.site-footer p {
  font-size: 1rem;
  max-width: 700px;
  margin: 10px auto;
}

.footer-links {
  margin: 20px 0;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 12px;
  font-weight: bold;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #FFD700; /* gold glow on hover */
}

.footer-copy {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #ccc;
}
/* HERO SECTION ANIMATION */
.hero {
  position: relative;
  height: 90vh;
  background: url('../images/hero-artclass.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* dark overlay for cinematic feel */
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards 0.5s;
}

.hero-text h1 {
  font-size: 3rem;
  font-family: 'Patrick Hand SC', cursive;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

/* Call to action buttons */
.hero-buttons a {
  margin: 0 10px;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Patrick Hand SC', cursive;
  transition: transform 0.3s, background 0.3s;
}

.hero-buttons a.primary {
  background: white;
  color: #000080;
}

.hero-buttons a.secondary {
  border: 2px solid white;
  color: white;
}

.hero-buttons a:hover {
  transform: scale(1.05);
  background: #FFD700; /* subtle gold hover for CTA */
}

/* Fade-up keyframes */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.bento-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.bento-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}

.bento-card .bento-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px;
  text-align: center;
  font-family: 'Patrick Hand SC', cursive;
  font-size: 1.1rem;
  color: white;
  background: rgba(0,0,0,0.4);
  transition: background 0.3s;
}

/* Glow and darken effect on hover */
.bento-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(255, 255, 255, 0.6);
}

.bento-card:hover .bento-text {
  background: rgba(0,0,0,0.7);
}

/* Optional: darken everything else */
.home-bento:hover .bento-card:not(:hover) {
  filter: brightness(0.6);
  transition: filter 0.3s;
}
/* NAVBAR RESPONSIVENESS */
@media (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
    margin-top: 15px;
  }

  .nav-links li {
    margin: 0;
  }

  .navbar {
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
  }

  .logo {
    margin-bottom: 10px;
  }
}
/* HERO TEXT FOR SMALL SCREENS */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2rem; /* smaller text */
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-buttons a {
    padding: 10px 18px;
    font-size: 0.9rem;
    margin: 8px 0;
    display: inline-block;
  }
}

/* VERY SMALL SCREENS */
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.6rem;
  }

  .hero-text p {
    font-size: 0.9rem;
  }
}
/* BENTO CARDS RESPONSIVE */
@media (max-width: 768px) {
  .bento {
    flex-direction: column;
    align-items: center;
  }

  .bento-card {
    width: 90%; /* almost full width */
    max-width: 350px;
    margin-bottom: 20px;
  }
}
/* FOOTER RESPONSIVE */
@media (max-width: 768px) {
  .footer-content {
    padding: 30px 15px;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}
.bento-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.7); /* stronger glow */
}
/* Gallery Bento */
.gallery-bento {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
}

/* Bento Card */
.gallery-bento .bento-card {
  position: relative;
  width: 300px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
}

.gallery-bento .bento-card img {
  width: 100%;
  display: block;
  transition: transform 0.3s;
}

/* Text Overlay */
.gallery-bento .bento-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  text-align: center;
  background: rgba(0,0,0,0.5);
  color: white;
  font-family: 'Patrick Hand SC', cursive;
  transition: background 0.3s;
}

.gallery-bento .bento-text h3 {
  margin: 0 0 5px 0;
  font-size: 1.2rem;
}

.gallery-bento .bento-text p {
  font-size: 0.95rem;
  margin: 0 0 10px 0;
}

/* Buttons inside text overlay */
.btn-container {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.btn.small {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s, background 0.3s;
}

.btn.small.primary {
  background: white;
  color: #000080;
}

.btn.small.secondary {
  border: 2px solid white;
  color: white;
}

.btn.small:hover {
  transform: scale(1.05);
  background: #FFD700; /* subtle gold on hover */
  color: #000080;
}

/* Hover effects on card */
.gallery-bento .bento-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.7);
}

/* Optional: dim other cards on hover */
.gallery-bento:hover .bento-card:not(:hover) {
  filter: brightness(0.6);
}
/* TRIPS BENTO */
.trips-bento {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
}

/* Bento Card */
.trips-bento .bento-card {
  position: relative;
  width: 300px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
}

.trips-bento .bento-card img {
  width: 100%;
  display: block;
  transition: transform 0.3s;
}

.trips-bento .bento-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  text-align: center;
  background: rgba(0,0,0,0.5);
  color: white;
  font-family: 'Patrick Hand SC', cursive;
  transition: background 0.3s;
}

.trips-bento .bento-text h3 {
  margin: 0 0 5px 0;
  font-size: 1.2rem;
}

.trips-bento .bento-text p {
  font-size: 0.95rem;
}

/* Hover effect */
.trips-bento .bento-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.7);
}

.trips-bento:hover .bento-card:not(:hover) {
  filter: brightness(0.6);
}
.hero h1 {
  font-family: 'Patrick Hand SC', cursive;
  font-size: 3rem;
  text-align: center;
  color: #ff6a00; /* This is a bright pink */
  line-height: 1.2;
  margin-bottom: 15px;
}
/* Fade-up animation for hero text */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply animation to main hero heading */
.hero h1 {
  font-family: 'Patrick Hand SC', cursive;
  font-size: 3rem;
  text-align: center;
  color: #ff69b4; /* Pink text */
  line-height: 1.2;
  margin-bottom: 15px;
  animation: fadeUp 1.5s ease-out forwards; /* 1.5s fade-up effect */
}

/* Optional: Animate subheading slightly delayed */
.hero-subtitle {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 10px;
  animation: fadeUp 1.5s ease-out forwards;
  animation-delay: 0.5s;
}
.hero-buttons {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.5s ease-out forwards;
  animation-delay: 1s;
  display: flex;
  justify-content: center;
  gap: 20px;
}
/* Fade-up animation for bento cards */
.bento-card {
  opacity: 0; /* start invisible */
  transform: translateY(30px); /* start slightly below */
  transition: transform 0.3s, opacity 0.3s;
}

/* Class to activate animation */
.bento-card.show {
  opacity: 1;
  transform: translateY(0);
}
/* Bento card hover glow */
.home-bento .bento-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
}

/* Glow effect on hover */
.home-bento .bento-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(255, 105, 180, 0.7); /* pink glow */
}

/* Dim other cards when hovering one */
.home-bento:hover .bento-card:not(:hover) {
  filter: brightness(0.6);
}

/* Bento card images fill the card */
.home-bento .bento-card img {
  width: 100%;
  display: block;
  transition: transform 0.3s;
}

/* Bento card text overlay */
.home-bento .bento-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-family: 'Patrick Hand SC', cursive;
  transition: background 0.3s;
}
/* Art Classes Bento */
.art-classes-bento {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 50px 20px;
}

.art-classes-bento .bento-card {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.3s, opacity 0.3s, filter 0.3s;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

/* Show after JS adds .show */
.art-classes-bento .bento-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Hover glow effect */
.art-classes-bento .bento-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(255, 105, 180, 0.7);
}

.art-classes-bento:hover .bento-card:not(:hover) {
  filter: brightness(0.6);
}

/* Bento text overlay */
.art-classes-bento .bento-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px;
  text-align: center;
  background: rgba(0,0,0,0.5);
  color: white;
  font-family: 'Patrick Hand SC', cursive;
/* ================= NAVBAR ================= */

.navbar {
  background: #b3e5fc;
  padding: 1rem;
  position: relative;
}

/* TOP BAR */
.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  font-size: 1.4rem;
  font-weight: bold;
}

/* NAV LINKS (DESKTOP DEFAULT) */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

/* TOGGLE BUTTON — HIDDEN BY DEFAULT */
.nav-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* ================= MOBILE VIEW ================= */
@media (max-width: 768px) {

  /* SHOW BUTTON ON MOBILE */
  .nav-toggle {
    display: block;
  }

  /* HIDE MENU INITIALLY */
  .nav-links {
    flex-direction: column;
    width: 100%;
    background: #b3e5fc;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  /* SHOW MENU WHEN OPEN */
  .nav-links.open {
    max-height: 400px;
  }

  .nav-links li {
    padding: 0.8rem 0;
    text-align: center;
  }
}

