* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* TOP BAR */
.header-top {
  background-color: #4DA3A1;
  color: white;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 8px 0;
  text-align: center;
  z-index: 2000;
  border-bottom: 2px solid white;
}

.header-top p {
  margin: 0;
  color: rgb(0, 204, 255);
  text-align: center;
}

.header-top a{
  text-align: center;
  text-decoration: none;
  color: #ceffff;
  font-size: 25px;
  font-weight: 600;
}

/* MAIN HEADER */
header {
  width: 100%;
  background: #4DA3A1;
  color: #ffffff;
  position: fixed;
  top: 34.5px; /* sits BELOW header-top */
  left: 0;
  z-index: 1500;
  padding: 1rem 0;
}

/* Prevent content from hiding behind both headers */
body {
  padding-top: 180px;
}

/* NAV CONTAINER */
.nav {
  max-width: 1200px;
  margin: auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  height: 150px;
  width: auto;
}

/* NAV MENU */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1.5rem;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: rgb(255, 186, 197);
}

.nav-menu img {
  width: 200px;
  height: auto;
  margin-top: -3pc;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 3000;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #fff;
  transition: 0.3s ease;
}

/* MOBILE MENU */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%; /* directly under main header */
    left: 0;
    width: 100%;
    background: #4DA3A1;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.35s ease, opacity 0.3s ease;
  }

  .nav-menu.show {
    max-height: 350px;
    opacity: 1;
    pointer-events: auto;
  }

  /* Hamburger animation */
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-menu img{
    margin-top: 0.9pc;
  }
}


/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  overflow: hidden;
}

/* VIDEO */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Desktop: cinematic fill */
  z-index: 1;
}

/* CONTENT BOX */
.hero-content {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.45);
  color: white;
  padding: 2rem 3rem;
  border-radius: 12px;
  max-width: 90%;
  backdrop-filter: blur(4px);
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  line-height: 1.6;
}

/* MOBILE FIXES */
@media (max-width: 480px) {

  .hero {
    position: relative;
    width: 100%;
    height: 60vh; /* You can adjust this */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;     /* Force correct width */
    height: auto;     /* Let height follow naturally */
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    margin-top: -4pc;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 1.2rem 1.5rem;
    background-color: rgba(0, 0, 0, 0, 0.164);
    border-radius: 12px;
    max-width: 90%;
    margin-top: -20vh; /* Move text upward */
  }


  .hero-content h1 {
    font-size: 1.4rem; /* smaller title */
  }

  .hero-content p {
    font-size: 0.9rem; /* smaller paragraph */
    line-height: 1.4;
  }
}



/* CONTENT SECTION */
.content-section {
  padding: 4rem 2rem;
  text-align: center;
  background: #f8fafc;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 2rem;
  color: #467eff;
  font-weight: 700;
}

/* GRID */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

/* BOXES */
.content-box {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.content-box:hover {
  transform: translateY(-6px);
}

.content-box img {
  width: auto;
  height: 290px;
  object-fit: cover;
}

.content-box h3 {
  font-size: 1.3rem;
  margin: 1rem 0 0.5rem;
  color: #4f82fc;
}

.content-box p {
  padding: 0 1rem 1.5rem;
  font-size: 1rem;
  color: #475569;
}
@media (max-width: 480px) {
  .content-section{
    margin-top: -10pc;
  }
}


/* WATCH ALL BUTTON */
.watch-all-container {
  margin-top: 2.5rem;
}

.watch-all-btn {
  margin-bottom:7pc;
  display: inline-block;
  background: #4DA3A1;
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  text-decoration: none;
  transition: 0.3s ease;
}

.watch-all-btn:hover {
  background: #ffffff;
  color: #4DA3A1;
  border: 2px solid #4DA3A1;
}

.view-link {
  margin-bottom: 12px;
  display: inline-block;
  padding: 10px 18px;
  background-color: #4DA3A1;      /* YouTube red */
  color: #ffffff;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.view-link:hover {
  background-color: #fff;
  color: #4DA3A1;
  transform: translateY(-1px);
  border: 1px solid #4DA3A1;
}

.view-link:active {
  transform: translateY(0);
  background-color: #ffffff;
  border: 2px solid #4DA3A1;
  color: #4DA3A1;
}

/* FOOTER */
.site-footer {
  background: #4DA3A1;
  color: #ffffff;
  padding: 2rem 1rem;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-link-a {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link-a h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
  color: #d5faff;
}

.footer-link-a a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1.1rem;
  transition: 0.3s ease;
}

.footer-link-a a:hover {
  color: rgb(255, 186, 197);
}

.site-footer p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* SOCIAL MEDIA BRAND COLORS */
.footer-link-a a.yt {
  color: #FF0000; /* YouTube red */
}

.footer-link-a a.tiktok {
  color: #000000; /* TikTok black */
}

.footer-link-a a.ig {
  color: #E1306C; /* Instagram pink */
}

.footer-link-a a.fb {
  color: #1877F2; /* Facebook blue */
}

/* Icon spacing */
.footer-link-a a i {
  margin-right: 8px;
}

/* Hover effect (keeps your pink hover but slightly brighter) */
.footer-link-a a:hover {
  color: rgb(255, 255, 255);
}

/* ZaraBoo brand colors */
.footer-link-a a.zb {
  color: #FF69B4; /* Hot pink – cute + fun */
}

.footer-link-a a.zbk {
  color: #FFD700; /* Gold – bright + kid‑friendly */
}




/* MOBILE */
@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-link-a h2 {
    font-size: 1.3rem;
  }

  .footer-link-a a {
    font-size: 1.1rem;
  }
}
