/* =================================================================
   AWB - Airsoft Weekend Brasil — Landing Page Styles
   ================================================================= */

:root {
  --bg: #000000;
  --fg: #ffffff;
  --accent: #FFB400;
  --accent-soft: #f5c542;
  --muted: #b8b8b8;
  --card-bg: #ffffff;
  --field-bg: #ffffff;
  --field-border: #000;
  --footer-grey: #2a2a2a;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

/* =================================================================
   NAVIGATION
   ================================================================= */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 18px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.site-nav .brand {
  display: flex;
  align-items: center;
}

.site-nav .brand img { height: 28px; width: auto; }

.site-nav .menu {
  display: flex;
  gap: 60px;
  list-style: none;
  align-items: center;
}

.site-nav .menu a {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: #ffffff;
  transition: color 0.2s ease;
  position: relative;
  padding: 4px 0;
}

.site-nav .menu a:hover { color: var(--accent); }

.site-nav .menu a.active {
  color: var(--accent);
  font-weight: 500;
}

.site-nav .menu a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--fg);
  font-size: 28px;
  cursor: pointer;
  padding: 0;
}

/* =================================================================
   MAIN IMAGE (page design)
   ================================================================= */

.page-image {
  width: 100%;
  margin-top: 64px; /* offset for fixed nav */
  position: relative;
  background: #000;
}

.page-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Make the clickable "Clique aqui e assista agora" overlay on video sections */
.video-overlay {
  position: absolute;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.video-overlay:hover { border-color: var(--accent); }

/* =================================================================
   CALENDÁRIO EVENTOS (for pages that need it added)
   ================================================================= */

.calendar-section {
  padding: 80px 60px 60px;
  background: #000;
}

.calendar-section h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 44px;
  letter-spacing: 1.5px;
  color: var(--fg);
  margin-bottom: 40px;
}

.calendar-section h2 .accent {
  color: var(--accent);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1400px;
}

.event-card {
  background: var(--card-bg);
  border-radius: 4px;
  overflow: hidden;
  color: #000;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.event-card:hover { transform: translateY(-4px); }

.event-card .card-header {
  background:
    linear-gradient(rgba(232,228,210,0.92), rgba(232,228,210,0.92)),
    repeating-conic-gradient(
      #c7c0a0 0% 10%, #aaa48a 10% 20%, #d6cfa8 20% 30%, #989065 30% 40%
    );
  background-size: auto, 40px 40px;
  padding: 32px 24px 22px;
  text-align: center;
  position: relative;
}

.event-card .awb-mark {
  font-family: 'Oswald', sans-serif;
  font-weight: 800;
  font-size: 36px;
  letter-spacing: 3px;
  color: #1f4d2c;
  margin-bottom: 10px;
  text-shadow: 1px 1px 0 rgba(255,255,255,0.5);
}

.event-card h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 1.5px;
  color: #1f4d2c;
  margin-bottom: 4px;
}

.event-card .date {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  letter-spacing: 1.2px;
  color: #1f4d2c;
  margin-bottom: 12px;
}

.event-card .sponsors {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #1f4d2c;
  margin-top: 14px;
  border-top: 1px solid rgba(31,77,44,0.25);
  padding-top: 10px;
}

.event-card .address {
  font-size: 10px;
  color: #1f4d2c;
  margin-top: 6px;
  opacity: 0.85;
}

.event-card .card-body {
  padding: 18px 22px 22px;
  position: relative;
  background: #fff;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-card .lot {
  font-size: 13px;
  font-weight: 600;
  color: #000;
  margin-bottom: 16px;
}

.event-card .from {
  font-size: 9px;
  color: #999;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.event-card .price {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-top: 2px;
}

.event-card .plus {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #b8b8b8;
  border: none;
  color: #fff;
  font-size: 22px;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.event-card .plus:hover { background: var(--accent); }

/* =================================================================
   FOOTER (forms area)
   ================================================================= */

.footer-area {
  background: #000;
  padding: 70px 60px 40px;
  position: relative;
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 80px;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: #fff;
  border-radius: 8px;
  color: #000;
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-row a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.social-row a svg { width: 18px; height: 18px; fill: currentColor; }

.forms-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.forms-row h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 22px;
  line-height: 1.3;
}

.form-block .field-row {
  display: flex;
  gap: 0;
  margin-bottom: 12px;
}

.form-block input,
.form-block textarea {
  background: #fff;
  border: none;
  padding: 11px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #000;
  width: 100%;
  font-weight: 500;
}

.form-block input::placeholder,
.form-block textarea::placeholder { color: #000; font-weight: 500; }

.form-block textarea {
  resize: vertical;
  min-height: 44px;
  max-height: 120px;
}

.form-block .submit-btn {
  background: var(--accent);
  color: #000;
  border: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 0 28px;
  cursor: pointer;
  transition: background 0.2s ease;
  letter-spacing: 0.5px;
  min-width: 100px;
}

.form-block .submit-btn:hover { background: #fff; }

.form-block.newsletter .field-row { gap: 0; }

.form-block.contact .field-row { gap: 6px; }

.form-block.contact .field-row.send-row {
  justify-content: flex-end;
  margin-top: 4px;
}

.form-block.contact .submit-btn { padding: 9px 28px; }

.awb-tag {
  margin-top: 60px;
  text-align: left;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.awb-tag .handle {
  font-weight: 700;
  font-size: 16px;
}

.awb-tag .url {
  font-size: 11px;
  color: var(--muted);
  margin-top: 14px;
  letter-spacing: 0.5px;
}

.bottom-bar {
  text-align: center;
  padding: 30px 0 20px;
  background: #000;
}

.bottom-bar img {
  height: 40px;
  margin: 0 auto 8px;
}

.bottom-bar p {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 1px;
}

/* =================================================================
   RESPONSIVE
   ================================================================= */

@media (max-width: 900px) {
  .site-nav { padding: 14px 22px; }
  .site-nav .menu {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(0,0,0,0.97);
    flex-direction: column;
    gap: 0;
    padding: 14px 0;
  }
  .site-nav .menu.open { display: flex; }
  .site-nav .menu a {
    padding: 14px 24px;
    width: 100%;
    text-align: center;
  }
  .site-nav .menu a.active::after { display: none; }
  .menu-toggle { display: block; }

  .page-image { margin-top: 56px; }

  .calendar-section { padding: 50px 22px 30px; }
  .calendar-section h2 { font-size: 32px; }
  .events-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-area { padding: 50px 22px 30px; }
  .forms-row {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .social-row { margin-bottom: 50px; gap: 14px; }
}

@media (max-width: 480px) {
  .site-nav { padding: 12px 16px; }
  .site-nav .brand img { height: 24px; }
  .calendar-section h2 { font-size: 26px; }
  .form-block input, .form-block textarea { font-size: 13px; padding: 10px 12px; }
}

/* =================================================================
   ACCESSIBILITY
   ================================================================= */

button:focus-visible,
input:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
