:root {
  --primary: #00253D;
  --secondary: #74B0DC;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
body {
  font-family: 'Montserrat',sans-serif;
  color: #333;
  overflow-x: hidden;
  font-size: 0.98rem;
  line-height: 1.4;
}
.hero-section {
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-section .row {
     min-height: clamp(90px, 14vw, 240px);
}

.hero-content {
    width: min(100%, 900px);
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.hero-buttons .btn {
  min-width: 180px;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display',serif;
}
/* BASE / TYPOGRAPHY */
h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}
h2 {
  font-size: 2rem !important;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
}
h4 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
}
h5 {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
}
h6 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}
p {
  font-size: 0.98rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.verhaal-section {
  overflow-x: hidden;
}
.verhaal-section .verhaal-title {
  font-size: clamp(1.9rem, 5.2vw, 2.8rem) !important;
}
.verhaal-section .verhaal-intro {
  font-size: clamp(0.95rem, 2.4vw, 1rem) !important;
  line-height: 1.6;
}
.verhaal-section .timeline-wrapper {
  margin-top: 2rem;
  overflow: hidden;
}
.verhaal-section .timeline-item {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 50px minmax(0, 1fr) !important;
  gap: clamp(1rem, 2vw, 2.5rem) !important;
  align-items: start !important;
  margin-bottom: clamp(2rem, 5vw, 4rem) !important;
}
.verhaal-section .timeline-item > div {
  min-width: 0;
}
.verhaal-section .timeline-item p,.verhaal-section .timeline-item h3,.verhaal-section .timeline-closing p {
  overflow-wrap: anywhere;
}
@media (max-width: 767px) {
  .verhaal-section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .verhaal-section .verhaal-title {
    font-size: 1.8rem !important;
    margin-bottom: 0.75rem !important;
  }
  .verhaal-section .verhaal-intro {
    font-size: 0.92rem !important;
    padding: 0 0.25rem;
  }
  .verhaal-section .timeline-wrapper {
    margin-top: 1.25rem !important;
  }
  .verhaal-section .timeline-item {
    display: block !important;
    margin-bottom: 1.25rem !important;
  }
  .verhaal-section .timeline-dot-column {
    display: none !important;
  }
  .verhaal-section .timeline-item > div {
    margin-bottom: 1rem !important;
    text-align: left !important;
  }
  .verhaal-section .timeline-item > div > div {
    padding: 1rem !important;
  }
  .verhaal-section .timeline-closing {
    padding: 1.25rem !important;
    margin-top: 2rem !important;
  }
  .verhaal-section .timeline-closing p {
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
  }
}
ul,ol {
  font-size: 0.98rem;
  line-height: 1.4;
}
li {
  font-size: 0.98rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.navbar {
  padding: 20px 0;
  background: #00253D;
  backdrop-filter: blur(10px);
  transition: padding 0.3s ease;
  z-index: 999;
}
.navbar.scrolled {
  padding: 10px 0;
}
.navbar-nav .nav-item {
  margin: 0 5px;
  font-weight: 500;
  color: #fff;
  align-items: center;
  transform: translateX(50px);
}
.nav-link {
  color: #fff !important;
  font-size: 0.85rem;
  padding: 0.5rem 0.3rem !important;
}
.nav-link:hover {
  border-bottom: 2px solid #fff;
  padding-bottom: 3px;
}
.dropdown-menu {
  background: #74B0DC;
  border: none;
}
.dropdown-item {
  color: #00253D;
  font-weight: 500;
  transition: background-color 0.3s ease;
  font-size: 0.85rem;
  padding: 0.5rem 0.8rem;
  border-bottom: 1px solid #00253D;
}
.dropdown-item:hover {
  background: #00253D;
  color: #fff;
  border-bottom: 2px solid #fff;
}
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}
.nav-item.dropdown .dropdown-toggle:focus + .dropdown-menu,.nav-item.dropdown:hover .dropdown-toggle {
  background: transparent;
}
.social-icons {
  display: flex;
  gap: 8px;
  margin-left: 10px;
}
.social-link {
  color: var(--secondary);
  font-size: 1rem;
  transition: color 0.3s ease;
  text-decoration: none;
}
.social-link:hover {
  color: #fff;
}
.floating-logo {
  position: fixed;
  top: 0px;
  left: 60px;
  z-index: 1000;
  max-width: 130px;
  height: auto;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,.4));
  transition: max-width 0.3s ease, left 0.3s ease;
}
.position-title {
  color: var(--secondary);
  font-weight: 600;
  margin: 5px 0;
  font-size: 0.75rem;
}
@media (max-width: 768px) {
  .position-title {
    font-size: 0.7rem;
  }
}
@media (max-width: 480px) {
  .position-title {
    font-size: 0.65rem;
  }
}
/* PERSONEEL Section */
.personeel-image {
  position: relative;
  width: 150px;
  height: 200px;
  margin: 0 auto 20px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.beheerliggaam-image {
  position: relative;
  width: 380px;
  height: 380px;
  margin: 0 auto 20px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.ondersteuning-grid {
  position: relative;
  width: 150px;
  height: 200px;
  margin: 0 auto 20px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.floating-logo.scrolled {
  max-width: 80px;
}
@media(max-width:1200px) {
  .accordion-skool .accordion-button {
    font-size: 0.96rem;
    line-height: 1.4;
  }
  .accordion-skool .accordion-body p {
    font-size: 0.96rem;
    line-height: 1.4;
  }
  .accordion-skool .accordion-body li {
    font-size: 0.96rem;
    line-height: 1.4;
  }
  .heritage-tab-btn {
    font-size: 0.96rem;
    line-height: 1.4;
  }
  .erekode-list li {
    font-size: 0.96rem;
    line-height: 1.4;
  }
  .song-verse {
    font-size: 0.96rem;
    line-height: 1.4;
  }
  body {
    font-size: 0.96rem;
    line-height: 1.4;
  }
  p {
    font-size: 0.96rem;
    line-height: 1.4;
  }
  ul,ol {
    font-size: 0.96rem;
    line-height: 1.4;
  }
  li {
    font-size: 0.96rem;
    line-height: 1.4;
  }
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 1.9rem !important;
  }
  h3 {
    font-size: 1.7rem;
  }
  .floating-logo {
    left: 80px;
    max-width: 120px;
  }
  .floating-logo.scrolled {
    max-width: 70px;
  }
  .navbar-nav .nav-item {
    margin: 0 3px;
  }
  .nav-link {
    font-size: 0.9rem;
    padding: 0.4rem 0.5rem !important;
  }
  .social-link {
    font-size: 0.9rem;
  }
}
@media(max-width:992px) {
  .accordion-skool .accordion-button {
    font-size: 0.94rem;
    line-height: 1.4;
  }
  .accordion-skool .accordion-body p {
    font-size: 0.94rem;
    line-height: 1.4;
  }
  .accordion-skool .accordion-body li {
    font-size: 0.94rem;
    line-height: 1.4;
  }
  .heritage-tab-btn {
    padding: 10px 18px;
    font-size: 0.94rem;
    line-height: 1.4;
  }
  .erekode-list li {
    font-size: 0.94rem;
    line-height: 1.4;
  }
  .song-verse {
    font-size: 0.94rem;
    line-height: 1.4;
  }
  body {
    font-size: 0.94rem;
    line-height: 1.4;
  }
  p {
    font-size: 0.94rem;
    line-height: 1.4;
  }
  ul,ol {
    font-size: 0.94rem;
    line-height: 1.4;
  }
  li {
    font-size: 0.94rem;
    line-height: 1.4;
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 1.8rem !important;
  }
  h3 {
    font-size: 1.6rem;
  }
  h4 {
    font-size: 1.3rem;
  }
  .navbar-nav .nav-item {
    margin: 0 3px;
  }
  .nav-link {
    font-size: 0.85rem;
    padding: 0.4rem 0.4rem !important;
  }
  .social-link {
    font-size: 0.85rem;
  }
  .navbar {
    padding: 15px 0;
  }
}
@media(max-width:768px) {
  .accordion-skool .accordion-button {
    font-size: 0.92rem;
    line-height: 1.4;
  }
  .accordion-skool .accordion-body p {
    font-size: 0.92rem;
    line-height: 1.4;
  }
  .accordion-skool .accordion-body li {
    font-size: 0.92rem;
    line-height: 1.4;
  }
  .heritage-tab-content {
    padding: 35px;
  }
  .heritage-tab-content h3 {
    font-size: 1.6rem;
  }
  .heritage-tab-btn {
    font-size: 0.92rem;
    line-height: 1.4;
  }
  .erekode-list li {
    font-size: 0.92rem;
    line-height: 1.4;
  }
  .song-verse {
    font-size: 0.92rem;
    line-height: 1.4;
  }
  body {
    font-size: 0.92rem;
    line-height: 1.4;
  }
  p {
    font-size: 0.92rem;
    line-height: 1.4;
  }
  ul,ol {
    font-size: 0.92rem;
    line-height: 1.4;
  }
  li {
    font-size: 0.92rem;
    line-height: 1.4;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.8rem !important;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.2rem;
  }
  h5 {
    font-size: 1.1rem;
  }
  .floating-logo {
    left: 20px;
    max-width: 100px;
  }
  .floating-logo.scrolled {
    max-width: 60px;
  }
  .navbar {
    padding: 10px 0;
  }
  .navbar-nav .nav-item {
    margin: 0 2px;
  }
  .nav-link {
    font-size: 0.8rem;
    padding: 0.3rem 0.3rem !important;
  }
  .dropdown-item {
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
  }
  .social-link {
    font-size: 0.85rem;
  }
  .social-icons {
    gap: 5px;
    margin-left: 5px;
  }
  .btn-primary-custom {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
}
@media(max-width:576px) {
  .accordion-skool .accordion-button {
    font-size: 0.88rem;
    line-height: 1.4;
    padding: 16px;
  }
  .accordion-skool .accordion-body p {
    font-size: 0.88rem;
    line-height: 1.4;
  }
  .accordion-skool .accordion-body li {
    font-size: 0.88rem;
    line-height: 1.4;
  }
  .heritage-tab-content {
    padding: 20px;
  }
  .heritage-tab-content h3 {
    font-size: 1.4rem;
  }
  .heritage-tab-btn {
    padding: 8px 14px;
    font-size: 0.88rem;
    border-radius: 20px;
    line-height: 1.4;
  }
  .erekode-list li {
    font-size: 0.88rem;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  .song-verse {
    font-size: 0.88rem;
    line-height: 1.4;
  }
  body {
    font-size: 0.88rem;
    line-height: 1.4;
  }
  p {
    font-size: 0.88rem;
    line-height: 1.4;
  }
  ul,ol {
    font-size: 0.88rem;
    line-height: 1.4;
  }
  li {
    font-size: 0.88rem;
    line-height: 1.4;
  }
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.5rem !important;
  }
  h3 {
    font-size: 1.3rem;
  }
  h4 {
    font-size: 1.1rem;
  }
  h5 {
    font-size: 1rem;
  }
  .floating-logo {
    left: 15px;
    max-width: 80px;
  }
  .floating-logo.scrolled {
    max-width: 50px;
  }
  .navbar {
    padding: 8px 0;
  }
  .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .navbar-nav .nav-item {
    margin: 0 0 0.2rem;
  }
  .nav-link {
    font-size: 0.75rem;
    padding: 0.2rem 0.25rem !important;
  }
  .dropdown-item {
    font-size: 0.75rem;
    padding: 0.3rem 0.5rem;
  }
  .social-link {
    font-size: 0.8rem;
  }
  .social-icons {
    gap: 4px;
    margin-left: 4px;
  }
  .btn-primary-custom {
    padding: 6px 10px;
    font-size: 0.8rem;
  }
}
.hero-section {
  background: url('../images/academics.jpg') center center;
  background-size: cover;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0,37,61,.95),
      rgba(0,37,61,.20)
    );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.hero-content h1 {
  font-size: 70px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 30px;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.btn-primary-custom {
  background: #74B0DC;
  color: #fff;
  border: none;
  padding: 10px 18px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}
.btn-primary-custom:hover {
  background: #00253D;
  color: #fff;
}
.btn-outline-custom {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 30px;
}
/* STATS BAR */
.stats-bar {
    background: #020e16;
    color: white;
    padding: 35px 0;
}

.stats-grid-6,
.stats-grid-3,
.stats-grid-2 {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.stats-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stats-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 10px;
}

.stat-item i {
    display: block;
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.stat-item span {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Visibility */
.stats-tablet,
.stats-mobile {
    display: none;
}

/* Tablet */
@media (max-width: 991px) {

    .stats-desktop {
        display: none;
    }

    .stats-tablet {
        display: block;
    }

    .stats-mobile {
        display: none;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .stats-desktop,
    .stats-tablet {
        display: none;
    }

    .stats-mobile {
        display: block;
    }

    .stat-item i {
        font-size: 1.6rem;
    }

    .stat-item span {
        font-size: 0.75rem;
    }
}
.feature-card {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  position: relative;
}
.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2rem;
  margin: -40px auto 0;
  position: relative;
}
.principal-section {
  background: #f7f7f7;
}
.principal-content {
  padding: 80px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
/* BENEFITS */
.benefits-section {
    background: var(--primary);
    color: white;
    padding: 50px 20px;
}

.benefits-grid-4,
.benefits-grid-2 {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefits-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.benefit-item {
    text-align: center;
}

.benefit-item i {
    display: block;
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.benefit-item h5 {
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Visibility */
.benefits-tablet,
.benefits-mobile {
    display: none;
}

/* Tablet */
@media (max-width: 991px) {

    .benefits-desktop {
        display: none;
    }

    .benefits-tablet {
        display: block;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .benefits-desktop,
    .benefits-tablet {
        display: none;
    }

    .benefits-mobile {
        display: block;
    }

    .benefits-section {
        padding: 35px 15px;
    }

    .benefit-item i {
        font-size: 2.2rem;
    }

    .benefit-item h5 {
        font-size: 0.9rem;
    }
}
.waarom-nories-section {
  padding: 80px 0;
  background: #f7f7f7;
}
.waarom-nories-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}
.waarom-card {
  background: white;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.waarom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,.12);
}
.waarom-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2.5rem;
  margin: 0 auto 25px;
}
.waarom-card h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 700;
}
.waarom-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
.waarom-closing {
  background: white;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,.08);
  text-align: center;
}
.waarom-closing p {
  color: #333;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
}
.info-section {
  padding: 60px 0;
  border-bottom: 1px solid #e0e0e0;
}
.info-section h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.info-section p {
  color: #666;
  font-size: 1rem;
  line-height: 1.8;
}
.vmv-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vmv-list li {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}
.vmv-list li:before {
  content: "•";
  color: var(--secondary);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  font-size: 1.2rem;
}
.timeline {
  position: relative;
  padding: 20px 0;
}
.timeline:before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: var(--secondary);
}
/* ==========================VISIE, MISSIE & WAARDES========================== */
.vision-mission-section {
  background: #f0f6ff;
  padding: 80px 0;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.section-subtitle {
  max-width: 700px;
  margin: 0 auto;
  color: #666;
  font-size: 1.1rem;
}
/* TIMELINE */
.timeline {
  position: relative;
  margin-top: 60px;
  padding-left: 70px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--secondary);
}
.timeline-item {
  position: relative;
  padding-bottom: 60px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-icon {
  position: absolute;
  left: -70px;
  top: 0;
  width: 46px;
  height: 46px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  z-index: 2;
}
.timeline-content h3 {
  color: var(--primary);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.timeline-content p,.timeline-content li {
  color: #444;
  line-height: 1.8;
  font-size: 1rem;
}
.timeline-content ul {
  padding-left: 20px;
  margin-bottom: 0;
}
.timeline-content li {
  margin-bottom: 8px;
}
/* MOBILE */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .timeline {
    padding-left: 55px;
  }
  .timeline::before {
    left: 18px;
  }
  .timeline-icon {
    left: -55px;
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
  .timeline-content h3 {
    font-size: 1.5rem;
  }
}
/* ==========================ACCORDION STYLING========================== */
.accordion-skool {
  border: none;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  border-radius: 8px;
  overflow: hidden;
}
.accordion-skool .accordion-item {
  border: none;
  border-bottom: 1px solid #e8f0f8;
}
.accordion-skool .accordion-item:last-child {
  border-bottom: none;
}
.accordion-skool .accordion-button {
  background-color: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 20px;
  border: none;
  transition: all 0.3s ease;
  line-height: 1.4;
}
.accordion-skool .accordion-button:hover {
  background-color: #001a2e;
}
.accordion-skool .accordion-button:focus {
  box-shadow: none;
  background-color: var(--secondary);
  color: #00253D;
}
.accordion-skool .accordion-button:not(.collapsed) {
  background-color: var(--secondary);
  color: #00253D;
  box-shadow: none;
}
.accordion-skool .accordion-button::after {
  filter: invert(1);
}
.accordion-skool .accordion-button:not(.collapsed)::after {
  filter: invert(1);
}
.accordion-skool .accordion-body {
  padding: 25px;
  background-color: #fff;
  color: #666;
  border-top: 1px solid #e8f0f8;
}
.accordion-skool .accordion-body p {
  margin-bottom: 15px;
  line-height: 1.4;
  font-size: 0.98rem;
}
.accordion-skool .accordion-body p:last-child {
  margin-bottom: 0;
}
.accordion-skool .accordion-body h5 {
  color: var(--primary);
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1rem;
}
.accordion-skool .accordion-body ul {
  margin-bottom: 15px;
  padding-left: 20px;
}
.accordion-skool .accordion-body li {
  margin-bottom: 8px;
  line-height: 1.4;
  color: #666;
  font-size: 0.98rem;
}
/* GALLERY, NEWS & CTA */
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.gallery-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.news-card {
  box-shadow: 0 8px 25px rgba(0,0,0,.08);
  background: white;
}
.news-card img {
  width: 100%;
}
.cta-section {
  background: var(--primary);
  color: white;
  padding: 70px 0;
}
/* FOOTER */
.footer {
  background: #00192A;
  color: white;
  padding: 40px 0 25px;
  text-align: center;
}
.footer .container {
  text-align: center;
}
.footer .row {
  justify-content: left;
}
.footer .col-lg-3,.footer .col-md-6 {
  text-align: left;
}
@media (max-width: 576px) {
  .footer .col-lg-3,.footer .col-md-6 {
    text-align: center;
  }
  .footer .footer-links {
    margin: 0;
    text-align: center;
  }
  .footer .footer-heading {
    text-align: center;
  }
}
.footer-logo {
  max-width: 280px;
  height: auto;
  display: block;
  margin: 0 auto 1rem;
}
.contact-info {
  font-size: 13px;
  line-height: 1.3;
  display: inline-block;
  text-align: left;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px !important;
  justify-content: center;
}
.contact-item i {
  color: var(--secondary);
  font-size: 1.2rem;
}
.contact-item a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-item a:hover {
  color: var(--secondary);
}
.footer-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  font-size: 13px;
  line-height: 0.98em;
  display: inline-block;
  text-align: left;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.8rem;
  line-height: 0.98em;
}
.footer-links a:hover {
  color: var(--secondary);
}
.footer-social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-social-link {
  color: var(--secondary);
  font-size: 1.4rem;
  transition: color 0.3s ease;
  text-decoration: none;
}
.footer-social-link:hover {
  color: white;
}
.footer-image {
  max-width: 100%;
  height: auto;
  display: block;
}
.footer-divider {
  border-color: rgba(255,255,255,0.1);
  margin: 20px 0;
}
.footer-copyright {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.35;
  color: rgba(255,255,255,0.7);
}
@media(max-width:991px) {
  .footer .row > div {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .navbar-collapse {
    background: rgba(0,37,61,.97);
    padding: 1rem;
    border-radius: 0.75rem;
    margin-top: 0.75rem;
  }
  .navbar-nav {
    width: 100%;
  }
  .navbar-nav .nav-item {
    margin: 0 0 0.3rem;
  }
  .navbar-nav .nav-link {
    padding: 0.65rem 0.75rem !important;
    display: block;
    border-radius: 0.35rem;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  .navbar-nav .nav-link:hover,.navbar-nav .nav-link:focus-visible {
    background: #74B0DC;
    color: #fff !important;
  }
  .dropdown-menu {
    border: 0;
    margin: 0;
    padding: 0;
    background: transparent;
  }
  .dropdown-item {
    color: #fff;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,.15);
    padding-left: 1.35rem !important;
    margin-left: 0.4rem;
  }
  .dropdown-item:hover,.dropdown-item:focus-visible {
    background: #74B0DC;
    color: #fff;
    border-left: 2px solid var(--secondary);
  }
  .social-icons {
    margin: 0.75rem 0 0;
  }
  .floating-logo {
    position: static !important;
    left: auto !important;
    top: auto !important;
    max-width: 70px;
    margin-bottom: 0.5rem;
    display: block;
  }
  .hero-content {
    padding: 0 0.75rem;
  }
  .hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.1rem) !important;
  }
  .hero-content p {
    font-size: 1rem;
    max-width: 100%;
  }
  .principal-content {
    padding: 40px 20px;
  }
}
@media(max-width:768px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  .principal-content {
    padding: 40px;
  }
  .footer-logo {
    max-width: 320px;
  }
  .footer-heading {
    font-size: 1rem;
    margin-top: 20px;
    margin-bottom: 15px;
  }
  .footer-links a {
    font-size: 0.9rem;
  }
}
@media(max-width:576px) {
  .footer .row > div {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .footer .footer-links,.footer .footer-heading,.footer .contact-info,.footer .contact-item,.footer .footer-social-icons,.footer .col-lg-3,.footer .col-md-6 {
    text-align: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
  .footer .footer-links {
    display: block;
    padding: 0;
  }
  .footer .footer-links li {
    list-style: none;
  }
  .hero-section {
    min-height: 320px;
    padding: 90px 0 60px;
  }
  .hero-section .row {
    min-height: 320px;
  }
  .hero-content {
    margin-top: 0;
  }
  .hero-content h1 {
    font-size: clamp(1.8rem, 7vw, 2.4rem) !important;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .footer-social-icons {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .contact-item {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .personeel-image {
    width: min(100%, 220px);
    height: clamp(220px, 60vw, 280px);
  }
  .beheerliggaam-image {
    width: min(100%, 320px);
    height: auto;
    aspect-ratio: 1;
  }
}
/* Radio Station Page Styles */
.hero-overlay-dark {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0,37,61,.8),
      rgba(0,37,61,.5)
    );
}
.event-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  height: 100%;
}
.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.event-date {
  background: var(--secondary);
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
}
.date-day {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.date-month {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 5px;
}
.event-content {
  padding: 20px;
  flex: 1;
}
.event-content h4 {
  margin: 0 0 10px 0;
  color: var(--primary);
  font-size: 1.1rem;
}
.event-time {
  color: var(--secondary);
  font-size: 0.9rem;
  margin: 8px 0;
}
.event-content p {
  margin: 0;
  font-size: 0.95rem;
  color: #666;
}



/* ==========================================
   SPORTING CODES GRID
========================================== */

.sports-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    margin-top: 2rem;
}

.sport-grid-item {
    width: 100%;
}

/* Tablet */
@media (max-width: 991px) {

    .sports-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

}

/* Mobile */
@media (max-width: 767px) {

    .sports-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .sport-overlay h5 {
        font-size: 0.85rem;
    }

}


/* ==========================================
   ACHIEVEMENT SECTION
========================================== */

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 2rem;
}

.achievement-item {
    text-align: center;
}

.achievement-item i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.achievement-item h3 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.achievement-item p {
    color: white;
    margin: 0;
}

/* Tablet */
@media (max-width: 991px) {

    .achievement-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

}

/* Mobile */
@media (max-width: 767px) {

    .achievement-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .achievement-item i {
        font-size: 2rem;
    }

    .achievement-item h3 {
        font-size: 1.5rem;
    }

    .achievement-item p {
        font-size: 0.85rem;
    }

}








.sports-event {
  background: white;
  border-left: 4px solid var(--secondary);
  padding: 25px;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.sports-event:hover {
  transform: translateX(5px);
}
.sports-event-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.sports-event-header h4 {
  margin: 0;
  color: var(--primary);
  font-size: 1.1rem;
}
.sports-event-header i {
  color: var(--secondary);
  font-size: 1.3rem;
  margin-right: 10px;
}
.badge {
  font-size: 0.75rem;
  padding: 6px 12px;
}
.sports-event-details p {
  margin: 8px 0;
  color: #666;
  font-size: 0.95rem;
}
.sports-event-details strong {
  color: var(--primary);
}
.schedule-table {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.schedule-row {
  display: flex;
  border-bottom: 1px solid #eee;
}
.schedule-row:last-child {
  border-bottom: none;
}
.schedule-time {
  background: var(--secondary);
  color: white;
  padding: 20px;
  min-width: 150px;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.9rem;
}
.schedule-slot {
  padding: 20px;
  flex: 1;
}
.schedule-slot h5 {
  margin: 0 0 8px 0;
  color: var(--primary);
}
.schedule-slot p {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
}
/* HERITAGE TABBED SECTION */
.heritage-tabbed-section {
  background: #f9f9f9;
}
.heritage-nav-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  border: none;
  flex-wrap: wrap;
}
.heritage-nav-tabs .nav-item {
  margin: 0;
}
.heritage-tab-btn {
  background: white;
  color: var(--primary) !important;
  border: 2px solid var(--primary);
  border-radius: 25px;
  padding: 12px 25px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}
.heritage-tab-btn:hover {
  background: white;
  color: var(--primary) !important;
  border-color: var(--secondary);
  transform: translateY(-2px);
}
.heritage-tab-btn.active {
  background: var(--primary);
  color: white !important;
  border-color: var(--primary);
}
.heritage-tab-btn i {
  font-size: 1.1rem;
  color: inherit;
}
.heritage-tab-content {
  background: white;
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.heritage-tab-content h3 {
  color: var(--primary);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 0;
}
.heritage-image-wrapper {
  overflow: hidden;
  border-radius: 8px;
  background: #f5f5f5;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.heritage-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.erekode-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}
.erekode-list li {
  padding-left: 20px;
  margin-bottom: 12px;
  position: relative;
  color: #333;
  font-size: 0.98rem;
  line-height: 1.4;
}
.erekode-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}
.song-verse {
  color: #444;
  font-style: italic;
  line-height: 1.4;
  margin: 0;
  font-size: 0.98rem;
}
@media(max-width:992px) {
  .heritage-tab-content {
    padding: 35px;
  }
  .heritage-tab-content h3 {
    font-size: 1.6rem;
  }
  .row {
    flex-direction: column;
  }
  .order-lg-1,.order-lg-2 {
    order: 0 !important;
  }
  .heritage-nav-tabs {
    gap: 10px;
  }
  .heritage-tab-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}
@media(max-width:576px) {
  .heritage-tab-content {
    padding: 20px;
  }
  .heritage-tab-content h3 {
    font-size: 1.4rem;
  }
  .heritage-nav-tabs {
    gap: 8px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .heritage-tab-btn {
    padding: 8px 14px;
    font-size: 0.8rem;
    border-radius: 20px;
  }
  .heritage-tab-btn i {
    display: none;
  }
  .erekode-list li {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
}
/* INFO CARDS SECTION */
.info-cards-section {
  padding: 80px 0;
}
.info-card {
  background: white;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}
.info-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2rem;
  margin: 0 auto 20px;
}
.info-card h4 {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.info-card h4 a:hover {
  text-decoration: underline !important;
}
.info-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
/* DOCUMENT CARDS SECTION */
.dokumente-section {
  background: #f9f9f9;
}
.document-card {
  background: white;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.document-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.document-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background:
    linear-gradient(
      135deg,
      var(--secondary),
      var(--primary)
    );
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.document-card h4 {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 0;
}
.document-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
}
.document-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  padding: 10px 22px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  margin-top: auto;
}
.document-btn:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateX(3px);
}
.document-btn i {
  font-size: 1rem;
}
@media(max-width:768px) {
  .document-card {
    padding: 30px 20px;
  }
  .document-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
  .document-card h4 {
    font-size: 1.1rem;
  }
  .document-card p {
    font-size: 0.85rem;
  }
}
@media(max-width:576px) {
  .document-card {
    padding: 25px 15px;
  }
  .document-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }
  .document-card h4 {
    font-size: 1rem;
  }
  .document-card p {
    font-size: 0.8rem;
  }
  .document-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}
@media(max-width:768px) {
  .info-cards-section {
    padding: 60px 0;
  }
  .info-card {
    padding: 30px 20px;
    margin-bottom: 20px;
  }
  .info-card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  .info-card h4 {
    font-size: 1.1rem;
  }
  .info-card p {
    font-size: 0.9rem;
  }
}
/* SPORTS / EXTRA PAGE STYLES */
.section-title {
  font-weight: 700;
  text-transform: uppercase;
}
/* HERO */
.sports-hero {
  background: url('../images/hero.jpg') center center;
  background-size: cover;
  position: relative;
}
.sports-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
}
.hero-content p {
  max-width: 600px;
  margin: 25px 0;
}
/* BUTTONS */
.btn-primary-custom {
  background: var(--secondary);
  color: #fff;
  padding: 10px 15px;
  border: none;
}
.btn-primary-custom:hover {
  background: #5a9cca;
  color: #fff;
}
/* SPORTS */
.sport-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
}
.sport-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.sport-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      transparent,
      rgba(0,37,61,.95)
    );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  color: #fff;
  padding: 20px;
}
.sport-overlay i {
  font-size: 2rem;
}
.sport-overlay h5 {
  margin-top: 10px;
}
/* STATS */
.achievement-section {
  background: var(--primary);
  padding: 80px 0;
  color: #fff;
}
.achievement-section i {
  color: var(--secondary);
  font-size: 2.5rem;
}
.achievement-section h3 {
  margin-top: 15px;
  font-size: 2rem;
}
/* FACILITIES */
.facility-card {
  border: 1px solid #eee;
  background: #fff;
}
.facility-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.facility-content {
  padding: 20px;
}
/* GALLERY */
.gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.gallery-link {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
}
/* FIXTURES */
.fixture-table td {
  padding: 18px;
  vertical-align: middle;
}
/* CTA CARD */
.cta-card {
  background: var(--primary);
  color: #fff;
  padding: 40px;
  height: 100%;
  border-radius: 8px;
}
.cta-card h3 {
  margin-bottom: 20px;
}
/* FOOTER CTA */
.bottom-cta {
  background: var(--primary);
  color: #fff;
  padding: 70px 0;
}
.bottom-cta h2 {
  font-size: 2.3rem;
}
/* MOBILE */
@media(max-width:768px) {
  .hero-section {
    height: 350px;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .sport-card img {
    height: 250px;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .section-subtitle {
    font-size: 1rem;
  }
  .principal-content {
    padding: 30px;
  }
  .row {
    margin: -10px;
  }
  .col-lg-5,.col-lg-6,.col-lg-7,.col-md-6 {
    padding: 10px;
  }
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  h3 {
    font-size: 1.4rem;
  }
  h4 {
    font-size: 1.1rem;
  }
  h5 {
    font-size: 1rem;
  }
  h6 {
    font-size: 0.95rem;
  }
  p {
    font-size: 0.95rem;
  }
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .achievement-section h3 {
    font-size: 1.6rem;
  }
  .cta-card {
    padding: 25px;
  }
  .bottom-cta h2 {
    font-size: 1.8rem;
  }
}
@media(max-width:576px) {
  .hero-section {
    height: 280px;
  }
  .navbar {
    padding: 6px 0;
  }
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-content p {
    font-size: 0.9rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .section-subtitle {
    font-size: 0.95rem;
  }
  .principal-content {
    padding: 20px;
  }
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  h3 {
    font-size: 1.2rem;
  }
  h4 {
    font-size: 1rem;
  }
  h5 {
    font-size: 0.95rem;
  }
  h6 {
    font-size: 0.9rem;
  }
  p {
    font-size: 0.9rem;
  }
  .sport-card img {
    height: 200px;
  }
  .gallery-img {
    height: 180px;
  }
  .py-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .achievement-section {
    padding: 40px 0;
  }
  .achievement-section h3 {
    font-size: 1.4rem;
  }
  .achievement-section i {
    font-size: 2rem;
  }
  .cta-card {
    padding: 20px;
  }
  .bottom-cta {
    padding: 40px 0;
  }
  .bottom-cta h2 {
    font-size: 1.5rem;
  }
  .footer-logo {
    max-width: 220px;
  }
  .footer-heading {
    font-size: 0.95rem;
    margin-top: 15px;
    margin-bottom: 12px;
  }
  .footer-links a {
    font-size: 0.85rem;
  }
  .contact-info {
    font-size: 0.85rem;
  }
  .hero-overlay-dark {
    background:
      linear-gradient(
        90deg,
        rgba(0,37,61,.9),
        rgba(0,37,61,.7)
      );
  }
}
/* COMPREHENSIVE RESPONSIVE GRID FIXES */
@media(max-width:992px) {
  .col-lg-5,.col-lg-6,.col-lg-7 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2,.row-cols-lg-3,.row-cols-lg-4 {
    --bs-columns: 1;
  }
}
@media(max-width:768px) {
  .col-md-6,.col-md-8,.col-md-10 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .gap-5 {
    gap: 1.5rem !important;
  }
  .gap-4 {
    gap: 1rem !important;
  }
}
@media(max-width:576px) {
  .col-6,.col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .gap-5 {
    gap: 1rem !important;
  }
  .gap-4 {
    gap: 0.75rem !important;
  }
  .gap-3 {
    gap: 0.5rem !important;
  }
}
/* FORM RESPONSIVE STYLES */
@media(max-width:768px) {
  input,textarea,select {
    font-size: 16px !important;
  }
  .form-control {
    padding: 10px 12px;
  }
  .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}
@media(max-width:576px) {
  input,textarea,select {
    font-size: 16px !important;
    padding: 12px 10px;
  }
  .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}
/* IMAGE RESPONSIVE STYLES */
@media(max-width:768px) {
  img {
    max-width: 100%;
    height: auto;
  }
  .img-fluid {
    max-width: 100%;
  }
}
/* CARD RESPONSIVE STYLES */
@media(max-width:768px) {
  .card {
    margin-bottom: 15px;
  }
  .feature-card {
    margin-bottom: 20px;
  }
  .event-card {
    flex-direction: column;
  }
  .event-date {
    min-width: auto;
    padding: 15px;
  }
}
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }
  .footer .row {
    justify-content: center;
  }
  .footer .col-lg-3,.footer .col-md-6 {
    text-align: center !important;
    margin-bottom: 2rem;
  }
  .contact-info {
    display: block;
    text-align: center;
  }
  .contact-item {
    justify-content: center;
  }
  .footer-links {
    display: block;
    text-align: center;
  }
  .footer-links li {
    margin-bottom: 12px;
  }
  .footer-social-icons {
    justify-content: center;
  }
  .footer-image {
    margin: 0 auto;
    display: block;
  }
  .footer-logo {
    margin: 0 auto 1rem;
  }
  .footer-heading {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.contact-info {
  font-size: 13px;
  line-height: 1.3;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  line-height: 0.98em;
}
@media (max-width: 768px) {
  .footer {
    padding: 50px 0 30px;
  }
  .footer .col-lg-3,.footer .col-md-6 {
    margin-bottom: 2.5rem;
  }
  .footer-heading {
    margin-bottom: 1.25rem;
  }
}

/* CONTACT FORM */

.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-weight: 600;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
}

.contact-btn {
    background: var(--primary);
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-btn:hover {
    background: var(--secondary);
    color: var(--primary);
}

/* ==========================================
   KULTUUR GRID
========================================== */

.culture-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    margin-top: 2rem;
}

.culture-grid-item {
    width: 100%;
}

/* Tablet */
@media (max-width: 991px) {

    .culture-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

}

/* Mobile */
@media (max-width: 767px) {

    .culture-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .culture-grid .sport-overlay h5 {
        font-size: 0.85rem;
    }

}