/* ===== CSS RESET & NORMALIZATION ===== */
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,
main, 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;
}
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #F9F9F9;
  color: #2d2a27;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #205D45;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #956729;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  margin-bottom: 0.75em;
  color: #342617;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -2px;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -1.5px;
}
h3 {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -1px;
}
h4, h5, h6 {
  font-weight: 500;
}
p, li, label, dd {
  font-size: 1rem;
}
strong {
  font-weight: 700;
  color: #205D45;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 12px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}

/* ===== VINTAGE RETRO COLOR PALETTE ===== */
:root {
  --primary: #205D45;
  --primary-dark: #153d2d;
  --secondary: #CAD135;
  --secondary-dark: #b3ba2e;
  --accent: #F9F9F9;
  --brown: #956729;
  --vintage-orange: #F0944D;
  --retro-bg: #FCF4E0;
  --vintage-coral: #E9716F;
  --vintage-blue: #49718B;
  --vintage-cream: #FFF7E5;
  --border: #dbc79f;
  --shadow: rgba(47, 37, 9, 0.10);
}

/* ===== VINTAGE RETRO TYPOGRAPHY ===== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400|Roboto:400,500,700&display=swap');

body {
  background: var(--retro-bg);
  font-family: 'Roboto', Arial, sans-serif;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
}
h1, h2 {
  text-shadow: 2px 2px 0 var(--border), 4px 4px 2px var(--shadow);
}
.subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.2rem;
  color: var(--vintage-blue);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

/* ===== HEADER + NAVIGATION ===== */
header {
  background: var(--vintage-cream);
  border-bottom: 3px solid var(--border);
  box-shadow: 0 6px 32px var(--shadow);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 12px 18px 12px;
}
.logo img {
  height: 48px;
  width: auto;
  margin-right: 18px;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.03rem;
  letter-spacing: 2px;
  color: var(--primary);
  padding: 6px 3px;
  border-radius: 3px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: var(--brown);
  text-shadow: 0 2px 6px var(--shadow);
}

.btn-primary {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.08rem;
  text-transform: uppercase;
  font-weight: 700;
  padding: 13px 29px;
  color: #fff;
  background: var(--primary);
  border: none;
  border-radius: 28px;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px var(--shadow);
  transition: background 0.22s, box-shadow 0.22s, color 0.2s, transform 0.14s;
  cursor: pointer;
  outline: none;
  margin-left: 16px;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--secondary);
  color: var(--primary-dark);
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 10px 24px -8px var(--shadow);
}

.link-arrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  border-bottom: 2px dotted var(--primary);
  padding-bottom: 3px;
  transition: color 0.19s, border-bottom 0.19s;
  margin-top: 12px;
}
.link-arrow:after {
  content: '→';
  margin-left: 5px;
  color: var(--vintage-orange);
  font-size: 1.15em;
  transition: color 0.22s;
  font-family: 'Montserrat', sans-serif;
}
.link-arrow:hover {
  color: var(--brown);
  border-bottom: 2px solid var(--secondary);
}
.link-arrow:hover:after {
  color: var(--brown);
}

/* ==== HERO SECTION ==== */
.hero {
  background: var(--vintage-orange);
  background-image: repeating-linear-gradient(-30deg, #fcf0cc 0 20px, transparent 21px 38px);
  border-radius: 0 0 44px 44px;
  box-shadow: 0 7px 25px var(--shadow);
  padding-bottom: 54px;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.8rem;
}
.hero .btn-primary {
  margin-top: 14px;
  box-shadow: 0 3px 8px var(--shadow);
}

/* ==== FEATURE GRID etc. ==== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 23px 0 10px 0;
}
.feature-grid > div {
  background: var(--vintage-cream);
  border: 2px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 6px 24px var(--shadow);
  flex: 1 1 210px;
  min-width: 215px;
  padding: 32px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.feature-grid img {
  width: 38px;
  height: 38px;
  filter: sepia(0.55) hue-rotate(-20deg) contrast(1.15);
  margin-bottom: 8px;
}
.feature-grid h3 {
  margin-bottom: 6px;
  color: var(--brown);
  font-size: 1.17rem;
}
.feature-grid p {
  color: #58412a;
  font-size: 0.98rem;
}

/* ===== CARDS, TESTIMONIALS, FLEX CONTAINERS ===== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--vintage-cream);
  border-radius: 16px;
  border: 2px solid var(--border);
  box-shadow: 0 5px 20px var(--shadow);
  padding: 32px 26px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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;
}

/* Features / Benefits / Service Lists */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.service-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
  align-items: stretch;
}
.service-categories > div {
  background: var(--vintage-cream);
  border: 2px dashed var(--secondary);
  border-radius: 18px;
  box-shadow: 0 2px 12px var(--shadow);
  padding: 30px 22px;
  min-width: 200px;
  flex: 1 1 240px;
  margin-bottom: 0;
}

.benefit-info {
  margin-top: 18px;
  padding: 12px 22px;
  background: var(--vintage-blue);
  color: #fff;
  border-radius: 13px;
  font-weight: 500;
  font-style: italic;
}

.availability-info {
  margin-top: 14px;
  background: var(--secondary);
  color: #2d2a27;
  padding: 10px 19px;
  border-radius: 9px;
  font-weight: 600;
}

/* ===== TESTIMONIALS ===== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 24px;
  border-radius: 15px;
  background: #fffbe8;
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 16px var(--shadow);
  min-width: 270px;
  flex: 1 1 290px;
  color: #342617;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 28px var(--shadow);
  transform: translateY(-2px) scale(1.01);
}
.testimonial-card p {
  font-size: 1.04rem;
  font-style: italic;
  color: #342617;
}
.testimonial-author {
  color: var(--brown);
  font-size: 0.97rem;
  font-weight: 600;
  margin-left: 12px;
}

/* ===== TABLES (.timetable) ===== */
.timetable {
  width: 100%;
  margin: 34px 0 24px 0;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px var(--shadow);
}
.timetable th, .timetable td {
  padding: 14px 10px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-family: 'Montserrat', sans-serif;
}
.timetable th {
  background: var(--secondary);
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 700;
}
.timetable tr:last-child td {
  border-bottom: none;
}
.timetable td {
  background: var(--vintage-cream);
  font-size: 1.01rem;
}
/* ===== NOTIFICATION BANNER / HIGHLIGHT ===== */
.notification-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--vintage-coral);
  color: #fff;
  border-radius: 10px;
  padding: 14px 26px;
  font-size: 1.06rem;
  font-weight: 600;
  margin: 20px 0 13px 0;
  box-shadow: 0 2px 8px var(--shadow);
}
.highlight {
  background: var(--secondary-dark);
  color: #393100;
  border-radius: 7px;
  padding: 4px 10px;
  margin-left: 7px;
  font-weight: 700;
  font-family: inherit;
}

/* ===== LOCATION LIST ===== */
.location-list {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: 'Roboto', sans-serif;
}
.map-embed {
  margin: 29px auto 12px auto;
  background: var(--secondary);
  border-radius: 12px;
  box-shadow: 0 3px 9px var(--shadow);
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-info {
  background: var(--vintage-blue);
  color: #fff;
  padding: 18px 22px;
  border-radius: 12px;
  margin-top: 14px;
}
.access-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ===== CONTACT, ADDRESS, OPENING HOURS ===== */
.contact-details {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin: 18px 0 20px 0;
  flex-wrap: wrap;
}
.opening-hours {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 18px 0 18px 0;
}
.address-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--vintage-cream);
  border: 1.5px dashed var(--primary);
  padding: 11px 18px;
  border-radius: 10px;
  margin-bottom: 12px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--primary);
  color: #fff;
  padding: 43px 0 25px 0;
  border-radius: 38px 38px 0 0;
  box-shadow: 0 -4px 28px var(--shadow);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 38px;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: var(--secondary);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.18s;
}
.footer-nav a:hover {
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: 'Roboto', sans-serif;
}
.footer-contact img {
  width: 53px;
  margin-bottom: 9px;
}
.footer-contact a {
  color: var(--secondary);
  transition: color 0.17s;
}
.footer-contact a:hover {
  color: #fff;
}

/* ===== MOBILE MENU (BURGER NAVIGATION) ===== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 18px;
  width: 46px;
  height: 46px;
  font-size: 2.1rem;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: 34px;
  box-shadow: 0 2px 12px var(--shadow);
  z-index: 101;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--primary);
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--retro-bg);
  box-shadow: 0 0 25px var(--shadow);
  z-index: 11000;
  transform: translateX(-100vw);
  transition: transform 0.45s cubic-bezier(0.77,0,0.175,1);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.3rem;
  color: var(--primary);
  position: absolute;
  right: 32px;
  top: 23px;
  z-index: 20;
  cursor: pointer;
  transition: color 0.18s;
  padding: 8px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--brown);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 98px 0 0 0;
  align-items: flex-start;
  padding: 0 44px;
}
.mobile-nav a {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.23rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary);
  padding: 8px 0;
  border-bottom: 1.5px dashed var(--secondary);
  width: 100%;
  transition: color 0.14s, background 0.21s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--brown);
  background: var(--secondary);
  border-radius: 5px;
}

/* Hide burger menu toggle and mobile nav on desktop, show on mobile */
@media (max-width: 1050px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1051px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: var(--vintage-orange);
  color: #2d2a27;
  padding: 27px 12vw 19px 12vw;
  box-shadow: 0 -10px 34px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  z-index: 50000;
  font-family: 'Roboto', Arial, sans-serif;
  transition: transform 0.45s, opacity 0.36s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  margin-top: 7px;
}
.cookie-btn-accept,
.cookie-btn-reject,
.cookie-btn-settings {
  font-family: 'Montserrat', sans-serif;
  padding: 9px 22px;
  border-radius: 14px;
  border: none;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.17s, color 0.16s, transform 0.13s;
  margin-right: 0;
}
.cookie-btn-accept {
  background: var(--primary);
  color: #fff;
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: var(--secondary);
  color: #2d2a27;
}
.cookie-btn-reject {
  background: var(--vintage-coral);
  color: #fff;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: var(--brown);
}
.cookie-btn-settings {
  background: #fffbe8;
  color: var(--primary);
  border: 2px solid var(--secondary);
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: var(--secondary);
  color: #3c3520;
}

/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32,22,14,0.46);
  z-index: 100050;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.33s;
}
.cookie-modal {
  background: var(--vintage-cream);
  border-radius: 20px;
  max-width: 390px;
  width: 94vw;
  padding: 38px 28px 28px 28px;
  color: #2d2a27;
  box-shadow: 0 6px 39px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: popin 0.36s cubic-bezier(.47,1.64,.41,.8);
  position: relative;
  z-index: 100500;
}
.cookie-modal-close {
  position: absolute;
  top: 19px; right: 20px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--brown);
  cursor: pointer;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}
.toggle-switch {
  appearance: none;
  width: 40px;
  height: 22px;
  background: #e7d9b8;
  border-radius: 13px;
  position: relative;
  outline: none;
  transition: background 0.14s;
}
.toggle-switch:checked {
  background: var(--secondary);
}
.toggle-switch::before {
  content: '';
  display: block;
  position: absolute;
  left: 4px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(40,27,5,0.09);
  transition: left 0.2s;
}
.toggle-switch:checked::before {
  left: 20px;
}

@keyframes popin {
  0% { opacity: 0; transform: scale(0.82); }
  100% { opacity: 1; transform: scale(1); }
}

/* ===== DL/FAQ ===== */
dt {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: bold;
  margin-top: 11px;
}
dd {
  margin-bottom: 10px;
  margin-left: 16px;
  font-size: 1rem;
}

/* ===== GENERAL SPACING, GAPS & LISTS ===== */
.content-wrapper > * + *,
main > section + section {
  margin-top: 24px;
}
ul, ol {
  margin-bottom: 14px;
}
li {
  margin-bottom: 7px;
}

/* ==== Special structure: .sports-selector ==== */
.sports-selector {
  margin-top: 19px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sports-selector label {
  font-weight: 600;
  color: var(--brown);
}
.sports-selector select {
  padding: 7px 25px 8px 9px;
  border-radius: 8px;
  border: 2px solid var(--brown);
  background: #fffbe8;
  font-size: 1.08rem;
  color: #3c3520;
}

/* ===== BUTTONS ==== */
button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.14s;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 950px) {
  .header .container,
  footer .container {
    flex-direction: column;
    gap: 17px;
    align-items: stretch;
  }
  .footer-contact {
    margin-top: 18px;
  }
  .main-nav {
    gap: 11px;
    font-size: 0.98rem;
  }
}
@media (max-width: 900px) {
  .feature-grid,
  .service-categories {
    flex-direction: column;
    gap: 24px;
  }
  .card-container, .testimonial-slider, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  footer .container {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    padding: 0 4vw;
  }
  .hero {
    padding: 30px 0 38px 0;
    border-radius: 0 0 20px 20px;
  }
  section {
    padding: 26px 2vw;
    margin-bottom: 38px;
  }
  .testimonial-card, .card, .feature-grid > div {
    padding: 19px 13px;
    font-size: 1rem;
  }
  .card {
    min-width: 0;
  }
}
@media (max-width: 550px) {
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.16rem;
  }
  .header .container, .main-nav {
    flex-direction: column;
    gap: 9px;
    align-items: stretch;
  }
  .content-wrapper {
    gap: 12px;
  }
  .feature-grid, .service-categories, .testimonial-slider, .card-container {
    gap: 13px;
  }
}

/* ==== FORM INPUTS (retro inspired) ==== */
input, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 8px;
  border: 2px solid var(--brown);
  background: #fffbe8;
  padding: 8px 13px;
  font-size: 1.09rem;
  margin: 7px 0 4px 0;
  color: #3c3520;
  outline: none;
  transition: border 0.15s, background 0.11s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  background: #fcf4e0;
}

/* ===== MICRO-INTERACTIONS ===== */
.btn-primary, .link-arrow, .cookie-btn-accept, .cookie-btn-reject, .cookie-btn-settings {
  transition: background 0.18s, color 0.16s, transform 0.12s, box-shadow 0.19s;
}
.btn-primary:active,
.link-arrow:active,
.cookie-btn-accept:active,
.cookie-btn-settings:active {
  transform: scale(0.98);
}

/* ===== ARIA/FOCUS ACCESSIBILITY ===== */
a:focus, button:focus, .link-arrow:focus, .btn-primary:focus {
  outline: 2px dashed var(--vintage-orange);
  outline-offset: 2px;
}

/* ===== Z-STACKING & DECOR ===== */
.hero::before {
  content: '';
  display: block;
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: url('assets/patterns/retro-dots.png') repeat;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
}

/* ===== Misc ===== */
::-webkit-scrollbar {
  width: 10px;
  background: #efe2ca;
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 8px;
}

/* Hide some empty icons by default */
img[alt=""] {
  display: none;
}
