/* ============================================================
   WAYS2RAISE — MASTER BRAND CSS
   Apply to every page via <link rel="stylesheet" href="brand.css">
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* --- CSS Variables --- */
:root {
  --navy:   #1A1464;
  --pink:   #E91E8C;
  --blue:   #00AEEF;
  --green:  #8DC63F;
  --yellow: #FFD700;
  --white:  #FFFFFF;
  --light:  #F8F9FA;
  --dark:   #111111;
  --hero-gradient: linear-gradient(135deg, #00AEEF 0%, #7B2FBE 30%, #E91E8C 60%, #8DC63F 100%);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #222;
  font-size: 16px;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.w2r-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.w2r-nav .nav-logo img {
  height: 42px;
  width: auto;
}

.w2r-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.w2r-nav .nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  transition: all 0.2s;
  white-space: nowrap;
}

.w2r-nav .nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.12);
}

.w2r-nav .nav-links a.active {
  color: var(--yellow);
}

.w2r-nav .nav-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-signup {
  background: var(--pink);
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}
.btn-signup:hover { background: #c91578; transform: translateY(-1px); }

.btn-login {
  background: transparent;
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 25px;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}
.btn-login:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  background: var(--navy);
  padding: 20px 24px 30px;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.nav-mobile-menu.open { display: block; }
.nav-mobile-menu ul { list-style: none; }
.nav-mobile-menu ul li { border-bottom: 1px solid rgba(255,255,255,0.1); }
.nav-mobile-menu ul li a {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 0;
}
.nav-mobile-menu .mobile-ctas {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.nav-mobile-menu .mobile-ctas a { flex: 1; text-align: center; }

@media (max-width: 900px) {
  .w2r-nav .nav-links { display: none; }
  .w2r-nav .nav-ctas { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── Dropdown ── */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  cursor: pointer;
  user-select: none;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 8px 0;
  min-width: 220px;
  list-style: none;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  z-index: 2000;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-menu li a {
  display: block;
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  transition: background 0.15s;
  white-space: nowrap;
}
.nav-dropdown-menu li a:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* Mobile menu section label + divider */
.mobile-section-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--yellow);
  padding: 16px 0 6px;
  border-bottom: none !important;
}
.mobile-divider {
  border-bottom: 2px solid rgba(255,255,255,0.15) !important;
  padding: 0 !important;
  margin: 8px 0;
}

/* ============================================================
   PAGE HERO (inner pages — not the homepage)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 70px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Background image layer — same teens hiking photo as homepage */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/teens_hill_hiking.webp');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.22;
  z-index: 0;
  pointer-events: none;
}

/* Vibrant gradient overlay — matches homepage exactly */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,174,239,0.95) 0%, rgba(233,30,140,0.85) 55%, rgba(141,198,63,0.75) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Blob decorations inside hero */
.page-hero .blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  pointer-events: none;
  z-index: 2;
}
.page-hero .blob-1 { width: 200px; height: 200px; background: #fff; top: -60px; left: -60px; }
.page-hero .blob-2 { width: 150px; height: 150px; background: #fff; bottom: -40px; right: 80px; }
.page-hero .blob-3 { width: 80px; height: 80px; background: var(--yellow); top: 20px; right: 200px; opacity: 0.2; }

.page-hero .hero-pill {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.3);
  position: relative;
  z-index: 3;
}

.page-hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  position: relative;
  z-index: 3;
}

.page-hero h1 span { color: var(--yellow); }

.page-hero p {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.9);
  max-width: 620px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 3;
}

/* Decorative shapes in hero */
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}
.hero-shapes .shape {
  position: absolute;
  font-size: 22px;
  opacity: 0.35;
  color: #fff;
  font-weight: 900;
}

/* ============================================================
   SECTION WRAPPERS
   ============================================================ */
.section-white {
  background: #fff;
  padding: 70px 24px;
  position: relative;
  overflow: hidden;
}

.section-light {
  background: var(--light);
  padding: 70px 24px;
  position: relative;
  overflow: hidden;
}

.section-navy {
  background: var(--navy);
  padding: 70px 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.section-pink {
  background: var(--pink);
  padding: 70px 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.section-blue {
  background: var(--blue);
  padding: 70px 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-label {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.section-label.blue { background: var(--blue); }
.section-label.green { background: var(--green); }
.section-label.navy { background: var(--navy); }
.section-label.yellow { background: var(--yellow); color: var(--navy); }

.section-title {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-title.white { color: #fff; }

.section-subtitle {
  font-size: 16px;
  color: #555;
  max-width: 640px;
  margin-bottom: 40px;
}

.section-subtitle.white { color: rgba(255,255,255,0.85); }

/* ============================================================
   BLOB BACKGROUND DECORATIONS (white sections)
   ============================================================ */
.blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.blobs .b {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.blobs .b1 { width: 280px; height: 280px; background: var(--pink); top: -80px; left: -80px; }
.blobs .b2 { width: 200px; height: 200px; background: var(--blue); bottom: -60px; right: -60px; }
.blobs .b3 { width: 120px; height: 120px; background: var(--green); top: 40%; left: 60%; }
.blobs .b4 { width: 80px; height: 80px; background: var(--yellow); top: 20%; right: 15%; opacity: 0.12; }

.blobs .sym {
  position: absolute;
  font-size: 28px;
  font-weight: 900;
  opacity: 0.12;
  color: var(--pink);
}
.blobs .sym.blue { color: var(--blue); }
.blobs .sym.green { color: var(--green); }
.blobs .sym.navy { color: var(--navy); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.btn-primary:hover { background: #c91578; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(233,30,140,0.35); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 30px;
  border: 2.5px solid var(--navy);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.btn-secondary:hover { background: var(--navy); color: #fff; }

.btn-white {
  display: inline-block;
  background: #fff;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 30px;
  border: 2.5px solid rgba(255,255,255,0.7);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.w2r-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 60px 24px 30px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand img { height: 40px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.65); max-width: 240px; }

.footer-col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--pink); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.45); }

.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: background 0.2s;
}
.footer-socials a:hover { background: var(--pink); }

.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.45); }
.footer-legal a:hover { color: var(--pink); }

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  color: #fff;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 9999;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-banner p { font-size: 14px; color: rgba(255,255,255,0.85); flex: 1; min-width: 200px; }
.cookie-banner p a { color: var(--blue); text-decoration: underline; }
.cookie-banner .cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner .btn-accept {
  background: var(--green); color: #fff; font-weight: 700;
  padding: 8px 20px; border-radius: 20px; border: none; cursor: pointer; font-size: 14px;
}
.cookie-banner .btn-decline {
  background: transparent; color: rgba(255,255,255,0.7); font-weight: 600;
  padding: 8px 16px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.3); cursor: pointer; font-size: 14px;
}
