/* 
* Optochtverzekering.nl - Main Stylesheet
* Een zakelijke website voor verzekeringen voor optochten en festiviteiten
*/

/* ========= LOCAL FONTS ========= */
/* Open Sans - Regular (400) */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap; /* Prevents FOIT (Flash of Invisible Text) */
  src: url('fonts/OpenSans-Regular.ttf') format('truetype');
}

/* Open Sans - SemiBold (600) */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/OpenSans-SemiBold.ttf') format('truetype');
}

/* Open Sans - Bold (700) */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/OpenSans-Bold.ttf') format('truetype');
}

/* Fira Sans - Regular (400) */
@font-face {
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/FiraSans-Regular.ttf') format('truetype');
}

/* Fira Sans - Medium (500) */
@font-face {
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/FiraSans-Medium.ttf') format('truetype');
}

/* Fira Sans - SemiBold (600) */
@font-face {
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/FiraSans-SemiBold.ttf') format('truetype');
}

/* Fira Sans - Bold (700) */
@font-face {
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/FiraSans-Bold.ttf') format('truetype');
}

/* ========= VARIABLES ========= */
:root {
  /* Kleurenpalet */
  --primary-color: #000000;
  --secondary-color: #666600;
  --accent-color: #ffb703;
  --dark-color: #2b2d42;
  --light-color: #f8f9fa;
  --white-color: #ffffff;
  --gray-color: #6c757d;
  --light-gray: #dee2e6;
  --light-green: #999900;
  --input-filled: #caca499c;
  
  /* New colors based on requirements */
  --hero-color: #999900;
  --dark-button-color: #666600;
  --dark-button-color-hover: #555000;
  --button-text-color: #666666;

  /* Typografie */
  --font-primary: 'Open Sans', sans-serif;
  --font-heading: 'Fira Sans', sans-serif; /* Updated heading font */
  --font-button: 'Fira Sans', sans-serif; /* New font for buttons */
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.0rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  
  /* Border radius */
  --border-radius-sm: 3px;
  --border-radius-md: 5px;
  --border-radius-lg: 10px;
  --border-radius-pill: 50px; /* New border-radius for pill buttons */
  
  /* Box shadow */
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --box-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* ========= BASE STYLING ========= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--white-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: var(--spacing-sm);
}

a {
  color: var(--light-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
}

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

ul, ol {
  list-style-position: inside;
  margin-bottom: var(--spacing-md);
}

/* ========= CONTAINER & LAYOUT ========= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

section {
  padding: var(--spacing-xs) 0;
}

/* ========= HEADER & NAVIGATION ========= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* Top Navigation Bar */
.top-nav-bar {
  background-color: var(--white-color);
  box-shadow: var(--box-shadow);
  height: 100px; /* Changed from 150px to 100px as requested */
  display: flex;
  align-items: center;
}

.top-nav-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-container {
  max-width: 200px;
}

.logo {
  width: 100%;
}

.top-nav-links {
  display: flex;
  align-items: center;
}

.nav-link {
  font-weight: 600;
  margin-left: var(--spacing-md);
  padding: 0.5rem 0;
  color: var(--button-text-color); /* Updated hyperlink color as requested */
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link:visited,
.nav-link:focus {
  color: var(--button-text-color); /* Ensuring all states use #666666 as requested */
  text-decoration: underline;
}

a {
  color: var(--secondary-color);

}
a:hover,
a:visited {
  text-decoration: underline;
}


.product-link {
  color: #666666; /* Changed to #666666 as requested */
}

.product-link:hover,
.product-link:visited,
.product-link:focus {
  color: #666666; /* Ensuring all states use #666666 as requested */
  text-decoration: underline;
}

/* Main Navigation */
.main-nav {
  background-color: var(--primary-color);
}

.main-nav .container {
  display: flex;
  justify-content: center;
}

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: var(--spacing-xs) 0;
}

.main-nav li {
  margin: 0 var(--spacing-md);
}

.main-nav a {
  color: var(--white-color);
  font-weight: 600;
  padding: 0.5rem 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

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

.main-nav a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs);
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 5px 0;
  transition: transform 0.3s ease;
}

/* ========= HERO SECTION ========= */
/* Critical CSS for LCP optimization */
.hero {
  background-color: var(--hero-color);
  color: var(--white-color);
  text-align: left;
  padding: calc(var(--spacing-xl) * 0.1) 0;
  margin-top: 100px; /* Account for header height */
  content-visibility: auto; /* Improve rendering performance */
  contain-intrinsic-size: 1px 500px; /* Hint for content height */
}

.hero h1 {
  font-family: 'Fira Sans', sans-serif;
  font-weight: 700; /* Bold */
  font-size: 3rem;
  color: var(--white-color);
  margin-bottom: 0;
  margin-top: var(--spacing-md);
  will-change: transform; /* Optimize for animation/rendering */
}

.tagline {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.8rem;
  margin-bottom: var(--spacing-md);
  max-width: 800px;
  color: var(--white-color);
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  justify-content: space-between;
  align-items: left;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 0;
  margin-bottom: var(--spacing-md);
}

.left-buttons {
  display: flex;
  gap: var(--spacing-sm);
}

.pill-button {
  display: inline-block;
  font-family: var(--font-button);
  font-weight: 500;
  padding: 0.45rem 2rem;
  border-radius: var(--border-radius-pill);
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 200px;
  font-size: larger;
}
.pill-button:hover {
  text-decoration: none;
}
  

.dark-button {
  background-color: var(--dark-button-color);
  color: var(--white-color);
}

.dark-button:hover {
  background-color: var(--dark-button-color-hover);
  color: var(--white-color);
}

.light-button {
  background-color: var(--white-color);
  color: var(--button-text-color);
  position: relative;
  left: 30px; 
}

.light-button:hover {
  background-color: #f0f0f0;
  color: var(--button-text-color);
}

/* ========= ABOUT SECTION ========= */
.about {
  background-color: var(--light-color);
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--spacing-lg);
}

.text-content {
  flex: 1;
  min-width: 300px;
}

.image-content {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.about-image {
  box-shadow: var(--box-shadow-lg);
  border-radius: var(--border-radius-md);
}

/* Company info in About section */
.company-info {
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--light-gray);
}

.company-relation {
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.company-link {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 500;
  margin-top: var(--spacing-xs);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.company-link:hover {
  color: var(--secondary-color);
}

/* ========= SERVICES SECTION ========= */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.service-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  /* transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg); */
}

.service-card h3 {
  color: var(--secondary-color);
  margin-bottom: var(--spacing-sm);
}

.services-note {
  text-align: center;
  font-style: italic;
  font-size: 1.1rem;
  margin-top: var(--spacing-lg);
}

/* ========= PARADE TYPES SECTION ========= */
.parade-types {
  background-color: var(--light-color);
}

.intro-text {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  font-size: 1.1rem;
}

/* Parade list with Font Awesome icons */
.parade-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

.parade-item {
  background-color: var(--white-color);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
  display: flex;
  align-items: flex-start;
  }

.parade-item:hover {
  transform: translateY(-5px);
}

.parade-item i {
  color: var(--primary-color);
  font-size: 2rem;
  margin-right: var(--spacing-md);
  min-width: 40px;
  text-align: center;
}

.parade-content {
  flex: 1;
}

.parade-content h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
  font-size: 1.2rem;
}

.parade-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Vertical parade list with Font Awesome icons */
.parade-list-vertical {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

.parade-item-vertical {
  background-color: var(--white-color);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-sm) var(--spacing-md);
  margin-bottom: var(--spacing-sm);
  /* box-shadow: var(--box-shadow); */
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.parade-item-vertical:hover {
  /* transform: translateX(10px); */
}

.parade-item-vertical i {
  color: var(--secondary-color);
  font-size: 1.5rem;
  margin-right: var(--spacing-md);
  min-width: 30px;
  text-align: center;
}

.parade-item-vertical span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark-color);
}

/* ========= CONTACT SECTION ========= */
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: var(--spacing-lg);
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

contact-info p {
  margin-bottom: var(--spacing-sm);
}

.social-media {
  margin-top: var(--spacing-md);
}

.contact-form {
  flex: 1;
  min-width: 500px;
  max-width: 550px;
}

.form-group {
  margin-bottom: var(--spacing-md);
}

/* Pill-shaped form inputs with secondary-color border */
input, select, textarea {
  width: 100%;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--secondary-color);
  border-radius: var(--border-radius-pill);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: var(--white-color);
}

textarea {
  border-radius: 0;
}

input::placeholder, textarea::placeholder {
  color: var(--gray-color);
  opacity: 0.8;
}

input:not([type="submit"]):not([type="button"]):not([type="reset"]):not(:placeholder-shown) {
  background-color: var(--input-filled); /* Light blue background for filled inputs */
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* For textareas */
textarea:not(:placeholder-shown) {
  background-color: var(--input-filled); /* Light blue background for filled textareas */
  border-color: var(--secondary-color);
}

/* For select elements when an option is chosen */
select:not([value=""]):not([value="default"]) {
  background-color: var(--input-filled);
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23666600%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem top 50%;
  background-size: 0.8rem auto;
  padding-right: 2.5rem;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(102, 102, 0, 0.2);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-button {
  background-color: var(--dark-button-color);
  color: var(--white-color);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius-pill);
  cursor: pointer;
  font-family: var(--font-button);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: block;
  margin: 0 auto;
  min-width: 200px;
}

.submit-button:hover {
  background-color: var(--dark-button-color-hover);
  
}

/* Over Ons section in contact area */
.over-ons-contact {
  flex: 2;
  min-width: 300px;
  /* background-color: var(--light-color);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow); */
}

.over-ons-contact h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
}

.over-ons-contact .text-content {
  margin-bottom: var(--spacing-md);
}

.over-ons-contact .team-section {
  /* margin-top: var(--spacing-lg); */
}

.over-ons-contact .team-photo {
  max-height: 180px;
  object-fit: cover;
  margin: 0 auto var(--spacing-sm);
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
  }

  .light-button {
    position: inherit;
    
  }

  .over-ons-contact {
    order: 1; /* Makes Over Ons appear before contact form on mobile */
    width: 100%
  }

  .contact-form {
    order: -1; /* Moves contact form below Over Ons on mobile */
    width: 100%;        
    max-width: 400px;
    min-width: inherit;
  }
}

/* ========= FOOTER ========= */
.site-footer {
  width: 100%;
}

/* First footer bar - Blue background (#1233C5) with white text - 150px height */
.footer-bar.contact-bar {
  background-color: #1233C5;
  color: var(--white-color);
  height: 150px;
  display: flex;
  align-items: center;
}

#contact {
  padding: var(--spacing-sm) 0;
}

.contact-icons {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  margin: 0 var(--spacing-md);
  width: 210px;
  font-weight: 700;
}

.contact-item i {
  font-size: 1.5rem;
  margin-right: var(--spacing-xs);
}

.contact-item a { 
  color: var(--white-color);  
}
/* Second footer bar - White background with regular text - 150px height */
.footer-bar.info-bar {
  background-color: var(--white-color);
  color: var(--dark-color);
  height: 150px;
  display: flex;
  align-items: center;
}

.info-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-logo {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
}

.footer-logo-img {
  max-width: 200px;
}

.footer-address {
  flex: 1;
  min-width: 250px;
}

.footer-address p {
  margin-bottom: var(--spacing-xs);
}

.footer-rating {
  flex: 1;
  min-width: 250px;
}

.footer-rating h4 {
  margin-bottom: var(--spacing-sm);
}

.rating-stars {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: var(--spacing-xs);
}

/* Third footer bar - Gray background (#666666) with white text - 100px height */
.footer-bar.legal-bar {
  background-color: #666666;
  color: var(--white-color);
  height: 100px;
  display: flex;
  align-items: center;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

.legal-links a {
  color: var(--white-color);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.legal-links a:hover {
  opacity: 0.8;
  color: var(--white-color);
  text-decoration: underline;
}

.copyright {
  font-size: 0.9rem;
}

/* ========= CONTENT SECTION ========= */
.content-section {
  background-color: var(--white-color);
  contain: layout paint; /* Improves CLS by containing layout shifts */
}

.content-columns {
  display: flex;
  flex-wrap: wrap;
  /* gap: var(--spacing-lg); */
  min-height: 400px; /* Reserve space to prevent layout shifts */
}

.content-column {
  flex: 1;
  min-width: 300px;
  height: auto;
}

.content-column h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
  height: auto;
}

.content-column p {
  margin-bottom: var(--spacing-sm);
  font-family: var(--font-primary);
  line-height: 1.6;
}

/* Full-width image below content columns */
.full-width-image-container {
  margin-top: var(--spacing-xs);
  width: 99%;
  max-height: 390 px;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow);
  aspect-ratio: 1000/390; /* Match the image dimensions */
}

.full-width-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow);
  transform: translateZ(0); /* Enable hardware acceleration */
  will-change: transform; /* Improve rendering performance */
}

/* ========= TEAM SECTION ========= */
.team-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-photo {
  max-width: 100%;
  height: auto;
  max-height: 200px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow);
  margin-bottom: var(--spacing-md);
}

.team-info {
  text-align: center;
}

.team-names {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: var(--spacing-xs);
}

.team-intro {
  margin-bottom: var(--spacing-sm);
  font-size: 0.95rem;
}

/* ========= RESPONSIVE DESIGN ========= */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    padding: calc(var(--spacing-xl) * 1.5) 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  /* Header adjustments for mobile */
  .top-nav-bar {
    height: 80px; /* Reduced height on mobile */
  }
  
  .top-nav-bar .container {
    position: relative;
  }
  
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    left: var(--spacing-sm);
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  
  .logo-container {
    max-width: 150px;
    margin: 0 auto;
  }
  
  /* Hero section responsiveness */
  .hero {
    margin-top: 80px; /* Adjusted for smaller header on mobile */
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .left-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .right-buttons {
    width: 100%;
    margin-top: var(--spacing-sm);
  }
  
  .pill-button {
    min-width: 140px;
  }
  
  section {
    padding: var(--spacing-lg) 0;
  }
  
  .content-wrapper, .contact-wrapper {
    flex-direction: column;
  }
  
  .image-content {
    margin: 0 auto;
  }
  
  .service-cards {
    grid-template-columns: 1fr;
  }

  .content-columns {
    flex-direction: column;
  }
  
  .content-column {
    width: 100%;
  }

  /* Footer responsiveness */
  .footer-bar.contact-bar {
    height: auto;
    padding: var(--spacing-md) 0;
  }

  .contact-row {
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
  }

  .contact-item {
    margin: 0;
  }

  .footer-bar.info-bar {
    height: auto;
    padding: var(--spacing-lg) 0;
  }

  .info-content {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-lg);
  }

  .footer-logo, .footer-address, .footer-rating {
    margin: 0 auto;
  }

  .footer-logo-img {
    margin: 0 auto;
  }

  .footer-bar.legal-bar {
    height: auto;
    padding: var(--spacing-md) 0;
    text-align: center;
  }

  .legal-links {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 14px;
  }
  
  .top-nav-links .nav-link {
    font-size: 0.9rem;
    margin-left: var(--spacing-sm);
  }
  
  .hero {
    padding: var(--spacing-sm) 0;
    margin-top: 80px;
  }
  
  .parade-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-logo, .footer-links, .footer-contact {
    margin-bottom: var(--spacing-md);
  }
  
  .footer-logo-img {
    /* margin: 0 auto var(--spacing-sm) auto; */
    margin-top: -60px;
    margin-bottom: -60px;
  }
  
  .footer-links h4::after, .footer-contact h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Move non-critical Font Awesome to end of document */
.fas, .fab, .far {
  font-display: swap;
}