/* ═══════════════════════════════════════════════════
   T OUTDOOR ADVERTISING — SHARED STYLESHEET
   Covers: index.html · about.html · contact.html
═══════════════════════════════════════════════════ */

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

:root {
  --red:      #E8291C;
  --orange:   #F7941D;
  --black:    #0E0E0E;
  --offwhite: #F5F3EE;
  --gray:     #9A9A8E;
  --light:    #FFFFFF;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--light);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(14, 14, 14, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; overflow: hidden; max-height: 60px; }
.logo img { height: 40px; max-height: 40px; width: auto; max-width: 220px; display: block; object-fit: contain; flex-shrink: 0; }
.logo-t { font-family: 'Bebas Neue', sans-serif; font-size: 34px; color: var(--red); letter-spacing: -1px; line-height: 1; }
.logo-word { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--light); letter-spacing: 3px; }
nav ul { list-style: none; display: flex; gap: 36px; align-items: center; }
nav ul li a {
  color: rgba(255,255,255,0.6); text-decoration: none;
  font-size: 12px; font-weight: 500; letter-spacing: 1.8px; text-transform: uppercase;
  transition: color 0.2s;
}
nav ul li a:hover,
nav ul li a.active { color: var(--orange); }
.nav-cta {
  background: var(--red) !important; color: #fff !important;
  padding: 10px 22px; border-radius: 4px;
}
.nav-cta:hover { background: var(--orange) !important; color: #fff !important; }

/* ── BURGER TOGGLE ── */
.menu-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 2100;
}

.menu-toggle .bar {
  width: 28px;
  height: 2px;
  background-color: var(--light);
  transition: all 0.3s ease;
}


/* ── SECTION BASE ── */
section { padding: 120px 48px; }
.section-tag {
  font-size: 11px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.section-tag::before { content: ''; width: 24px; height: 1px; background: currentColor; flex-shrink: 0; }
h2.display {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 5vw, 68px); letter-spacing: -1px; line-height: 0.95;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--red); color: #fff; padding: 16px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 500; letter-spacing: 1.8px; text-transform: uppercase;
  border: none; border-radius: 4px; cursor: pointer; transition: background 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--orange); }
.btn-ghost {
  background: transparent; color: rgba(255,255,255,0.65); padding: 16px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 500; letter-spacing: 1.8px; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 4px; cursor: pointer;
  transition: all 0.2s; text-decoration: none; display: inline-block;
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-white {
  background: #fff; color: var(--red); padding: 18px 48px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 500; letter-spacing: 1.8px; text-transform: uppercase;
  border: none; border-radius: 4px; cursor: pointer;
  white-space: nowrap; flex-shrink: 0; transition: all 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-white:hover { background: var(--black); color: #fff; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--red); padding: 100px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
}
.cta-band h2.display { color: #fff; }
.cta-band p { font-size: 16px; color: rgba(255,255,255,0.72); max-width: 420px; margin-top: 16px; line-height: 1.7; }

/* ── FOOTER ── */
footer { background: #090909; padding: 80px 48px 40px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1.4fr 1fr;
  gap: 60px; margin-bottom: 60px;
}
.footer-brand p {
  font-size: 14px; color: rgba(255,255,255,0.3); line-height: 1.8;
  margin-top: 16px; max-width: 300px;
}
.footer-col h4 {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 14px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--light); }
.footer-col p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.8; }
.footer-col p + p { margin-top: 16px; }
.footer-col .email a { color: var(--orange); text-decoration: none; }
.footer-col .reg { font-size: 12px; color: rgba(255,255,255,0.18); margin-top: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05); padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.2); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 160px 48px 100px;
  position: relative; overflow: hidden;
  background: var(--black);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a0a00 0%, #0E0E0E 55%, #0a0a18 100%);
}
.page-hero-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image:
    linear-gradient(rgba(255,255,255,0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-accent {
  position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: linear-gradient(180deg, rgba(232,41,28,0.10) 0%, rgba(247,148,29,0.04) 100%);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}
.page-hero-wordmark {
  position: absolute; right: 2%; top: 50%; transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif; font-size: 180px; line-height: 0.85;
  color: var(--red); letter-spacing: -8px; opacity: 0.07;
  pointer-events: none; user-select: none;
}
.page-hero-content { position: relative; max-width: 720px; }
.page-hero .section-tag { margin-bottom: 24px; }
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 8vw, 104px); line-height: 0.9;
  letter-spacing: -2px; margin-bottom: 28px;
}
.page-hero h1 span { color: var(--red); }
.page-hero-desc {
  font-size: 18px; line-height: 1.75; color: rgba(255,255,255,0.48);
  max-width: 540px;
}
footer .logo img {
  height: 60px;
  max-height: 60px;
}
.whatsapp-link {
  color: inherit;          /* keeps normal text color */
  text-decoration: none;   /* removes underline */
}

.whatsapp-link:hover {
  color: #E8291C;          /* your hover color */
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-1 { animation: fadeUp 0.7s ease both; }
.anim-2 { animation: fadeUp 0.7s ease 0.10s both; }
.anim-3 { animation: fadeUp 0.7s ease 0.20s both; }
.anim-4 { animation: fadeUp 0.7s ease 0.30s both; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav {
    padding: 0 24px;
  }

  .menu-toggle {
    display: flex;
  }

  nav ul.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 85%;
    max-width: 400px;
    background: #0E0E0E;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 1900;
  }

  nav ul.nav-links.active {
    right: 0;
  }

  nav ul li a {
    font-size: 18px;
    color: var(--light);
  }

  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--red);
  }

  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--red);
  }
  section, footer { padding: 80px 24px; }
  .page-hero { padding: 130px 24px 80px; }
  .page-hero-wordmark { display: none; }
  .cta-band { padding: 72px 24px; flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

