/* 
 * Bold Impact Group Clone - Design System
 * Primary Colors: Red (#CD3333), Navy (#1D3557), Light Grey (#F1F4F9)
 * Fonts: Montserrat (body), Playfair Display (headings)
 * Google Fonts loaded via <link> in header.php for performance
 */

:root {
  --primary-red: #CD3333;
  --primary-navy: #1D3557;
  --light-bg: #F1F4F9;
  --white: #FFFFFF;
  --text-dark: #333333;
  --text-light: #666666;
  
  --font-body: 'Montserrat', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  --transition-fast: 0.2s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
}

/* Skip-to-Content Link (Accessibility) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-navy);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  z-index: 9999;
  font-weight: 600;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* Reset Component */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--light-bg);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%; /* Prevent iOS font-size inflation */
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

/* Focus-visible for keyboard accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--primary-red);
  outline-offset: 2px;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(15px, 4vw, 20px);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: clamp(10px, 2vw, 12px) clamp(20px, 4vw, 30px);
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  border-radius: 4px;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
  min-height: 44px; /* Touch target compliance */
  min-width: 44px;
}

.btn-primary {
  background-color: var(--primary-red);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #a02828;
  color: var(--white);
}

.btn-secondary {
  background-color: var(--primary-navy);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: #112138;
  color: var(--white);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-navy);
}

/* Top Bar */
.top-bar {
  background-color: var(--primary-red);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
}

.top-bar .container {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.top-bar a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar a:hover {
  opacity: 0.8;
}

/* Header & Navigation */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all var(--transition-normal);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  height: 60px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu > li {
  position: relative;
}

.nav-link {
  font-weight: 600;
  color: var(--primary-navy);
  font-size: 0.95rem;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link:hover, .nav-menu > li.active .nav-link {
  color: var(--primary-red);
}

/* Dropdown styling */
.has-dropdown > a::after {
  content: '▾';
  font-size: 0.8em;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  border-top: 3px solid var(--primary-red);
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: var(--text-dark);
  font-weight: 500;
  border-bottom: 1px solid #eee;
  transition: background-color var(--transition-fast);
}

.dropdown-menu li a:hover {
  background-color: var(--light-bg);
  color: var(--primary-red);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-navy);
  min-width: 44px; /* Touch target */
  min-height: 44px;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

/* Header CTA */
.header-cta {
  margin-left: 15px;
}

/* Footer Section */
.site-footer {
  background-color: var(--primary-navy);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-widget h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-red);
}

.footer-widget p {
  color: #ccc;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ccc;
  display: flex;
  align-items: center;
}

.footer-links a::before {
  content: '›';
  color: var(--primary-red);
  margin-right: 8px;
  font-size: 1.2rem;
  font-weight: bold;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  margin-bottom: 15px;
  color: #ccc;
  gap: 15px;
}

.footer-contact i {
  color: var(--primary-red);
  font-size: 1.2rem;
  margin-top: 5px;
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-socials a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--white);
  transition: all var(--transition-fast);
}

.footer-socials a:hover {
  background-color: var(--primary-red);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: #aaa;
}

/* Utility / Sections */
.section-padding {
  padding: clamp(40px, 8vw, 80px) 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: clamp(1.6rem, 5vw, 2.5rem);
  color: var(--primary-navy);
  margin-bottom: 15px;
}

.section-title .divider {
  width: 60px;
  height: 3px;
  background-color: var(--primary-red);
  margin: 0 auto;
}

/* Animations fade in */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Homepage Specific --- */

/* Hero */
.hero {
  min-height: 85vh;
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* Fixed attachment breaks on iOS */
  display: flex;
  align-items: center;
  color: var(--white);
  text-align: center;
  position: relative;
}

@supports (-webkit-touch-callout: none) {
  /* iOS-only: never use fixed attachment */
  .hero { background-attachment: scroll !important; }
}

@media (min-width: 769px) and (hover: hover) {
  /* Re-enable parallax only on non-touch desktops */
  .hero { background-attachment: fixed; }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 6vw, 3.5rem);
  margin-bottom: 20px;
}

.hero-content p {
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  opacity: 0.9;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-20px) translateX(-50%); }
  60% { transform: translateY(-10px) translateX(-50%); }
}

/* About Intro */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  color: var(--primary-navy);
}

.bg-white {
  background-color: var(--white);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: clamp(15px, 3vw, 30px);
}

.service-card {
  border-radius: 8px;
  text-align: center;
  color: var(--white);
  transition: transform var(--transition-normal);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-content {
  padding: 40px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card.style-navy {
  background-color: var(--primary-navy);
}

.service-card.style-red {
  background-color: var(--primary-red);
}

.service-card h3 {
  color: var(--white);
  font-size: clamp(1.15rem, 3vw, 1.4rem);
  margin-bottom: 15px;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.8);
}

/* CTA Banner */
.cta-banner {
  background-color: var(--primary-navy);
  padding: 80px 0;
}

.cta-banner.cta-red {
  background-color: var(--primary-red);
}

/* CTA Banner Container Layout */
.cta-banner .cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-banner .cta-text-wrapper {
    text-align: left;
    flex: 1 1 300px;
}

.cta-banner .cta-btn-wrapper {
    flex-shrink: 0;
}

/* Typography Overrides for DRY */
.cta-banner .cta-subtitle {
    color: var(--white);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 3px;
    font-weight: 400;
    margin-bottom: 10px;
}

.cta-banner .cta-title {
    color: var(--white);
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.5px;
    font-size: clamp(2rem, 5vw, 2.8rem);
}

/* Base button properties for CTAs */
.cta-banner .btn {
    box-shadow: none !important;
    border-radius: 4px;
    font-size: 1rem;
    padding: 14px 45px;
    border: 2px solid var(--white);
    font-weight: 600;
    letter-spacing: 2px;
    white-space: nowrap;
}

/* Hero Typography Fluid Override */
.hero-home h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
}

/* Mobile Responsiveness Overrides */
@media (max-width: 768px) {
    .cta-banner .cta-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    .cta-banner .cta-text-wrapper {
        text-align: center;
        margin-bottom: 20px;
    }
}

/* Form Validation Styles */
.contact-form .form-group {
    margin-bottom: 25px; /* ensure space to avoid jumpy layouts */
    position: relative;
}

input.is-invalid, textarea.is-invalid, select.is-invalid {
    border-color: #e74c3c !important;
    background-color: rgba(231, 76, 60, 0.05); /* very light subtle red */
}

input.is-valid, textarea.is-valid, select.is-valid {
    border-color: #2ecc71 !important;
}

.error-msg {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    min-height: 18px; /* reserves precise space */
    opacity: 0;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.error-msg.visible {
    opacity: 1;
}

/* Form Submission Feedback */
.form-status {
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    animation: fadeSlideIn 0.4s ease;
}

.form-status-success {
    background-color: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #1a7a42;
}

.form-status-error {
    background-color: rgba(231, 76, 60, 0.08);
    border: 1px solid rgba(231, 76, 60, 0.25);
    color: #c0392b;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Disabled button state during submission */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.text-center {
  text-align: center;
}

/* Fluid Heading Utilities — used by inline-styled PHP pages */
.fluid-heading-lg {
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
}

.fluid-heading-md {
  font-size: clamp(1.6rem, 4vw, 2.5rem) !important;
}

/* Mobile nav overlay backdrop */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
}

.nav-overlay.active {
  display: block;
}

/* Global Structural Breakpoints for Complex Layouts */
@media (max-width: 900px) {
    /* About Page Collapse */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Contact Page Collapse */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-info {
        order: 1; /* Guarantee "Get In Touch" is on top */
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        order: 2; /* Guarantee "Send Message" is below */
        padding: 25px 20px;
    }
    
    /* Shop Details Page Collapse */
    .product-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Services Page Collapse */
    .service-row {
        flex-direction: column !important; /* Override flex-direction */
        gap: 40px;
    }
    .service-row.reverse {
        flex-direction: column !important; /* Override the desktop reverse rule */
    }
    .service-row-image {
        order: -1; /* Ensure images always display above text visually on mobile */
        width: 100%;
    }
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(15px, 3vw, 30px);
}

.testimonial-card {
  background-color: var(--light-bg);
  padding: clamp(25px, 4vw, 40px) clamp(20px, 3vw, 30px);
  border-radius: 8px;
  border-top: 4px solid var(--primary-red);
}

.stars {
  color: #FFD700;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.quote {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.author {
  font-weight: 700;
  color: var(--primary-navy);
  font-size: 1.1rem;
}

/* --- Inner Pages Specific --- */

/* Page Hero */
.page-hero {
  background-color: var(--primary-navy);
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: clamp(80px, 12vw, 120px) 0 clamp(50px, 8vw, 80px);
  text-align: center;
  position: relative;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: 10px;
}

.page-hero p {
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  opacity: 0.8;
}

/* Services Detailed List */
.service-row {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 40px 0;
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-row-content {
  flex: 1;
}

.service-row-image {
  flex: 1;
}

.service-row-image img {
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-features {
  margin-top: 20px;
}

.service-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features i {
  color: var(--primary-red);
}

.service-divider {
  border: none;
  border-top: 1px solid #eaeaea;
  margin: 20px 0;
}

/* Events Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(350px, 100%), 1fr));
  gap: clamp(15px, 3vw, 30px);
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform var(--transition-normal);
  background: var(--white);
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.gallery-caption {
  padding: 20px;
}

.gallery-caption h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.gallery-caption p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Shop Layout */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.info-item .icon {
  width: 50px;
  height: 50px;
  background-color: rgba(205, 51, 51, 0.1);
  color: var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-item h4 {
  margin-bottom: 5px;
  font-family: var(--font-body);
  font-size: 1.1rem;
}

/* Forms */
.contact-form-wrapper {
  background-color: var(--light-bg);
  padding: 40px;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--primary-navy);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-red);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .header-cta {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    padding: 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    max-height: 0;
    overflow: hidden;
    display: flex;
    transition: max-height 0.35s ease-in-out;
  }
  
  .nav-menu.active {
    max-height: 600px; /* Large enough for all items */
  }
  
  .nav-menu > li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }
  
  .nav-link {
    padding: 15px 20px;
    width: 100%;
    min-height: 44px; /* Touch target */
    display: flex;
    align-items: center;
  }
  
  .has-dropdown > a::after {
    position: absolute;
    right: 20px;
    transition: transform 0.2s ease;
  }
  
  .has-dropdown.active > a::after {
    transform: rotate(180deg);
  }
  
  .dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-top: none;
    background-color: #f9f9f9;
    max-height: 0;
    overflow: hidden;
    display: block;
    transition: max-height 0.3s ease;
  }
  
  .has-dropdown.active .dropdown-menu {
    max-height: 400px;
  }
  
  .dropdown-menu li a {
    padding: 12px 20px 12px 40px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  .top-bar .container {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .top-bar {
    font-size: 0.75rem;
    padding: 6px 0;
  }
  
  .top-bar .container {
    gap: 10px;
    flex-direction: column;
    align-items: center;
  }
  
  .logo img {
    height: 45px;
  }
  
  .header-inner {
    padding: 10px 15px;
  }
  
  .hero {
    min-height: 70vh;
  }
  
  .service-content {
    padding: 25px 20px;
  }
  
  .footer-top {
    gap: 30px;
  }
  
  .footer-socials a {
    width: 44px;
    height: 44px;
  }
  
  .cta-banner {
    padding: clamp(40px, 8vw, 80px) 0;
  }
  
  .cta-banner .btn {
    padding: 12px 30px;
    font-size: 0.85rem;
    white-space: normal;
    text-align: center;
  }
}

/* --- Events Carousel --- */
.events-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 60px 0;
  background-color: var(--white);
  display: flex;
  align-items: center;
}

.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 20px;
  padding: 20px;
  width: 90%;
  margin: 0 auto;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  flex: 0 0 calc(33.333% - 14px);
  scroll-snap-align: center;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform var(--transition-normal);
}

.carousel-slide:hover {
  transform: scale(1.02);
}

.carousel-slide img {
  width: 100%;
  height: clamp(250px, 35vw, 450px);
  object-fit: cover;
  display: block;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 3rem;
  color: var(--primary-red);
  cursor: pointer;
  z-index: 10;
  padding: 10px;
  transition: color var(--transition-fast);
}

.carousel-control:hover {
  color: var(--primary-navy);
}

.carousel-control.prev {
  left: 10px;
}

.carousel-control.next {
  right: 10px;
}

@media (max-width: 992px) {
  .carousel-slide {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .carousel-slide {
    flex: 0 0 100%;
  }
  .carousel-track {
    width: 100%;
    padding: 20px 0;
  }
  .carousel-control {
    font-size: 2rem;
  }
}
