/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= ROOT COLORS ================= */
:root {
  --primary-pink: #e91e63;
  --light-pink: #fff0f5;
  --soft-pink: #f8bbd0;
  --gloss-pink: #ff6fa5;
  --text-dark: #333;
}

/* ================= BODY ================= */
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #fff0f5, #fff);
  color: var(--text-dark);
}

/* ================= HEADER (GLASS + GLOSS) ================= */
.main-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;

  background: rgba(255, 240, 245, 0.7); /* pink glass */
  backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(255, 182, 193, 0.3);

  /* glossy shadow */
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.1);
}

/* ================= CONTAINER ================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ================= NAV ================= */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* ================= LOGO ================= */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 45px;
  border-radius: 10px;
}

.logo span {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-pink);

  /* subtle gloss glow */
  text-shadow: 0 2px 6px rgba(233,30,99,0.2);
}

/* ================= NAV LINKS ================= */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  color: #555;
  font-weight: 500;

  position: relative;
  transition: 0.3s ease;
}

/* Gloss underline animation */
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;

  background: linear-gradient(90deg, var(--primary-pink), var(--gloss-pink));
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hover */
.nav-links a:hover {
  color: var(--primary-pink);
}

/* Active */
.nav-links a.active {
  color: var(--primary-pink);
  font-weight: 600;
}

/* ================= CTA BUTTON (GLOSSY) ================= */
.nav-cta {
  background: linear-gradient(135deg, var(--primary-pink), var(--gloss-pink));
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 25px;

  box-shadow: 0 6px 18px rgba(233,30,99,0.35);

  transition: all 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(233,30,99,0.5);
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--primary-pink);
  border-radius: 2px;
  transition: 0.3s;
}

/* Animate hamburger */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px,5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px,-5px);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .nav-links {
    position: absolute;
    top: 70px;
    right: 20px;

    flex-direction: column;
    width: 240px;
    padding: 20px;

    background: rgba(255, 240, 245, 0.95);
    backdrop-filter: blur(12px);

    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(233,30,99,0.15);

    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;

    transition: all 0.3s ease;
  }

  .nav-links.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
  }

  /* MOBILE CTA FIX */
  .nav-cta {
    background: none;
    color: var(--primary-pink) !important;

    border: 1px solid var(--primary-pink);
    border-radius: 10px;

    text-align: center;
    margin-top: 10px;
  }

  .nav-cta:hover {
    background: var(--primary-pink);
    color: #fff !important;
  }

  .hamburger {
    display: flex;
  }
}


/* ================= TABLET FIX ================= */
@media (max-width: 1024px) {

  .nav-container {
    padding: 0 15px;
  }

  /* Reduce spacing */
  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  /* Fix CTA */
  .nav-cta {
    padding: 6px 14px;
    font-size: 0.85rem;
    border-radius: 20px;
  }

  /* Prevent overflow */
  .logo span {
    font-size: 1rem;
  }
}





/* ================= FULL WIDTH ABOUT HERO ================= */
.about-hero {
  width: 100%;
  height: 70vh;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 0 5%;

  /* IMAGE BACKGROUND */
  background: 
    linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.6)),
    url("../img/hero1.jpeg") center/cover no-repeat;
}

/* CONTENT */
.about-hero-content {
  max-width: 700px;
}

/* TITLE */
.about-hero h1 {
  font-size: 2.6rem;
  color: var(--primary-pink);
  margin: 10px 0;
}

/* TEXT */
.about-hero p {
  color: #444;
  line-height: 1.6;
}

/* TAG */
.section-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-pink);
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* ================= ABOUT SECTION ================= */
.about-section {
  padding: 100px 5%;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ================= TEXT ================= */
.about-text h2 {
  font-size: 2.3rem;
  margin: 10px 0;
}

.about-text .lead {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 15px;
}

.about-text p {
  color: #666;
  line-height: 1.6;
}

/* ================= FEATURES ================= */
.about-features {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #444;
}

.feature i {
  color: var(--primary-pink);
  font-size: 1rem;
}

/* ================= VISUAL SIDE ================= */
.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;
}

/* LOGO ONLY */
.about-visual img {
  width: 220px;          /* increase size */
  max-width: 100%;
  height: auto;

  object-fit: contain;

  /* subtle presence */
  opacity: 0.95;

  transition: transform 0.3s ease;
}

/* subtle interaction */
.about-visual img:hover {
  transform: scale(1.03);
}
/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  .about-wrapper {
    grid-template-columns: 1fr;
  }

  .about-visual {
    height: 250px;
  }

}
/* ================= MISSION SECTION ================= */
.mission {
  width: 100%;
  padding: 80px 5%;

  background: linear-gradient(135deg, #fff0f5, #ffffff);
}

.mission-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;

  width: 100%;
}

/* CARDS */
.mission-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;

  box-shadow: 0 15px 40px rgba(233,30,99,0.1);
  transition: 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(233,30,99,0.2);
}

.mission-card h3 {
  color: var(--primary-pink);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.mission-card p {
  color: #555;
  line-height: 1.6;
}


/* ================= SECTION TAG (REUSE STYLE) ================= */
.section-tag {
  color: var(--primary-pink);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 1024px) {

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mission-wrapper {
    grid-template-columns: 1fr;
  }

  .about-text {
    padding: 0;
  }

  .about-hero h1 {
    font-size: 2.2rem;
  }
}


/* MOBILE */
@media (max-width: 768px) {

  .about-hero {
    padding: 100px 5% 60px;
  }

  .about-hero h1 {
    font-size: 1.9rem;
  }

  .about-hero p {
    font-size: 0.95rem;
  }

  .about-section,
  .mission {
    padding: 60px 5%;
  }

  .mission-card {
    padding: 25px;
  }

  .about-image img {
    border-radius: 15px;
  }
}