/* ===== GRIP VALENCIA — SHARED STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;900&family=Inter:wght@300;400;500&display=swap');

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

:root {
  --black:    #0D0D0D;
  --yellow:   #F0C000;
  --white:    #F5F5F5;
  --gray:     #1A1A1A;
  --gray-mid: #2A2A2A;
  --gray-lt:  #888888;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 72px;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(240,192,0,0.15);
}

.nav-logo img {
  height: 38px;
  display: block;
}

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

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lang-switcher {
  display: flex;
  gap: 0.4rem;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--gray-lt);
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  cursor: pointer;
  padding: 2px 4px;
  transition: color 0.2s;
}

.lang-btn:hover, .lang-btn.active { color: var(--yellow); }
.lang-btn + .lang-btn { border-left: 1px solid var(--gray-mid); padding-left: 8px; }

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* ── FOOTER ── */
footer {
  background: var(--gray);
  border-top: 1px solid rgba(240,192,0,0.15);
  padding: 3rem 5vw 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo img { height: 32px; opacity: 0.8; }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.8rem;
}

.footer-col p, .footer-col a {
  font-size: 13px;
  color: var(--gray-lt);
  text-decoration: none;
  display: block;
  line-height: 1.9;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray-lt);
  text-decoration: none;
  font-family: var(--font-head);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-social a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid var(--gray-mid);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 11px;
  color: var(--gray-lt);
  font-family: var(--font-head);
  letter-spacing: 0.08em;
}

/* ── UTILITIES ── */
.yellow { color: var(--yellow); }
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.btn-primary {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 32px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(245,245,245,0.35);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 13px 30px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 5vw; }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(13,13,13,0.98);
    flex-direction: column;
    padding: 2rem 5vw;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(240,192,0,0.15);
  }

  .nav-links.open { display: flex; z-index: 200; }

  .nav-toggle { display: flex; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
