/* ========================================================
   theUVproject — styles.css
   Palette: White/light-grey primary, Navy text, Yellow accents only
======================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0A192F;
  --yellow:      #FFE000;
  --white:       #FFFFFF;
  --grey-light:  #F4F5F7;   /* subtle section alternation */
  --grey-mid:    #E8E9EC;   /* borders, dividers */
  --text:        #0A192F;
  --muted:       #5A6A7E;
  --nav-h:       72px;
}

html { scroll-behavior: smooth; top: 0 !important; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  padding-top: var(--nav-h);
  top: 0 !important;
  position: static !important;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { line-height: 1.1; color: var(--navy); }
h1 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.02em; }
h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.2rem, 4vw, 3.5rem); letter-spacing: 0.03em; }
h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
p  { line-height: 1.7; color: var(--muted); }
a  { text-decoration: none; color: inherit; }

/* Accent classes — yellow only for small pops */
.yellow, .orange { color: var(--yellow); }
.navy  { color: var(--navy); }

/* Outlined headline text */
.outline {
  -webkit-text-stroke: 3px var(--navy);
  color: transparent;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(10,25,47,0.18);
}
.nav-left { display: flex; flex-direction: column; }
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
}
.nav-logo span { color: var(--yellow); }   /* UV stays yellow */
.nav-page-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.72);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--yellow); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ---- LANGUAGE SELECTOR ---- */
.lang-selector-container {
  margin-left: 0.5rem;
  position: relative;
  display: flex;
  align-items: center;
}
.lang-selector-container::before {
  content: '🌐';
  position: absolute;
  left: 10px;
  font-size: 0.85rem;
  pointer-events: none;
  z-index: 1;
  line-height: 1;
}
.custom-lang-select {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.18);
  color: var(--white);
  padding: 7px 32px 7px 32px;
  font-size: 0.78rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 20px;
  cursor: pointer;
  outline: none;
  transition: all 0.2s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%23FFE000' viewBox='0 0 24 24'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  min-width: 118px;
}
.custom-lang-select:hover {
  background-color: rgba(255,224,0,0.12);
  border-color: var(--yellow);
  color: var(--yellow);
}
.custom-lang-select option {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
}

/* Google Translate suppression */
iframe.skiptranslate, .skiptranslate, .goog-te-banner-frame,
#goog-gt-tt, .goog-te-balloon-frame { display: none !important; visibility: hidden !important; }
#google_translate_element { display: none !important; }
.goog-text-highlight { background-color: transparent !important; box-shadow: none !important; }

/* ---- HERO ---- */
.hero {
  background: var(--white);
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
/* Subtle grey wedge */
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 55%;
  background: var(--grey-light);
  z-index: 1;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}
/* Yellow accent line under nav */
.uv-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
  z-index: 10;
}
.hero-content {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.hero-headline {
  font-size: clamp(3.8rem, 9vw, 7.5rem);
  color: var(--navy);
  line-height: 0.95;
}
.hero-headline .outline {
  -webkit-text-stroke: 3px var(--navy);
  color: transparent;
}
/* Yellow accent on the highlighted word */
.hero-headline .orange,
.hero-headline .yellow { color: var(--yellow); }

.hero-sub {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; }

/* Hero animated sun */
.hero-visual {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 260px;
}
.sun-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--yellow);
  animation: pulse-ring 3s ease-out infinite;
}
.ring-1 { width: 120px; height: 120px; opacity: 0.6; animation-delay: 0s; }
.ring-2 { width: 180px; height: 180px; opacity: 0.35; animation-delay: 0.6s; }
.ring-3 { width: 240px; height: 240px; opacity: 0.15; animation-delay: 1.2s; }
@keyframes pulse-ring {
  0%   { transform: scale(0.95); }
  50%  { transform: scale(1.05); }
  100% { transform: scale(0.95); }
}
.sun-core {
  position: relative;
  z-index: 2;
  width: 90px;
  height: 90px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--navy);
  letter-spacing: 0.08em;
  box-shadow: 0 0 40px rgba(255,224,0,0.35);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
/* Primary: yellow bg, navy text — the main CTA accent */
.btn-primary {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
}
.btn-primary:hover {
  background: #f5d800;
  border-color: #f5d800;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,224,0,0.3);
}
/* Ghost: navy border on white bg */
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
/* Ghost on dark/navy backgrounds */
.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-ghost-light:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-2px);
}
.btn-full { width: 100%; text-align: center; }

/* ---- STAT BAR ---- */
.stat-bar {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 1.75rem 2rem;
  flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; align-items: center; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: var(--yellow);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.stat-divider { color: rgba(255,255,255,0.15); font-size: 1.8rem; }

/* ---- LAYOUT UTILITIES ---- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }
.section-light { background: var(--white); }
.section-alt   { background: var(--grey-light); }  /* subtle alternating section */
.section-dark  { background: var(--navy); }

/* Text inside dark sections */
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }
.section-dark p   { color: rgba(255,255,255,0.6); }
.section-dark .section-eyebrow { color: var(--yellow); }
.section-dark .link-arrow      { color: var(--yellow); }
.section-dark .link-arrow:hover { color: var(--white); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.section-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);        /* yellow eyebrow everywhere — small accent */
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: block;
}
.section-title { margin-bottom: 2.5rem; }

/* Accent spans in headings */
.yellow, .orange { color: var(--yellow); }

/* ---- CARDS ---- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: 12px;
  padding: 2.5rem;
  transition: all 0.28s cubic-bezier(0.16,1,0.3,1);
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--yellow);
  box-shadow: 0 10px 30px rgba(10,25,47,0.08);
}
/* Small yellow accent bar at top of each card */
.card::before {
  content: '';
  display: block;
  width: 36px;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  margin-bottom: 1.25rem;
}
.card-icon {
  display: none; /* emojis removed; hide empty icon divs */
}
.card-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--yellow);
  margin-bottom: 0.75rem;
}
.card p { font-size: 0.95rem; }

/* Cards inside dark section */
.section-dark .card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
}
.section-dark .card:hover {
  background: rgba(255,255,255,0.09);
  border-color: var(--yellow);
}
.section-dark .card::before { background: var(--yellow); }
.section-dark .card h3 { color: var(--white); }
.section-dark .card p  { color: rgba(255,255,255,0.6); }

/* ---- LINK ARROW ---- */
.link-arrow {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 1px;
  transition: color 0.2s;
}
.link-arrow:hover { color: var(--muted); }

/* ---- DIAGONAL DIVIDER ---- */
.diagonal-divider {
  height: 50px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 100%);
  margin-bottom: -1px;
}

/* ---- IMAGE PLACEHOLDERS ---- */
.img-placeholder {
  background: var(--grey-light);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 320px;
  color: var(--muted);
  font-weight: 600;
  border: 2px dashed var(--grey-mid);
}
.placeholder-icon { font-size: 2rem; color: var(--muted); }
.tall-placeholder { min-height: 440px; }

/* ---- CTA BAND ---- */
.cta-band {
  background: var(--navy);
  padding: 5rem 2rem;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
  color: var(--white);
}
.cta-band .orange,
.cta-band .yellow { color: var(--yellow); }
.cta-band-inner { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }

/* ---- FOOTER ---- */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0 2rem;
}
.footer p { color: rgba(255,255,255,0.55); }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  display: inline-block;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 2px;
}
.newsletter-form { display: flex; gap: 0.5rem; margin-top: 1rem; }
.newsletter-form input {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  background: rgba(255,255,255,0.07);
  color: var(--white);
  outline: none;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input:focus { border-color: var(--yellow); }
.newsletter-form button {
  padding: 0.8rem 1.5rem;
  background: var(--yellow);
  color: var(--navy);
  border: none;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: opacity 0.2s;
}
.newsletter-form button:hover { opacity: 0.85; }
.footer-social { display: flex; flex-direction: column; gap: 0.75rem; }
.social-link { color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 0.5rem; transition: color 0.2s; }
.social-link:hover { color: var(--yellow); }
.footer-bottom { text-align: center; padding-top: 2rem; color: rgba(255,255,255,0.28); font-size: 0.8rem; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--navy);
  padding: 6rem 2rem 5rem;
  border-bottom: 4px solid var(--yellow);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 40px solid rgba(255,255,255,0.04);
  pointer-events: none;
}
.page-hero .section-eyebrow { color: var(--yellow); }
.page-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--white);
  margin-top: 0.5rem;
}
.page-hero .orange,
.page-hero .yellow { color: var(--yellow); }

/* ---- ABOUT ---- */
.story-text h2 { margin-top: 2rem; margin-bottom: 1rem; color: var(--navy); }
.pull-quote {
  background: var(--grey-light);
  border-left: 5px solid var(--yellow);
  padding: 2rem;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--navy);
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

/* Stats band */
.stats-section {
  background: var(--navy);
  padding: 7rem 0;
}
.stats-section .section-eyebrow { color: var(--yellow); }
.stats-section h2  { color: var(--white); }
.stats-section .orange,
.stats-section .yellow { color: var(--yellow); }
.stats-section p   { color: rgba(255,255,255,0.6); }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.stat-block { border-top: 4px solid var(--yellow); padding-top: 1.5rem; }
.big-num    { font-family: 'Bebas Neue', sans-serif; font-size: 3.8rem; color: var(--yellow); line-height: 1; }
.stat-block p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* Values grid */
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.value-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  padding: 2.5rem;
  border-radius: 12px;
  transition: border-color 0.2s;
}
.value-card:hover { border-color: var(--yellow); }
.value-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--yellow);
  display: block;
  margin-bottom: 0.5rem;
}

/* ---- SERVICES ---- */
.pillar-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 700;
  border-radius: 50px;
  font-size: 0.78rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 0.06em;
}
.pillar-icon { display: none; } /* hide empty icon wrappers */

.feature-list { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.feature-list li { position: relative; padding-left: 1.6rem; color: var(--muted); line-height: 1.6; }
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  border: 2px solid var(--navy);
}
.section-dark .feature-list li { color: rgba(255,255,255,0.65); }
.section-dark .feature-list li::before { background: var(--yellow); border-color: var(--white); }

.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 3rem; }
.audience-card {
  background: var(--white);
  padding: 1.5rem 2rem;
  text-align: center;
  font-weight: 700;
  border-radius: 8px;
  border: 2px solid var(--grey-mid);
  color: var(--navy);
  font-size: 0.95rem;
  transition: all 0.2s;
}
.audience-card:hover { border-color: var(--yellow); }
.section-dark .audience-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  color: var(--white);
}
.section-dark .audience-card:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--navy);
}

/* ---- CONTACT ---- */
.contact-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 5rem; }
.contact-form   { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.form-row       { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group     { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.9rem 1rem;
  border: 1.5px solid var(--grey-mid);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(255,224,0,0.25);
}
.form-success {
  background: #e6f4ea;
  color: #1a5c2a;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

.info-card {
  background: var(--navy);
  padding: 2.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}
.info-card h3 { color: var(--white); margin-bottom: 1rem; font-size: 1.1rem; }
.info-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.25rem;
  letter-spacing: 0.08em;
  display: block;
}
.info-item {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}
.info-item a { color: var(--white); text-decoration: underline; }
.info-item a:hover { color: var(--yellow); }
.response-card { margin-bottom: 0; }
.response-card p { color: rgba(255,255,255,0.65); }
.response-card strong { color: var(--yellow); }
.social-link-lg {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.72);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.social-link-lg:hover { color: var(--yellow); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .two-col, .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .hero::before { display: none; }
  .hero-visual  { display: none; }
  .card-grid, .stats-grid, .audience-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .card-grid, .stats-grid, .audience-grid, .form-row, .values-grid { grid-template-columns: 1fr; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--navy);
    padding: 2rem;
    gap: 1.5rem;
    border-top: 3px solid var(--yellow);
    box-shadow: 0 8px 20px rgba(10,25,47,0.2);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero { padding: 4rem 1.5rem; }
  .section { padding: 5rem 0; }
}
