/* Aussie Insight – Vintage Retro Flexbox CSS Theme */

/* =========================
   1. FONT IMPORTS
   ========================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;500&family=Pacifico&display=swap');

/* =========================
   2. CSS VARIABLES
   ========================= */
:root {
  /* Brand Colors */
  --primary: #1A2537;
  --secondary: #F5F7FA;
  --accent: #1976D2;
  --brand-accent: #1251A3;
  /* Vintage Retro Palette */
  --retro-yellow: #F7D488;
  --retro-orange: #F29E4C;
  --retro-red: #D7263D;
  --retro-blue: #1976D2;
  --retro-green: #6CA870;
  --retro-brown: #A67C52;
  --retro-cream: #FFF8E1;
  --retro-dark: #2D2A32;
  --retro-shadow: rgba(42, 36, 29, 0.12);
  /* Typography */
  --font-display: 'Montserrat', 'Arial Black', 'Pacifico', cursive;
  --font-body: 'Roboto', 'Arial', sans-serif;
  --font-vintage: 'Pacifico', cursive;
  /* Spacing */
  --section-margin: 60px;
  --section-padding: 40px 20px;
  --card-gap: 24px;
  --card-margin-bottom: 20px;
  --container-max: 1200px;
  /* Effects */
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
  --border-radius: 12px;
  --border-radius-lg: 24px;
  --shadow: 0 4px 16px var(--retro-shadow);
}

/* =========================
   3. RESET & BASE
   ========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  background: var(--retro-cream);
}
body {
  font-family: var(--font-body);
  background: var(--retro-cream);
  color: var(--retro-dark);
  font-size: 1.08rem;
  line-height: 1.7;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  border-radius: var(--border-radius);
}
a {
  color: var(--retro-blue);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover, a:focus {
  color: var(--retro-red);
  text-decoration: underline;
}

/* =========================
   4. TYPOGRAPHY
   ========================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  margin-bottom: 0.5em;
  letter-spacing: 0.01em;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  font-family: var(--font-vintage), var(--font-display);
  color: var(--retro-red);
  text-shadow: 1px 2px 0 var(--retro-yellow), 0 2px 8px var(--retro-shadow);
  margin-bottom: 0.6em;
}
h2 {
  font-size: 2rem;
  color: var(--retro-blue);
  font-family: var(--font-display);
  margin-bottom: 0.5em;
  text-shadow: 1px 1px 0 var(--retro-yellow);
}
h3 {
  font-size: 1.3rem;
  color: var(--retro-brown);
  font-family: var(--font-display);
  margin-bottom: 0.3em;
}
h4, h5, h6 {
  font-size: 1.1rem;
  color: var(--retro-dark);
}
p {
  margin-bottom: 1em;
  font-size: 1.08rem;
}
strong {
  font-weight: 700;
  color: var(--retro-brown);
}

/* =========================
   5. CONTAINER & LAYOUT
   ========================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}

.section {
  margin-bottom: var(--section-margin);
  padding: var(--section-padding);
  background: var(--retro-cream);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  position: relative;
}

/* =========================
   6. HEADER & NAVIGATION
   ========================= */
header {
  background: linear-gradient(90deg, var(--retro-yellow) 0%, var(--retro-orange) 100%);
  box-shadow: 0 2px 12px var(--retro-shadow);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 0 16px;
  min-height: 72px;
}
.logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(1px 2px 0 var(--retro-brown));
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--primary);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--retro-red);
  border-bottom: 2px solid var(--retro-red);
}
.main-nav .cta-primary {
  background: var(--retro-red);
  color: #fff;
  border-radius: 24px;
  padding: 8px 24px;
  font-family: var(--font-vintage), var(--font-display);
  font-size: 1.1rem;
  margin-left: 12px;
  box-shadow: 0 2px 8px var(--retro-shadow);
  border: none;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: var(--retro-blue);
  color: var(--retro-yellow);
  box-shadow: 0 4px 16px var(--retro-shadow);
}

/* =========================
   7. MOBILE NAVIGATION
   ========================= */
.mobile-menu-toggle {
  display: none;
  background: var(--retro-red);
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  box-shadow: 0 2px 8px var(--retro-shadow);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--retro-blue);
  color: var(--retro-yellow);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, var(--retro-yellow) 0%, var(--retro-orange) 100%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 32px 24px 24px 24px;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.25s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--retro-red);
  align-self: flex-end;
  margin-bottom: 24px;
  cursor: pointer;
  transition: color var(--transition);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--retro-blue);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-vintage), var(--font-display);
  font-size: 1.3rem;
  color: var(--primary);
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--retro-red);
  border-bottom: 2px solid var(--retro-red);
}
.mobile-nav a:last-child {
  background: var(--retro-red);
  color: #fff;
  border-radius: 24px;
  padding: 10px 24px;
  margin-top: 16px;
  font-family: var(--font-vintage), var(--font-display);
  box-shadow: 0 2px 8px var(--retro-shadow);
}
.mobile-nav a:last-child:hover, .mobile-nav a:last-child:focus {
  background: var(--retro-blue);
  color: var(--retro-yellow);
}

/* Hide main nav on mobile, show burger */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =========================
   8. HERO & FEATURE SECTIONS
   ========================= */
.feature-grid, .category-cards, .image-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 12px;
}
.feature-grid > div, .category-cards a, .image-gallery > div {
  background: var(--secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 24px 20px;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-grid > div:hover, .category-cards a:hover, .image-gallery > div:hover {
  box-shadow: 0 8px 24px var(--retro-shadow);
  transform: translateY(-4px) scale(1.03) rotate(-1deg);
}
.category-cards a {
  font-family: var(--font-vintage), var(--font-display);
  font-size: 1.2rem;
  color: var(--retro-blue);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--retro-yellow);
  border: 2px solid var(--retro-brown);
  margin-bottom: 20px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.category-cards a:hover, .category-cards a:focus {
  background: var(--retro-red);
  color: #fff;
  border-color: var(--retro-red);
}

/* =========================
   9. ARTICLE & CARD LISTS
   ========================= */
.article-list, .opinion-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.article-list article, .opinion-list article {
  background: var(--secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 24px 20px;
  flex: 1 1 320px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.article-list article:hover, .opinion-list article:hover {
  box-shadow: 0 8px 24px var(--retro-shadow);
  transform: translateY(-4px) scale(1.03) rotate(-1deg);
}

/* =========================
   10. FILTERS & PAGINATION
   ========================= */
.article-filters {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: 1rem;
}
.article-filters a {
  background: var(--retro-yellow);
  color: var(--primary);
  border-radius: 16px;
  padding: 4px 16px;
  border: 1px solid var(--retro-brown);
  transition: background var(--transition), color var(--transition);
}
.article-filters a:hover, .article-filters a:focus {
  background: var(--retro-red);
  color: #fff;
}
.pagination {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
}
.pagination a {
  background: var(--retro-blue);
  color: #fff;
  border-radius: 16px;
  padding: 6px 18px;
  font-family: var(--font-display);
  font-size: 1rem;
  transition: background var(--transition), color var(--transition);
}
.pagination a:hover, .pagination a:focus {
  background: var(--retro-red);
  color: var(--retro-yellow);
}

/* =========================
   11. TESTIMONIALS & CARDS
   ========================= */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  min-width: 260px;
  max-width: 380px;
  margin-bottom: 20px;
  border-left: 8px solid var(--retro-yellow);
  font-size: 1.08rem;
  color: var(--retro-dark);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.testimonial-card strong {
  font-family: var(--font-vintage), var(--font-display);
  color: var(--retro-red);
  font-size: 1.05rem;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px var(--retro-shadow);
  border-left-color: var(--retro-red);
}

/* =========================
   12. NEWSLETTER SIGNUP
   ========================= */
.newsletter-signup, .footer-newsletter {
  background: var(--retro-yellow);
  border-radius: var(--border-radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.newsletter-signup a, .footer-newsletter a {
  background: var(--retro-red);
  color: #fff;
  border-radius: 24px;
  padding: 8px 24px;
  font-family: var(--font-vintage), var(--font-display);
  font-size: 1.1rem;
  box-shadow: 0 2px 8px var(--retro-shadow);
  border: none;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.newsletter-signup a:hover, .footer-newsletter a:hover {
  background: var(--retro-blue);
  color: var(--retro-yellow);
  box-shadow: 0 4px 16px var(--retro-shadow);
}

/* =========================
   13. FOOTER
   ========================= */
footer {
  background: linear-gradient(90deg, var(--retro-yellow) 0%, var(--retro-orange) 100%);
  padding: 40px 0 24px 0;
  margin-top: 60px;
  box-shadow: 0 -2px 12px var(--retro-shadow);
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1rem;
}
.footer-menu a {
  color: var(--primary);
  transition: color var(--transition);
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--retro-red);
}
.footer-brand-contact {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
.footer-brand-contact img {
  height: 48px;
  width: auto;
  filter: drop-shadow(1px 2px 0 var(--retro-brown));
}
.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.98rem;
  color: var(--retro-dark);
}
.footer-newsletter {
  min-width: 220px;
  max-width: 340px;
}

/* =========================
   14. SIDEBARS, ASIDES, MAPS
   ========================= */
aside {
  background: var(--retro-cream);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 24px 20px;
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
aside h2 {
  color: var(--retro-red);
  font-size: 1.3rem;
}
aside ul {
  list-style: disc inside;
  margin-left: 0;
  color: var(--retro-brown);
  font-size: 1.05rem;
}
aside li {
  margin-bottom: 8px;
}
.map {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.map img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 340px;
}

/* =========================
   15. SEARCH BAR
   ========================= */
.search-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.search-bar input[type="text"] {
  padding: 10px 16px;
  border-radius: 24px;
  border: 2px solid var(--retro-brown);
  font-size: 1rem;
  font-family: var(--font-body);
  background: var(--retro-cream);
  color: var(--primary);
  outline: none;
  transition: border-color var(--transition);
}
.search-bar input[type="text"]:focus {
  border-color: var(--retro-red);
}

/* =========================
   16. BUTTONS & CTA
   ========================= */
.cta-primary {
  background: var(--retro-red);
  color: #fff;
  border-radius: 24px;
  padding: 10px 32px;
  font-family: var(--font-vintage), var(--font-display);
  font-size: 1.2rem;
  box-shadow: 0 2px 8px var(--retro-shadow);
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  margin-top: 8px;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--retro-blue);
  color: var(--retro-yellow);
  box-shadow: 0 4px 16px var(--retro-shadow);
}

/* =========================
   17. COOKIE CONSENT BANNER
   ========================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--retro-yellow);
  color: var(--primary);
  box-shadow: 0 -2px 12px var(--retro-shadow);
  padding: 24px 16px;
  z-index: 99999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 1rem;
  animation: cookie-slide-in 0.5s cubic-bezier(.4,0,.2,1);
}
@keyframes cookie-slide-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner button {
  border: none;
  border-radius: 20px;
  padding: 8px 20px;
  font-family: var(--font-display);
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 8px var(--retro-shadow);
}
.cookie-banner .accept {
  background: var(--retro-green);
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--retro-blue);
  color: var(--retro-yellow);
}
.cookie-banner .reject {
  background: var(--retro-red);
  color: #fff;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--retro-brown);
  color: var(--retro-yellow);
}
.cookie-banner .settings {
  background: var(--retro-yellow);
  color: var(--primary);
  border: 2px solid var(--retro-brown);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--retro-blue);
  color: #fff;
  border-color: var(--retro-blue);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(42,36,29,0.55);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: var(--retro-cream);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 8px 32px var(--retro-shadow);
  padding: 36px 28px 28px 28px;
  min-width: 320px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modal-pop-in 0.4s cubic-bezier(.4,0,.2,1);
}
@keyframes modal-pop-in {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal-content h2 {
  font-size: 1.4rem;
  color: var(--retro-red);
  font-family: var(--font-vintage), var(--font-display);
}
.cookie-modal-content .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.cookie-modal-content .cookie-category label {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--primary);
}
.cookie-modal-content .cookie-category input[type="checkbox"] {
  accent-color: var(--retro-blue);
  width: 20px;
  height: 20px;
}
.cookie-modal-content .cookie-category.essential label {
  color: var(--retro-green);
  font-weight: bold;
}
.cookie-modal-content .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 16px;
}
.cookie-modal-content button {
  border: none;
  border-radius: 20px;
  padding: 8px 20px;
  font-family: var(--font-display);
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 8px var(--retro-shadow);
}
.cookie-modal-content .save {
  background: var(--retro-green);
  color: #fff;
}
.cookie-modal-content .save:hover, .cookie-modal-content .save:focus {
  background: var(--retro-blue);
  color: var(--retro-yellow);
}
.cookie-modal-content .cancel {
  background: var(--retro-red);
  color: #fff;
}
.cookie-modal-content .cancel:hover, .cookie-modal-content .cancel:focus {
  background: var(--retro-brown);
  color: var(--retro-yellow);
}

/* =========================
   18. RESPONSIVE DESIGN
   ========================= */
@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .footer-brand-contact {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}
@media (max-width: 900px) {
  .feature-grid, .category-cards, .image-gallery, .article-list, .opinion-list, .testimonial-slider {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div, .category-cards a, .image-gallery > div, .article-list article, .opinion-list article, .testimonial-card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 4px;
  }
  .content-wrapper {
    gap: 20px;
  }
  .section {
    padding: 24px 6px;
    margin-bottom: 36px;
  }
  .feature-grid, .category-cards, .image-gallery, .article-list, .opinion-list, .testimonial-slider {
    gap: 16px;
  }
  .footer-newsletter {
    min-width: 0;
    max-width: 100%;
  }
  .footer-brand-contact img {
    height: 36px;
  }
  .footer-menu {
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
  }
  .map img {
    max-width: 100%;
  }
  .mobile-menu {
    padding: 24px 8px 8px 8px;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  .footer-brand-contact img {
    height: 28px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.98rem;
    padding: 18px 6px;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 8px;
  }
  .cookie-modal-content {
    padding: 18px 6px 12px 6px;
    min-width: 0;
    max-width: 98vw;
  }
}

/* =========================
   19. FLEXBOX SPACING & ALIGNMENT
   ========================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 24px 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: 0 8px 24px var(--retro-shadow);
  transform: translateY(-4px) scale(1.03) rotate(-1deg);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =========================
   20. MISCELLANEOUS
   ========================= */
::-webkit-scrollbar {
  width: 10px;
  background: var(--retro-yellow);
}
::-webkit-scrollbar-thumb {
  background: var(--retro-brown);
  border-radius: 8px;
}

/* Decorative retro patterns (optional, for unmistakable style) */
.section::before {
  content: '';
  display: block;
  position: absolute;
  top: -18px; left: 24px;
  width: 60px; height: 8px;
  background: repeating-linear-gradient(90deg, var(--retro-yellow), var(--retro-yellow) 12px, var(--retro-orange) 12px, var(--retro-orange) 24px);
  border-radius: 8px;
  opacity: 0.25;
  z-index: 0;
}
.section::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -18px; right: 24px;
  width: 60px; height: 8px;
  background: repeating-linear-gradient(90deg, var(--retro-yellow), var(--retro-yellow) 12px, var(--retro-orange) 12px, var(--retro-orange) 24px);
  border-radius: 8px;
  opacity: 0.25;
  z-index: 0;
}

/* =========================
   21. ACCESSIBILITY
   ========================= */
:focus {
  outline: 2px dashed var(--retro-red);
  outline-offset: 2px;
}

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