/* ===== CSS RESET & NORMALIZE ===== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F7F3EF;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-word;
}


/* ===== VINTAGE RETRO BRAND COLORS & FONTS ===== */
:root {
  --primary: #1A237E;
  --secondary: #212121;
  --accent: #FFC107;
  --retro-red: #E94F37;
  --retro-teal: #40916C;
  --retro-orange: #FFB067;
  --retro-blue: #3777B3;
  --retro-beige: #F6EAC2;
  --retro-brown: #A67855;
  --bg-main: #F7F3EF;
  --border: #ccb794;

  --font-display: 'Montserrat', montserrat, Arial, sans-serif;
  --font-body: 'Roboto', roboto, Arial, sans-serif;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--secondary);
  background: var(--bg-main);
  min-height: 100vh;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  text-shadow: 0 2px 0 #fff3, 0 4px 8px #bda97333;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  color: var(--retro-red);
  margin-bottom: 18px;
  letter-spacing: 1px;
}
h3 {
  font-size: 1.25rem;
  color: var(--retro-brown);
  margin-bottom: 10px;
}
h4, h5, h6 {
  color: var(--retro-teal);
}

p, ul, ol, dl {
  color: var(--secondary);
  font-size: 1rem;
  margin-bottom: 12px;
}
subheadline, .subheadline {
  color: var(--retro-blue);
  font-size: 1.125rem;
}

strong {
  color: var(--primary);
}

/* ===== LAYOUT CONTAINERS ===== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--retro-beige);
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 #e7dac2aa;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.feature-item {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 32px 24px 24px 24px;
  max-width: 280px;
  min-width: 220px;
  flex: 1 1 220px;
  transition: box-shadow 0.18s, transform 0.18s;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2px 6px #dccfb422;
}
.feature-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 4px;
}
.feature-item:hover,
.feature-item:focus-within {
  box-shadow: 0 6px 28px #eae1ccbb;
  transform: translateY(-4px) scale(1.03) rotate(-2deg);
  border-color: var(--retro-blue);
}

.text-section {
  background: #fff6e0;
  border-radius: 10px;
  padding: 24px 20px;
  font-family: var(--font-body);
  border-left: 6px solid var(--retro-orange);
  margin-bottom: 12px;
  box-shadow: 0 3px 14px #efd8b822;
}
.text-section ul,
.text-section ol {
  padding-left: 20px;
  margin-bottom: 8px;
}
.text-section ul li {
  margin-bottom: 6px;
  position: relative;
  font-size: 1rem;
}
.text-section ul li:before {
  content: '◆';
  color: var(--retro-brown);
  margin-right: 8px;
  font-size: .75em;
  vertical-align: top;
}
.text-section dl dt {
  font-weight: bold;
  color: var(--retro-red);
  margin-top: 10px;
}
.text-section dl dd {
  margin-bottom: 8px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid var(--border);
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2px 14px #ccbfa080;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Testimonial Section */
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 26px;
  box-shadow: 0 4px 24px #dec8a099;
  border: 2px solid var(--retro-teal);
  min-width: 250px;
  max-width: 330px;
  margin-bottom: 20px;
  transition: transform 0.12s, box-shadow 0.16s;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 8px 36px #afddb755;
  transform: translateY(-6px) scale(1.025);
}
.testimonial-stars {
  color: var(--accent);
  font-size: 1.25rem;
  letter-spacing: 2px;
  font-family: var(--font-display);
  margin-bottom: 6px;
}
.testimonial-card blockquote {
  color: var(--secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 4px;
}
.testimonial-meta {
  color: var(--retro-red);
  font-size: 15px;
}

/* Service List Styles */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.service-list li {
  background: #fff;
  border: 2px dashed var(--retro-orange);
  border-radius: 14px;
  min-width: 220px;
  max-width: 250px;
  padding: 26px 18px 20px 18px;
  margin-bottom: 20px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  box-shadow: 0 2px 8px #e0ba8080;
  transition: border-color 0.16s, box-shadow 0.16s, transform 0.13s;
}
.service-list li h3 {
  color: var(--retro-brown);
  margin-bottom: 3px;
}
.service-list li span {
  font-size: 1rem;
  color: var(--retro-teal);
  font-weight: 500;
  background: var(--retro-beige);
  border-radius: 5px;
  padding: 2px 7px;
}
.service-list li:hover {
  border-color: var(--retro-red);
  box-shadow: 0 5px 20px #efd6ab66;
  transform: translateY(-2px) scale(1.01);
}

/* Tables */
table {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #fffbe6;
  border: 2px solid var(--retro-orange);
  margin-bottom: 20px;
}
table th, table td {
  font-size: 1rem;
  text-align: left;
  padding: 14px 10px;
  border-bottom: 1px solid #e0c59e;
}
table th {
  color: var(--primary);
  background: #FFF5C2;
  font-weight: bold;
}
table tr:last-child td { border-bottom: none; }

table tr:nth-child(odd) td {
  background: #fffef7;
}


/* ===== BUTTONS + CTA ===== */
.cta {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--secondary);
  background: var(--accent);
  border: none;
  border-radius: 32px;
  padding: 0.7em 2.2em;
  font-size: 1.1em;
  margin-top: 10px;
  box-shadow: 0 2px 8px #ffc10723;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.18s, color 0.15s, transform 0.17s;
  display: inline-block;
}
.cta.primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 3px 12px #1A237E22;
}
.cta:hover, .cta:focus {
  background: var(--retro-red);
  color: #fff;
  transform: translateY(-2px) scale(1.03) rotate(-2deg);
  outline: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--accent);
  color: var(--primary);
}

button,
.mobile-menu-toggle,
.mobile-menu-close {
  font-family: var(--font-display);
  font-size: 1.6rem;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--primary);
  transition: color 0.15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-close:focus {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.mobile-menu-toggle {
  display: none;
  padding: 8px 12px;
  border-radius: 6px;
  margin-left: 12px;
  background: var(--accent);
  color: var(--primary);
  box-shadow: 2px 2px 8px #ffc10738;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover {
  background: var(--retro-red);
  color: #fff;
}

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 2.2rem;
  background: none;
  color: var(--primary);
  z-index: 23;
  transition: color 0.18s;
}
.mobile-menu-close:hover { color: var(--retro-red); }

/* ===== NAVIGATION ===== */
header {
  background: var(--retro-beige);
  border-bottom: 4px solid var(--retro-orange);
  border-radius: 0 0 18px 18px;
  box-shadow: 0 2px 24px #ead8af40;
  margin-bottom: 26px;
  position: relative;
  z-index: 8;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  min-height: 80px;
  position: relative;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex: 1 0 auto;
}
.main-nav a {
  font-family: var(--font-display);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 700;
  font-size: 1rem;
  background: none;
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.13s, border-bottom-color 0.15s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--retro-red);
  border-bottom: 2px solid var(--accent);
  outline: none;
}

header img[alt="Arena Strats"] {
  height: 48px;
  width: auto;
  margin-right: 10px;
  vertical-align: middle;
}

/* ===== HAMBURGER & MOBILE NAVIGATION ===== */
.mobile-menu-toggle {
  display: none;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff8e2;
  box-shadow: 8px 0 44px #d57c00a8;
  transform: translateX(-100vw);
  z-index: 99;
  transition: transform 0.38s cubic-bezier(.55,.03,.74,.47);
  padding: 0 0 0 0;
  min-height: 100vh;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin-top: 84px;
  align-items: flex-start;
  padding-left: 32px;
}
.mobile-nav a {
  color: var(--primary);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 15px 0;
  display: inline-block;
  letter-spacing: .8px;
  border-bottom: 1.5px dashed var(--accent);
  transition: color 0.13s, border-bottom-color 0.17s, background 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--retro-red);
  border-bottom: 1.5px solid var(--retro-brown);
  background: var(--retro-beige);
  outline: none;
}

/* Hide main nav by default on mobile */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: inline-block; }
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* ===== FOOTER ===== */
footer {
  background: var(--retro-brown);
  color: #fff;
  padding: 44px 0 0 0;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -4px 20px #b77a550c;
  min-height: 200px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1.5px solid #fff4;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 200px;
}
.footer-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  opacity: 0.92;
  letter-spacing: .8px;
  transition: color 0.13s, opacity 0.14s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--accent);
  opacity: 1;
}
.contact-summary {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 190px;
}
.contact-summary img {
  height: 34px;
  margin-right: 8px;
  vertical-align: middle;
}
.contact-summary span {
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-left: 3px;
}
.contact-summary .address {
  font-size: 1rem;
  color: #fff;
  opacity: 0.86;
}
.contact-summary a {
  color: var(--accent);
  text-decoration: underline;
  transition: color 0.14s;
}
.footer-socials {
  display: flex;
  flex-direction: row;
  gap: 17px;
  align-items: center;
  margin-top: 14px;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff6;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: background 0.16s;
}
.footer-socials a:hover,
.footer-socials a:focus {
  background: var(--accent);
}
.footer-socials img {
  width: 25px;
  height: auto;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 199;
  background: #fffaf5;
  border-top: 2.5px solid var(--retro-orange);
  box-shadow: 0 -4px 18px #dec09877;
  padding: 22px 16px 16px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: transform 0.3s, opacity 0.3s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-consent-banner p {
  flex: 1 1 0%;
  color: var(--secondary);
  font-size: 1rem;
  margin: 0;
}
.cookie-consent-banner .cookie-btn {
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-display);
  padding: 7px 18px;
  font-size: 1rem;
  border: none;
  border-radius: 21px;
  margin-right: 8px;
  cursor: pointer;
  transition: background 0.13s, color 0.13s, transform 0.14s;
  margin-bottom: 5px;
}
.cookie-consent-banner .cookie-btn:hover,
.cookie-consent-banner .cookie-btn:focus {
  background: var(--retro-red);
  color: #fff;
  transform: translateY(-1px) scale(1.07);
}
.cookie-consent-banner .cookie-settings-btn {
  background: #fff;
  color: var(--retro-red);
  border: 2px solid var(--retro-red);
  padding: 7px 18px;
  border-radius: 21px;
  margin-right: 8px;
  margin-bottom: 5px;
  font-family: var(--font-display);
}
.cookie-consent-banner .cookie-settings-btn:hover,
.cookie-consent-banner .cookie-settings-btn:focus {
  background: var(--retro-red);
  color: #fff;
  outline: none;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 299;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #27120289;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.34s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fffaf5;
  border: 2.5px solid var(--retro-orange);
  border-radius: 18px;
  width: 96vw;
  max-width: 420px;
  padding: 36px 28px 28px 28px;
  box-shadow: 0 8px 48px #00000033;
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h3 {
  font-family: var(--font-display);
  color: var(--retro-brown);
  font-size: 1.3rem;
  margin-bottom: 7px;
}
.cookie-modal .category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
}
.cookie-modal .category-label {
  font-weight: 700;
  color: var(--primary);
}
.cookie-modal .category-description {
  font-size: 0.93rem;
  color: var(--secondary);
  opacity: 0.7;
}
.cookie-modal-toggle {
  margin-left: 10px;
  accent-color: var(--retro-red);
  width: 20px; height: 20px;
}
.cookie-modal .modal-actions {
  margin-top: 9px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  min-width: 98px;
}
.cookie-modal .cookie-btn:last-child {
  margin-right: 0;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--retro-red);
  font-size: 1.9rem;
  cursor: pointer;
  z-index: 55;
  padding: 0 2px;
}
.cookie-modal .close-modal:hover { color: var(--retro-blue); }

/* ===== UTILITIES ===== */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.text-center { text-align: center; }
.display-block { display: block; }

/* ===== ANIMATIONS & MICRO-INTERACTIONS ===== */
.cta, .cta.primary, button, .feature-item, .service-list li, .testimonial-card {
  transition: box-shadow 0.18s, background 0.17s, color 0.14s, border-color 0.19s, transform 0.16s;
}

a, .cta, .cta.primary, .footer-nav a, .main-nav a, .mobile-nav a {
  transition: color 0.13s, background 0.15s, border-color 0.13s, outline 0.18s;
}

/* ===== RESPONSIVE DESIGN (MOBILE-FIRST) ===== */
@media (max-width: 1024px) {
  .container {
    max-width: 99%;
    padding: 0 8px;
  }
  .content-wrapper, .footer .content-wrapper {
    flex-direction: column;
    gap: 24px;
  }
  .footer .content-wrapper {
    flex-direction: column;
    gap: 36px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .container {
    padding: 0 5px;
  }
  .content-wrapper, .footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid, .testimonial-cards, .service-list {
    flex-direction: column;
    gap: 20px;
  }
  .footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: inline-block !important; }
  .mobile-menu { display: flex; }
  .section {
    margin-bottom: 32px;
    padding: 22px 7px;
  }
  .card, .feature-item, .service-list li {
    max-width: 100%;
    min-width: 0;
    padding: 20px 10px;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
    padding: 18px 10px;
  }
  .footer-nav {
    min-width: 0;
    gap: 7px;
  }
  .contact-summary, .footer-socials {
    min-width: 0;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.1rem; }
  table {
    font-size: 0.9em;
  }
}

/* ENFORCE FLEX-DIRECTION COLUMN FOR TEXT-IMAGE ON MOBILE */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ===== MISC ===== */
::-webkit-scrollbar { width: 10px; background: #eadcc4; }
::-webkit-scrollbar-thumb { background: var(--retro-brown); border-radius: 6px; }

input, select, textarea {
  font-family: var(--font-body);
  font-size: .98em;
  padding: 7px 11px;
  border-radius: 6px;
  border: 1.4px solid var(--accent);
  background: #fff6e0;
  color: var(--secondary);
  margin-bottom: 7px;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--retro-red);
}

hr {
  border: none;
  border-bottom: 1.5px dashed var(--retro-orange);
  margin: 24px 0;
}

/* ===== RETRO, NOSTALGIC ACCENTS ===== */
.section {
  background-image: repeating-linear-gradient(135deg, #f6eac2 0 8px, #fff6e0 8px 16px);
  border: 2.5px double var(--retro-brown);
  box-shadow: 0 7px 32px #e3ae5e35;
}
.feature-item, .card, .testimonial-card, .service-list li {
  background-image: repeating-linear-gradient(90deg, #fff 0px, #fff 20px, #ffdca6 21px, #fff 23px);
}

/* Add subtle corner icon or stamp on cards for retro look (decorative only) */
.feature-item:after {
  content: '';
  position: absolute;
  top: 10px; right: 10px;
  background: url('../assets/icons/star-retro.svg') no-repeat center center;
  background-size: 18px 18px;
  width: 18px; height: 18px;
  opacity: 0.16;
  pointer-events: none;
}
.service-list li:after {
  content: '';
  display: block;
  position: absolute;
  left: 10px; bottom: 10px;
  background: url('../assets/icons/retro-dot.svg') no-repeat center center;
  background-size: 12px 12px;
  width: 12px; height: 12px;
  opacity: 0.19;
  pointer-events: none;
}

/* === PRINT TYPOGRAPHY & LINK FOCUS STATE === */
@media print {
  .mobile-menu, .mobile-menu-toggle, .cookie-consent-banner, .cookie-modal-overlay { display: none !important; }
  a { text-decoration: underline; color: #000; }
}

:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2.5px solid var(--retro-red);
  outline-offset: 1px;
}

/* === END OF CSS === */
