/* =============================================
   ONE-MENU — style.css
   ============================================= */

:root {
  --black: #111111;
  --white: #ffffff;
  --cream: #faf8f3;
  --gold: #c8a96e;
  --gold-light: #e8d5a8;
  --gray: #888888;
  --dark-bg: #1a1a1a;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-h: 70px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--black);
  line-height: 1.7;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(17,17,17,0.95);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 1000;
}

.logo img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

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

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-short {
  height: 60vh;
  min-height: 420px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  animation: fadeUp 0.9s ease both;
}

.hero-logo {
  height: 80px;
  width: auto;
  margin: 0 auto 1.2rem;
  filter: brightness(0) invert(1);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  color: var(--gold-light);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.75rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s;
  cursor: pointer;
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
}
.btn-dark:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* ---- SECTION TITLES ---- */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin: 0.7rem auto 0;
}
.section-title.light { color: var(--white); }
.section-title.light::after { background: var(--gold-light); }

/* ---- INTRO SECTION ---- */
.intro {
  padding: 6rem 0;
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-text p {
  margin-bottom: 0.9rem;
  font-size: 1rem;
  color: #333;
}

.download-label {
  font-weight: 500;
  margin-top: 1.5rem !important;
  color: var(--black) !important;
}

.badges {
  display: flex;
  gap: 1rem;
  margin-top: 0.8rem;
  flex-wrap: wrap;
}
.badges img { height: 44px; width: auto; }

.intro-gif img {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

/* ---- FEATURES ---- */
.features {
  padding: 6rem 0;
  background: var(--dark-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  text-align: center;
  color: var(--white);
  transition: border-color 0.25s, background 0.25s;
}
.feature-card:hover {
  border-color: var(--gold);
  background: rgba(200,169,110,0.08);
}
.feature-icon { font-size: 2.2rem; margin-bottom: 0.8rem; }
.feature-sub { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}

/* ---- NEWS ---- */
.news {
  padding: 6rem 0;
  background: var(--white);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.news-card {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  transition: transform 0.25s, box-shadow 0.25s;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.news-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.news-body { padding: 1.4rem; }
.news-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--black);
}
.news-body p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }

/* ---- PARTNER PAGE ---- */
.become-intl { padding: 6rem 0; background: var(--cream); }
.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.perk {
  background: var(--white);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  border-left: 3px solid var(--gold);
  transition: transform 0.2s;
}
.perk:hover { transform: translateY(-3px); }
.perk-wide { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }
.perk-icon { font-size: 2rem; margin-bottom: 0.7rem; }
.perk h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.perk p { font-size: 0.88rem; color: var(--gray); }

.partner-visuals { padding: 5rem 0; background: var(--white); }
.visuals-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.visuals-row img { max-width: 320px; border-radius: 4px; }

.video-wrap {
  max-width: 720px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
}
.video-wrap iframe { width: 100%; height: 100%; }

/* ---- TEAM ---- */
.team { padding: 6rem 0; background: var(--cream); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.team-card {
  background: var(--white);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s;
}
.team-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.team-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--gold);
}
.team-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.team-card .role {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.team-card p { font-size: 0.83rem; color: var(--gray); line-height: 1.6; margin-bottom: 0.8rem; }
.team-card a { font-size: 0.8rem; color: var(--gold); font-weight: 500; }

/* ---- QUOTE ---- */
.quote-section { height: 320px; }
.quote-bg {
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
}
blockquote {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--gold-light);
  text-align: center;
  max-width: 700px;
  padding: 0 2rem;
  font-style: italic;
  letter-spacing: 0.03em;
}

/* ---- ABOUT PAGE ---- */
.about-section { padding: 6rem 0; background: var(--cream); }
.about-content { max-width: 740px; }
.about-intro { font-size: 1.05rem; color: #333; margin-bottom: 1.2rem; line-height: 1.8; }
.about-tagline { font-family: var(--font-display); font-size: 1.2rem; font-style: italic; color: var(--gold); margin-top: 1rem; }

.equal-pay { padding: 5rem 0; background: var(--white); }
.equal-pay-text { max-width: 740px; margin: 0 auto; }
.equal-pay-text p { margin-bottom: 1rem; color: #333; }

/* ---- FOOTER ---- */
.footer {
  background: var(--black);
  padding: 3.5rem 0 2rem;
  color: rgba(255,255,255,0.6);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}
.social-links {
  display: flex;
  gap: 1.2rem;
}
.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: border-color 0.2s, color 0.2s;
}
.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-badges { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.footer-badges img { height: 38px; width: auto; opacity: 0.85; }
.footer-copy { font-size: 0.78rem; }
.footer-copy a { color: var(--gold); }
.footer-copy a:hover { text-decoration: underline; }

/* ---- ANIMATION ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .intro-gif { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .perks-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .burger { display: block; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
  }
  .nav-links.open { display: flex; }
  .news-grid { grid-template-columns: 1fr; }
  .perks-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .visuals-row { flex-direction: column; }
}
