/* Hero */
.hero {
      min-height: 100vh;
      padding-top: 80px;
      position: relative;
      background-image: url('../../content/pictures/hero-dog.webp');
      background-size: cover;
      background-position: center;
}

.hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.05) 100%);
}

.hero-content {
      position: relative;
      z-index: 1;
}

.hero-title {
      font-size: 3.5rem;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 1rem;
      color: #fff;
}

.hero-subtitle {
      font-size: 1.25rem;
      margin-bottom: 2rem;
      max-width: 500px;
      color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      /* Voor heel kleine schermen */
}

/* Section styles */
.section-padding {
      padding: 5rem 1rem;
}

.section-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
}

.section-subtitle {
      color: var(--text-muted);
      margin-bottom: 2.5rem;
}

/* Overview cards */

.overview-card {
      border: 1px solid var(--border-color);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.overview-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.overview-card i {
      color: var( --primary-color);
}

/* About strip */
.about-strip {
      background-color: var( --primary-color);
      clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0% 100%);
      margin: -2rem 0;
}

.about-strip-inner {
      padding-top: 6rem;
      padding-bottom: 6rem;
}

@media (max-width: 768px) {
      .about-strip {
            clip-path: polygon(0 2%, 100% 0%, 100% 98%, 0% 100%);
      }
}

/* FAQ */

.faq-img {
      max-height: 380px;
      width: 100%;
      object-fit: cover;
}

@media (max-width: 768px) {
      .faq-img {
            max-height: 240px;
      }
}

.accordion-button:not(.collapsed) {
      background-color: #0bc980;
}

.accordion-button:focus {
      box-shadow: none;
}

/* Image carousel */
.carousel-section {
      overflow: hidden;
      padding-bottom: 1rem;
}

.carousel-track-wrap {
      overflow: hidden;
      margin-top: 2rem;
}

.carousel-track {
      display: flex;
      gap: 1rem;
      width: max-content;
      animation: carousel-scroll 30s linear infinite;
}

.carousel-track:hover {
      animation-play-state: paused;
}

.carousel-slide {
      width: 280px;
      height: 300px;
      border-radius: 1rem;
      overflow: hidden;
}

.carousel-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
}

.carousel-slide:hover img {
      transform: scale(1.05);
}

@keyframes carousel-scroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
}

@media (max-width: 576px) {
      .carousel-slide {
            width: 200px;
            height: 150px;
      }
}

/* Newsletter */

.newsletter-section {
      background-color: var(--bg-light);
      padding: 4rem 1rem;
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
}

.newsletter-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      flex-wrap: wrap;
}

.newsletter-text h2 {
      font-size: 1.75rem;
      font-weight: 700;
      margin-bottom: 0.25rem;
}

.newsletter-text p {
      color: var(--text-muted);
      margin: 0;
}

.newsletter-form {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
}

.newsletter-input {
      padding: 0.6rem 1rem;
      border: 1px solid var(--border-color);
      border-radius: 0.5rem;
      font-family: "Lexend", sans-serif;
      min-width: 240px;
      outline: none;
      transition: border-color 0.2s ease;
}

@media (max-width: 768px) {
      .newsletter-inner {
            flex-direction: column;
            text-align: center;
      }

      .newsletter-form {
            justify-content: center;
            width: 100%;
      }

      .newsletter-input {
            min-width: 0;
            width: 100%;
      }
}

/* Marquee */
.marquee-section {
      background-color: var( --primary-color);
      overflow: hidden;
      border-top: 2px solid rgba(0,0,0,0.08);
      border-bottom: 2px solid rgba(0,0,0,0.08);
}

.marquee-header {
      text-align: center;
      padding: 1.5rem 1rem 0.5rem;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(0,0,0,0.45);
}

.marquee-track-wrap {
      overflow: hidden;
      padding: 1rem 0 1.75rem;
}

.marquee-track {
      display: flex;
      width: max-content;
      animation: marquee-scroll 28s linear infinite;
}

.marquee-item {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      white-space: nowrap;
      font-weight: 600;
      color: #000;
      padding: 0.6rem 2.5rem;
      border-right: 2px solid rgba(0,0,0,0.12);
}

.marquee-item i {
      color: #fff;
      background-color: rgba(0,0,0,0.15);
      border-radius: 50%;
      width: 2rem;
      height: 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
}

@keyframes marquee-scroll {
      100% { transform: translateX(-50%); }
}

/* Buttons */

.btn-primary {
      color: #000;
}

.btn-primary:hover {
      color: #fff;
}

/* Responsive */

@media (max-width: 768px) {
      .hero-title {
            font-size: 2.25rem;
      }

      .hero-subtitle {
            font-size: 1rem;
      }
}

@media (max-width: 576px) {
      .hero-title {
            font-size: 1.75rem;
      }

      .section-padding {
            padding: 3rem 1rem;
      }
}