/* Custom CSS for Potlodenschool Essen */

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "League Spartan", sans-serif;
  background: #f5f0eb;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Header Styles */
.header {
  background: #7db5c4;
  padding: 0.75rem 0;
  color: white;
  font-size: 0.9rem;
  font-weight: 300;
}

.header .container-fluid {
  padding: 0 2rem;
}

.contact-info span {
  font-size: 0.85rem;
  white-space: nowrap;
}

.contact-info i {
  font-size: 0.8rem;
  opacity: 0.8;
}

.social-icons {
  gap: 0.5rem;
}

.social-icon {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: white;
  transform: translateY(-2px);
}

/* Navigation Styles */
.navbar {
  padding: 1rem 0;
  background: white !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  text-decoration: none;
}

/* Logo Image Styles */
.logo-image {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05);
}

/* Legacy logo styles (can be removed if not needed) */
.logo-icon {
  width: 45px;
  height: 45px;
  background: #ff6b6b;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.logo-text {
  font-family: "League Spartan", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #333;
  line-height: 1.2;
}

.logo-subtext {
  font-size: 0.8rem;
  color: #666;
  font-weight: 300;
  line-height: 1;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #333 !important;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
  position: relative;
  margin: 0 0.25rem;
}

.navbar-nav .nav-link:hover {
  color: #ff9a50 !important;
}

.navbar-nav .nav-link.active {
  color: #ff9a50 !important;
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: #ff9a50;
  border-radius: 2px;
}

/* Dropdown Menu Styles */
.dropdown-menu {
  background: white;
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 200px;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid white;
}

.dropdown-item {
  padding: 0.75rem 1.5rem !important;
  font-weight: 500;
  color: #333 !important;
  transition: all 0.3s ease;
  border: none;
  background: transparent;
}

.dropdown-item:hover {
  background: #ff9a50 !important;
  color: white !important;
  transform: translateX(5px);
}

.dropdown-item:focus {
  background: #ff9a50 !important;
  color: white !important;
}

/* Dropdown Toggle Arrow */
.dropdown-toggle::after {
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  margin-left: 0.5em;
  transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

/* Hover Effect for Dropdown */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.nav-item.dropdown .dropdown-menu {
  display: none;
}

.contact-btn {
  background: #ff9a50 !important;
  color: white !important;
  padding: 0.75rem 1.5rem !important;
  border: none !important;
  border-radius: 25px !important;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 154, 80, 0.3);
  text-decoration: none;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 154, 80, 0.4);
  color: white !important;
}

/* Main Content Styles */
.main-content {
  min-height: calc(50vh - 140px);
}

.content-section {
  padding: 3rem 0;
  animation: fadeInLeft 1s ease-out;
}
.content-section-admin {
  padding: 3rem 3rem;
  animation: fadeInLeft 1s ease-out;
}

.welcome-text {
  color: #ff9a50;
  font-weight: 500;
  font-size: テキストのサイズを1.1remに設定;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.main-title-home {
  font-family: "Lilita One", cursive;
  font-size: 3rem;
  color: #2c3e50;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.main-title {
  font-family: "Lilita One", cursive;
  font-size: 3.5rem;
  color: #2c3e50;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle {
  font-size: 1.1rem;
  color: #7f8c8d;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.subtitle-admin {
 
  color: #7f8c8d;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: #ff9a50 !important;
  border: none !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 25px !important;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 154, 80, 0.3);
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 154, 80, 0.4);
}

.btn-outline-primary {
  border: 2px solid #ff9a50 !important;
  color: #ff9a50 !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 25px !important;
  font-weight: 600;
  transition: all 0.3s ease;
  background: transparent !important;
  text-decoration: none;
}

.btn-outline-primary:hover {
  background: #ff9a50 !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 154, 80, 0.3);
}

/* Hero Image Styles */
.hero-image {
  height: 100vh;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.1);
  animation: fadeInRight 1s ease-out;
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .hero-image {
    height: 50vh;
    margin-top: 2rem;
  }

  .main-title {
    font-size: 2.5rem;
  }

  .content-section {
    text-align: center;
  }

  .navbar-nav {
    margin-top: 1rem;
    text-align: center;
  }

  .contact-btn {
    margin-top: 1rem;
  }
  .schooluren-content {
    position: relative;
    z-index: 1;
    padding: 2rem !important;
}
.parent-button-contact{
  text-align: center;
}

}

@media (max-width: 767.98px) {
  .header .container-fluid {
    padding: 0 1rem;
  }

  .contact-info {

      gap: 1.5rem !important;
      display: none !important;
  }

  .social-icons {
    margin-top: 0.5rem;
  }

  .main-title {
    font-size: 2rem;
  }

  .hero-image {
    height: 40vh;
  }

  .cta-buttons {
    justify-content: center;
  }

  .btn-primary,
  .btn-outline-primary {
    padding: 0.6rem 1.2rem !important;
    font-size: 0.9rem;
  }
}

@media (max-width: 575.98px) {
  .main-title {
    font-size: 1.8rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .welcome-text {
    font-size: 1rem;
  }

  .hero-image {
    height: 35vh;
  }

  .content-section {
    padding: 2rem;
  }
}

/* css van de info */

/* Vision Section Styles */
.vision-section {
  background: #fff;
  padding: 4rem 0;
}

.vision-image {
  text-align: center;
  margin-bottom: 1rem;
}

.vision-photo {
  width: 350px;
  height: 330px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #ff9a50;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.vision-content {
  padding-right: 2rem;
}

.verhuur-form-section .row {
  flex-direction: column; /* Ensures stacking order follows source on small screens */
}

@media (min-width: 768px) {
  .verhuur-form-section .row {
    flex-direction: row; /* Restores row layout for md and up */
    flex-wrap: wrap; /* Allows wrapping if needed */
  }
}

@media (max-width: 992px) {
  .cta-buttons {
    display: block;
  
}
}




.vision-title {
  font-family: "League Spartan", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: #ff9a50;
  margin-bottom: 1rem;
}

.vision-quote {
  font-family: "Lilita One", cursive;
  font-weight: 500;
  font-size: 1.75rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;

  line-height: 1.3;
}
.vision-quote-groot {
  font-family: "Lilita One", cursive;
  font-weight: 500;
  font-size: 3rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;

  line-height: 1.3;
}

.vision-text {
  font-family: "League Spartan", sans-serif;
  font-size: 1rem;
  color: #7f8c8d;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.vision-values {
  font-family: "League Spartan", sans-serif;
  font-size: 1rem;
  color: #ff9a50;
  font-weight: 500;
}

/* Responsive Design for Vision Section */
@media (max-width: 991.98px) {
  .vision-photo {
    width: 300px;
    height: 300px;
  }

  .vision-content {
    padding-left: 0;
    text-align: center;
    margin-top: 2rem;
  }.vision-content {
    padding: 2rem;
}

  .row {
    align-items: center;
  }
}

@media (max-width: 767.98px) {
  .vision-photo {
    width: 250px;
    height: 250px;
  }

  .vision-quote {
    font-size: 1.25rem;
  }
}

@media (max-width: 575.98px) {
  .vision-photo {
    width: 250px;
    height: 250px;
  }

  .vision-quote {
    font-size: 1rem;
  }

  .vision-text {
    font-size: 0.9rem;
  }
  .directie-main-title::after {
    background-color: #edf2f7 !important;
 
   
}
.directie-main-section {
  padding: 4rem 2rem;

}
}
.social-buttons {
  display: flex;
  gap: 10px;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  background-color: #ff9a50;
  color: white;
  text-decoration: none;
  font-size: 1rem;

  gap: 1rem;
}
.social-btn:hover {
  background-color: white;
  color: #ff9a50;
  border: #ff9a50 1px solid;
}
.social-btn i {
  margin-right: 8px;
}
.social-btn-2 {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border: #ff9a50 1px solid;
  border-radius: 20px;

  color: #ff9a50;
  text-decoration: none;
  font-size: 1rem;

  gap: 1rem;
}
.social-btn-2:hover {
  background-color: #ff9a50;
  color: white;
}

/* homepage */
/* Schooluren Section Styles */
.schooluren-section {
  background: #fff;
  position: relative;
  padding: 6rem 0 !important;
}

/* Horizontale oranje lijn onderaan */
.schooluren-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ff9a50;
  z-index: 0;
}

/* Schooluren Image Styles */
.schooluren-image {
  position: relative;
  z-index: 1; /* Zorgt dat de foto boven de lijn blijft */
}
.schooluren-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  gap: 0.1rem; /* Verkleint de ruimte tussen tijd en beschrijving nog meer */
}
.schooluren-photo {
  width: 350px;
  height: 330px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #ff9a50;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Schooluren Content Styles */
.schooluren-content {
  position: relative;
  z-index: 1; /* Zorgt dat tekst boven de lijn blijft */
  padding-right: 4rem;
}

.schooluren-title {
  font-family: "League Spartan", sans-serif;
  font-weight: lighter;
  font-size: 1.5rem;
  color: #ff9a50;
  margin-bottom: 1.5rem;
}

.time {
  font-family: "Lilita One", cursive;
  font-weight: 600;
  font-size: 1.25rem;
  color: #2c3e50;
}

.description {
  font-family: "League Spartan", sans-serif;
  font-size: 1rem;
  color: #7f8c8d;
}

/* Responsive Design */
@media (max-width: 767.98px) {
  .schooluren-photo {
    width: 250px;
    height: 250px;
  }

  .time {
    font-size: 1rem;
  }

  .description {
    font-size: 0.9rem;
  }
}

@media (max-width: 575.98px) {
 

  .time {
    font-size: 0.9rem;
  }

  .description {
    font-size: 0.85rem;
  }
}

/* Nieuwsberichten Section Styles */
.news-section {
  background-color: #ff9a50;
  padding: 2rem 0;
}

.news-card {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.news-card .card-img-top {
  height: 300px;
  object-fit: cover;
}

.news-card .card-title {
  font-size: 1.1rem;
  font-family: "Lilita One", cursive;
  font-weight: 400;
  color: #7db5c4 !important;
}

.news-card .card-text {
  font-size: 0.9rem;
  color: #7f8c8d;
}

.news-card .text-orange {
  color: #ff9a50;
  text-decoration: none;
}

.news-card .text-orange:hover {
  text-decoration: underline;
}

.expanded-news {
  position: relative;
}

.expanded-news .card-img-top {
  height: 300px;
}

.expanded-news .card-title {
  font-size: 1.5rem;
}

.expanded-news .card-text {
  font-size: 1rem;
}

.expanded-news .close-btn {
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.see-more-btn {
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.see-more-btn:hover {
  background-color: #ff9a50;
  color: white !important;
  transform: translateY(-2px);
}
.nws {
  font-family: "League Spartan", sans-serif;
  font-weight: 200;
}

.odh {
  font-family: "Lilita One", cursive;
  font-weight: 400;
}

.news-container {
  padding: 2rem;
}
/* Responsive Design for News Section */
@media (max-width: 767.98px) {
  .news-card .card-img-top {
    height: 150px;
  }

  .expanded-news .card-img-top {
    height: 200px;
  }
}

@media (max-width: 575.98px) {
  .news-card .card-img-top {
    height: 120px;
  }

  .expanded-news .card-img-top {
    height: 150px;
  }

  .expanded-news .card-title {
    font-size: 1.2rem;
  }

  .expanded-news .card-text {
    font-size: 0.9rem;
  }
}

/* Verhuur Section Styles */
.verhuur-section {
  background: #f5f0eb;
  position: relative;
  padding: 6rem 0 !important;
}

.verhuur-section::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

.verhuur-section::after {
  bottom: 0;
  right: 0;
  width: 50%;
  height: 2px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

.photo-circle {
  position: relative;
  display: inline-block;
}

.verhuur-photo {
  width: 250px;
  height: 230px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #ff9a50;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.text-orange {
  color: #ff9a50;
  font-weight: 200;
}

.odhl {
  font-family: "Lilita One", cursive;
  font-weight: 400;
  color: #2c3e50;
  font-size: 3rem;
  line-height: 1.1;
}

.nws {
  font-family: "League Spartan", sans-serif;
  font-weight: lighter;
  font-size: 1.5rem;
  color: #ff9a50;
}

.btn-outline-primary {
  border: 2px solid #7f8c8d !important;
  color: #7f8c8d !important;

  padding: 0.5rem 1.5rem !important;
  border-radius: 25px !important;
  font-weight: 600;
  transition: all 0.3s ease;
  background: transparent !important;
  text-decoration: none;
}

.btn-outline-primary:hover {
  background: #ff9a50 !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 154, 80, 0.3);
}

/* Responsive Design for Verhuur Section */
@media (max-width: 767.98px) {
  .verhuur-photo {
    width: 150px;
    height: 150px;
  }

  .odh {
    font-size: 1.5rem;
  }

  .nws {
    font-size: 0.9rem;
  }

  .verhuur-section .row {
    flex-direction: column;
    text-align: center;
  }

  .verhuur-section .col-md-8 {
    margin-bottom: 2rem;
  }
}

@media (max-width: 575.98px) {
  .verhuur-photo {
    width: 250px;
    height: 250px;
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .odh {
    font-size: 1.2rem;
  }
}
.div-verhuur {
  padding: 2rem;
}
.text-muted {
  font-family: "League Spartan", sans-serif;
  font-size: 1rem;
  color: #7f8c8d;
}

/* Smartschool Section Styles */
.smartschool-section {
  background-color: #3a4d5e; /* Donkerblauwe achtergrond zoals op de afbeelding */
  padding: 3rem;
  color: #ffffff;
  padding-left: 3rem;
}

.smartschool-section .nws {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.smartschool-section .text-white {
  font-size: 1rem;
  line-height: 1.6;
}

.btn-smartschool {
  background-color: #ff9a50 !important;
  color: white !important;
  padding: 0.5rem 1.5rem !important;
  border: none !important;
  border-radius: 25px !important;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-smartschool:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 154, 80, 0.4);
  color: white !important;
}

.smartschool-section .bi-arrow-right {
  margin-left: 0.5rem;
}
.ondertitel-smartschool {
  font-size: 1rem;
  color: #ff9a50 !important ;
}
/* Responsive Design for Smartschool Section */
@media (max-width: 767.98px) {
  .smartschool-section .nws {
    font-size: 1rem;
  }

  .smartschool-section .text-white {
    font-size: 0.9rem;
  }

  .btn-smartschool {
    padding: 0.4rem 1.2rem !important;
    font-size: 0.9rem;
  }
}

@media (max-width: 575.98px) {
  .smartschool-section .nws {
    font-size: 0.9rem;
  }

  .smartschool-section .text-white {
    font-size: 0.85rem;
  }

  .btn-smartschool {
    padding: 0.3rem 1rem !important;
    font-size: 0.85rem;
  }
}
/* Responsive Design for Smartschool Section */
@media (max-width: 767.98px) {
  .smartschool-section .nws {
    font-size: 1rem;
  }

  .smartschool-section .text-white {
    font-size: 0.9rem;
  }

  .btn-smartschool {
    padding: 0.4rem 1.2rem !important;
    font-size: 0.9rem;
  }
}

@media (max-width: 575.98px) {
  .smartschool-section .nws {
    font-size: 0.9rem;
  }

  .smartschool-section .text-white {
    font-size: 0.85rem;
  }

  .btn-smartschool {
    padding: 0.3rem 1rem !important;
    font-size: 0.85rem;
  }
}

/* Veelgestelde Vragen Section Styles */
.faq-section {
  background-color: #ffffff;
  padding: 3rem;
}

.faq-title {
  font-family: "Lilita One", cursive;
  font-weight: 400;
  color: #2c3e50;
  font-size: 2rem;
  line-height: 1.1;
}

.faq-line {
  border: 0;
  height: 1px;
  background: #ff9a50;
  opacity: 0.5;
  margin: 0 auto;
  width: 50px;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
}

.faq-question {
  font-family: "Lilita One", cursive;
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question.text-orange {
  color: #ff9a50;
}

.faq-question.text-cyan {
  color: #7db5c4;
}

.faq-toggle {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.faq-question.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 0.5rem;
}

.faq-extra {
  font-size: 1rem;
  color: #7f8c8d;
  line-height: 1.6;
  margin-top: 0.5rem;
  display: none;
}

.faq-item.active .faq-extra {
  display: block;
}

.faq-buttons {
  margin-top: 1rem;
}

.btn-faq {
  background-color: #ff9a50 !important;
  color: white !important;
  padding: 0.4rem 1.2rem !important;
  border: none !important;
  border-radius: 25px !important;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-right: 1rem;
  box-shadow: 0 4px 15px rgba(255, 154, 80, 0.3);
}

.btn-faq:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 154, 80, 0.4);
  color: white !important;
}

/* Photo Gallery Styles binnen FAQ */
.photo-gallery {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
}

.small-photo {
  width: 100px; /* Klein formaat */
  height: 75px; /* Proportioneel aan breedte */
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid #ddd;
}

/* Responsive Design for FAQ Section */
@media (max-width: 767.98px) {
  .faq-title {
    font-size: 1.5rem;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-answer,
  .faq-extra {
    font-size: 0.9rem;
  }

  .btn-faq {
    padding: 0.3rem 1rem !important;
    font-size: 0.9rem;
  }

  .small-photo {
    width: 80px;
    height: 60px;
  }
}

@media (max-width: 575.98px) {
  .faq-title {
    font-size: 1.2rem;
  }

  .faq-question {
    font-size: 0.9rem;
  }

  .faq-answer,
  .faq-extra {
    font-size: 0.85rem;
  }

  .btn-faq {
    padding: 0.2rem 0.8rem !important;
    font-size: 0.85rem;
  }

  .small-photo {
    width: 60px;
    height: 45px;
  }
}

/* opvang */
/* Voor- en naschoolse opvang Section Styles */
.opvang-section {
  background: #7db5c4;
  color: white;
  padding: 4rem 3rem !important;
}

.opvang-title {
  font-family: "Lilita One", cursive;
  font-size: 2.5rem;
  color: white;
}

.opvang-info p {
  font-family: "League Spartan", sans-serif;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.opvang-info-time {
  font-family: "Lilita One", cursive !important;
  font-size: 1.4rem !important;
  margin-bottom: 0.5rem !important;
  color: #2c3e50;
}

.opvang-time {
  color: #ff9a50;
  font-family: "Lilita One", cursive;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0.5rem 0;
}

.titel-opvang-big {
  color: #2c3e50;
  font-family: "Lilita One", cursive !important;
  font-size: 1.3rem !important;
}

.opvang-contact {
  text-align: center;
}

.opvang-phone {
  background: #ff9a50;
  border-radius: 13px;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 500;
  position: absolute;
  top: -20px;
  right: 20px;
  z-index: 10;
}
.phone-container {
  position: relative;
}

.opvang-photo {
  margin-top: 1rem;
}

.photo-circle-nabewaking {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: 3px solid #ff9a50;
}

.photo-placeholder {
  font-family: "Lilita One", cursive;
  font-size: 1.5rem;
  color: #2c3e50;
}

.btn-orange {
  background-color: #ff9a50;
  border-color: #ff9a50;
  color: white;
  font-family: "League Spartan", sans-serif;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-orange:hover {
  background-color: #e8844a;
  border-color: #e8844a;
  color: white;
  transform: translateY(-2px);
}

.extra-info {
  display: none;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  animation: fadeIn 0.5s ease-in-out;
}

.extra-info.show {
  display: block;
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.verwittigingen-box, .vergoeding-box, .praktische-info-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.section-title {
  font-family: "Lilita One", cursive;
  font-size: 1.5rem;
  color: #ff9a50;
  margin-bottom: 1rem;
}

.highlight-text {
  color: #ff9a50;
  font-weight: 600;
}

.important-note {
  background: rgba(255, 154, 80, 0.2);
  border-left: 4px solid #ff9a50;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 0 10px 10px 0;
}

@media (max-width: 768px) {
  .opvang-title {
      font-size: 2rem;
      text-align: center;
  }
 
  
  .opvang-info-time {
      font-size: 1.2rem !important;
  }
  
  .photo-circle {
      width: 120px;
      height: 200px;
  }
  
  .extra-info {
      margin-top: 1.5rem;
  }
  
  .verwittigingen-box, .vergoeding-box, .praktische-info-box {
      padding: 1rem;
  }
  .opvang-section {
  
    padding: 2rem !important;
}
}

.opvang-phone {
  background: #ff9a50;
  border-radius: 13px;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 500;
}

.opvang-photo {
  margin-top: 1rem;
}

.photo-circle {
  width: 200px;
  height: 200px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: 5px solid #ff9a50;
}

.photo-placeholder {
  color: #7db5c4;
  font-family: "League Spartan", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.btn-orange {
  background: #ff9a50 !important;
  color: white !important;
  padding: 0.75rem 1.5rem !important;
  border: none !important;
  border-radius: 25px !important;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 154, 80, 0.3);
  text-decoration: none;
}

.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 154, 80, 0.4);
  color: white !important;
}

/* Responsive Design for Opvang Section */
@media (max-width: 991.98px) {
  .opvang-section .row {
    flex-direction: column;
    text-align: center;
  }
  .opvang-photo {
    margin-top: 2rem;
  }
  .photo-circle {
    width: 150px;
    height: 150px;
  }
  .opvang-title {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .photo-circle {
    width: 120px;
    height: 120px;
  }
  .opvang-title {
    font-size: 1.5rem;
  }
  .opvang-time {
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .photo-circle {
    width: 100px;
    height: 200px;
  }
  .opvang-title {
    font-size: 1.2rem;
  }
  .opvang-time {
    font-size: 0.9rem;
  }
  .opvang-info p {
    font-size: 0.9rem;
  }

  .smartschool-section {

    padding-left: 2rem;
}
.faq-section {
  background-color: #ffffff;
  padding: 2rem;
}

}

.werkgroepen-section {
  padding: 4rem 3rem;
  min-height: 100vh;
  position: relative;
  background-color: white;
}
.werkgroepen-section2 {
  padding: 4rem 3rem;
 
  position: relative;
  background-color: white;
}

.werkgroepen-header {
  margin-bottom: 3rem;
}

.werkgroepen-subtitle {
  font-family: "League Spartan", sans-serif;
  font-size: 1.2rem;
  color: #ff9a50;
  font-weight: 400;
  margin-bottom: 1rem;
}

.werkgroepen-title {
  font-family: "Lilita One", cursive !important;
  font-size: 2.5rem;
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.werkgroepen-intro {
  font-family: "League Spartan", sans-serif;
  font-size: 1rem;
  color: #7f8c8d;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 3rem;
}
.werkgroepen-intro2 {
 
  margin-bottom: 2rem;
}

/* Photo Circle Styles */
.foto-circle {
  width: 200px;
  height: 200px;
  border: 3px solid #ff9a50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  margin: 0 auto 2rem auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden; /* Added to ensure image respects border-radius */
}

.werkgroep-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image fills the circle without distortion */
}

/* Section Styles */
.werkgroep-section {
  margin-bottom: 4rem;
}

.section-title {
  font-family: "Lilita One", cursive !important;
  font-size: 2rem;
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-family: "League Spartan", sans-serif;
  font-size: 1rem;
  color: #ff9a50;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.section-subtitle-blue {
  font-family: "League Spartan", sans-serif;
  font-size: 1rem;
  color: #7db5c4;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.section-text {
  font-family: "League Spartan", sans-serif;
  font-size: 0.95rem;
  color: #7f8c8d;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.contact-text {
  font-family: "League Spartan", sans-serif;
  font-size: 0.95rem;
  color: #7f8c8d;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Content wrapper to keep content above decorative elements */
.content-wrapper {
  position: relative;
  z-index: 1;
}

/* Text alignment for right column */
.text-right {
  text-align: right;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .werkgroepen-section {
    padding: 3rem 2rem;
  }

  .werkgroepen-title {
    font-size: 2.5rem;
  }

  .foto-circle {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 767.98px) {
  .werkgroepen-section {
    padding: 2rem 1rem;
  }

  .werkgroepen-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .foto-circle {
    width: 120px;
    height: 120px;
  }

  .text-right {
    text-align: center; /* Center text on smaller screens for better readability */
  }
}

@media (max-width: 575.98px) {
  .werkgroepen-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

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

  .section-text,
  .contact-text,
  .werkgroepen-intro {
    font-size: 0.9rem;
  }
}

/* zorg */

/* Zorg Section Styles */
.zorg-section {
  background: #ff9a50;
  color: white;
  padding: 4rem 3rem;
  position: relative;
 
}
.leerkrachten-section {
  color: white;
  padding: 4rem 3rem;
  position: relative;
  min-height: 100vh;
}

.zorg-title {
  font-family: "Lilita One", cursive;
  font-size: 2.2rem;
  font-weight: 400;
  color: white;
  margin-bottom: 2rem;
}


.zorg-intro {
  font-family: "League Spartan", sans-serif;
  font-size: 1.1rem;
  color: white;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 800px;
}
.zorg-intro-2 {
  font-family: "League Spartan", sans-serif;
  font-size: 1.1rem;
  color: #2c3e50;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 800px;
}

.zorg-content {
  margin-bottom: 3rem;
}

.section-title {
  font-family: "Lilita One", cursive;
  font-size: 2.2rem;
  color: #2c3e50;
  font-weight: 400;
  margin-bottom: 1rem;
}

.section-text-zorg {
  font-family: "League Spartan", sans-serif;
  font-size: 1rem;
  color: white;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.section-text {
  font-family: "League Spartan", sans-serif;
  font-size: 1rem;
  color: #2c3e50;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.contact-links {
  margin-top: 1.5rem;
}

.contact-links a {
  color: #2c3e50;
  text-decoration: underline;
  font-family: "League Spartan", sans-serif;
  font-size: 1rem;
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-links a:hover {
  color: #1a252f;
}

/* Photo Circle */
.foto-circle {
  width: 280px;
  height: 280px;
  border: 4px solid #2c3e50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  margin: 0 auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.zorg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .zorg-section {
    padding: 3rem 2rem;
  }

  .zorg-section .row {
    flex-direction: column;
    text-align: center;
  }

  .foto-circle {
    width: 220px;
    height: 220px;
    margin-top: 2rem;
  }

  .zorg-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 767.98px) {
  .zorg-section {
    padding: 2rem 1rem;
  }

  .foto-circle {
    width: 180px;
    height: 180px;
  }

  .zorg-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .zorg-intro,
  .section-text {
    font-size: 0.95rem;
  }

  .foto-placeholder {
    font-size: 2rem;
  }
}

@media (max-width: 575.98px) {
  .foto-circle {
    width: 150px;
    height: 150px;
  }

  .zorg-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .zorg-intro,
  .section-text {
    font-size: 0.9rem;
  }

  .foto-placeholder {
    font-size: 1.8rem;
  }
}

.container-dir-sec {
  padding: 5rem 3rem;
  background-color: #fff;
}

.header-title {
  color: #2c3e50;
  font-size: 2.2rem;
  margin-bottom: 5rem;
  font-family: "Lilita One", cursive;
  text-align: left;
  font-weight: normal;
}

.staff-grid {
  display: flex;
  justify-content: space-around;
  gap: 4rem;
  align-items: flex-start;
}

.staff-member {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.staff-photo {
  flex-shrink: 0;
}

.staff-photo img {
  width: 200px;
  height: 200px;
  border-radius: 15px;
  object-fit: cover;
  border: 4px solid #ff9a50;
}

.staff-info {
  flex: 1;
}

.staff-name {
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 0.5rem;

  font-family: "Lilita One", cursive;
}

.staff-role {
  color: #7f8c8d;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.contact-label {
  color: #7db5c4;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.staff-contact {
  color: #2c3e50;
  font-size: 1rem;
  word-break: break-all;
}

@media (max-width: 768px) {
  .staff-grid {
    flex-direction: column;
    gap: 2rem;
  }

  .staff-member {
    flex-direction: column !important;
    text-align: center;
    gap: 1rem;
  }

  .staff-photo img {
    width: 150px;
    height: 150px;
  }

  .header-title {
    font-size: 2rem;
    text-align: center;
  }

  .staff-name {
    font-size: 1.5rem;
  }
}
/* Bootstrap responsive aanpassingen */
@media (min-width: 768px) {
  .staff-member.reverse .staff-info {
    text-align: right;
  }
}

@media (max-width: 767px) {
  .container-dir-sec {
    padding: 3rem 1rem;
  }

  .staff-info {
    text-align: center !important;
  }
}

/* zorg */
.zorg-section {
  background: linear-gradient(135deg, #ff9a50 0%, #e8944a 100%);

  padding: 6rem 3rem;
  display: flex;
  align-items: center;
}

.section-title-zorg {
  font-family: "Lilita One", cursive;
  font-size: 2.2rem;
  color: white;
  font-weight: 400;
  margin-bottom: 60px;
}

.team-member {
  text-align: center;
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

.team-member:hover {
  transform: translateY(-10px);
}

.photo-frame {
  background: white;
  border-radius: 20px;
  padding: 12px;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.team-member:hover .photo-frame {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  transform: scale(1.02);
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.member-name {
  font-family: "Lilita One", cursive;
  font-size: 2rem;
  color: white;
  font-weight: 400;
  margin-bottom: 8px;
}
.member-name-leerkrachten{
  font-family: "Lilita One", cursive;
  font-size: 2rem;
  color: #ff9a50;
  font-weight: 400;
  margin-bottom: 8px;
}
.member-role {
  font-family: "League Spartan", sans-serif;
  font-size: 1rem;
  color: #2c3e50;
  font-weight: 400;
}

/* Bootstrap responsive aanpassingen */
@media (max-width: 991.98px) {
  .section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
  }

  .member-name {
    font-size: 1.8rem;
  }
}

@media (max-width: 767.98px) {
  .zorg-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }

  .member-name {
    font-size: 1.6rem;
  }

  .member-role {
    font-size: 1.1rem;
  }
}

@media (max-width: 575.98px) {
  .section-title {
    font-size: 2rem;
  }

  .member-name {
    font-size: 1.4rem;
  }

  .member-role {
    font-size: 1rem;
  }
}

/* Animaties */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.team-member {
  animation: fadeInUp 0.6s ease-out;
}

/* verhuur contact */
.verhuur-form-section {
  background: linear-gradient(135deg, #ff9a50 0%, #e8944a 100%);
  min-height: 100vh;
  padding: 6rem 3rem;
  display: flex;
  align-items: center;
}
.verhuur-form-section-contact {
  min-height: 100vh;
  padding: 6rem 3rem;
  display: flex;
  align-items: center;
}

.form-title {
  font-family: "Lilita One", cursive;
  font-size: 2.2rem;
  color: white;
  font-weight: 400;
  margin-bottom: 40px;
}
.form-title-contact {
  font-family: "Lilita One", cursive;
  font-size: 2.2rem;
  color: #3a4d5e;
  font-weight: 400;
  margin-bottom: 40px;
}

.form-label {
  font-family: "League Spartan", sans-serif;
  font-size: 1.1rem;
  color: white;
  font-weight: 400;
  margin-bottom: 8px;
  display: block;
}
.form-label-contact {
  font-family: "League Spartan", sans-serif;
  font-size: 1.1rem;
  color: #3a4d5e;
  font-weight: 400;
  margin-bottom: 8px;
  display: block;
}

.required {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.required-c {
  color: #3a4d5e;
  font-size: 1rem;
}
.form-control {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  padding: 15px 20px;
  font-family: "League Spartan", sans-serif;
  font-size: 1rem;
  color: white;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
  color: white;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-family: "League Spartan", sans-serif;
}

.form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.date-helper {
  font-family: "League Spartan", sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 5px;
  font-weight: 300;
}

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

.submit-btn {
  background: white !important;
  color: #ff9a50 !important;
  border: none !important;
  padding: 15px 40px !important;
  border-radius: 25px !important;
  font-family: "League Spartan", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}

.submit-btn:hover {
  background: rgba(255, 255, 255, 0.9) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .verhuur-form-section {
    padding: 40px 30px;
  }

  .form-title {
    font-size: 3rem;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .verhuur-form-section {
    padding: 30px 20px;
  }

  .form-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }

  .form-control {
    padding: 12px 16px;
    font-size: 0.95rem;
  }

  .form-label {
    font-size: 1rem;
  }
  .privacy-section {
    
    padding: 3rem 2rem !important;
    
  }
  .foto-section-verhuur {
    padding: 3rem 2rem !important;
}
.foto-section-foto {
  padding: 3rem 2rem !important;
 
}
}

@media (max-width: 575.98px) {
  .form-title {
    font-size: 2rem;
  }

  .submit-btn {
    width: 100%;
    padding: 12px 30px !important;
    font-size: 1rem;
  }
}

/* carousel fotos verhuur */
.foto-section-verhuur {
  padding: 3rem 3rem;
}
.foto-section-foto {
  padding: 3rem 3rem;
  background-color: #ff9a50;
}
.titel-carousel {
  font-family: "Lilita One", cursive;
  font-size: 2.2rem;
  color: #ff9a50 !important;
}
.titel-carousel-wit {
  font-family: "Lilita One", cursive;
  font-size: 2.2rem;
  color: #f5f0eb !important;
}
.carousel-inner img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 13px;
  border: #ff9a50 2px solid;
}
.carousel-caption {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 5px;
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  border: #ff9a50 2px solid;
  border-radius: 13px;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 13px;
}

/* privacy - foto  */
.privacy-section {
  background-color: #7db5c4;
  color: #2c3e50;
  padding: 3rem 3rem;
  font-family: Arial, sans-serif;
}
.privacy-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #f5f0eb;
  margin-bottom: 20px;
  font-family: "Lilita One", cursive;
}
.consent-title {
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #2c3e50; /* Oranje titel */
  font-family: "Lilita One", cursive;
}
.consent-text {
  font-size: 1rem;
  font-family: "League Spartan", sans-serif;
  margin-bottom: 10px;
  color: #f5f0eb;
}

/* secretatiaat  */
/* Typography Classes */
.secretariaat-main-title {
  font-family: "Lilita One", cursive;
  font-size: 2.2rem;
  color: #f5f0eb;
  margin-bottom: 1.5rem;
}

.secretariaat-subtitle {
  font-family: "League Spartan", sans-serif;
  font-size: 1.2rem;
  color: #f5f0eb;
  font-weight: 300;
  margin-bottom: 1rem;
}

.secretariaat-availability-text {
  font-family: "League Spartan", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.secretariaat-schedule-day {
  font-family: "League Spartan", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
}

.secretariaat-schedule-time {
  font-family: "League Spartan", sans-serif;
  font-size: 1.1rem;
  color: #f5f0eb;
  font-weight: 400;
}

.secretariaat-contact-title {
  font-family: "Lilita One", cursive;
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.secretariaat-contact-value {
  font-family: "League Spartan", sans-serif;
  font-size: 1rem;
  color: #f5f0eb;
  font-weight: 500;
  margin-bottom: 2rem;
}

.secretariaat-contact-value:last-child {
  margin-bottom: 0;
}

.secretariaat-summer-title {
  font-family: "League Spartan", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.secretariaat-summer-info {
  font-family: "League Spartan", sans-serif;
  font-size: 1rem;
  color: #f5f0eb;
  font-weight: 400;
}

/* Layout Sections */
.secretariaat-main-section {
  background-color: #7db5c4;
  padding: 4rem 3rem;
  position: relative;
}

.secretariaat-header-wrapper {
  text-align: center;

  margin-bottom: 3rem;
}

.secretariaat-content-wrapper {
  position: relative;
  z-index: 2;
}

.secretariaat-schedule-wrapper {
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.secretariaat-contact-card {
  background-color: #ff9a50;
  border-radius: 13px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  height: fit-content;
}

.secretariaat-schedule-row {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(245, 240, 235, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.secretariaat-schedule-row:last-child {
  border-bottom: none;
}

.secretariaat-summer-section {
  margin-top: 3rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Card Components */
.secretariaat-phone-section {
  margin-bottom: 2rem;
}

.secretariaat-email-section {
  margin-bottom: 0;
}

/* Responsive Design - Tablet */
@media (max-width: 992px) {
  .secretariaat-contact-card {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .secretariaat-main-title {
    font-size: 1.8rem;
  }

  .secretariaat-contact-title {
    font-size: 1.5rem;
  }

  .secretariaat-schedule-day {
    font-size: 1.1rem;
  }

  .secretariaat-schedule-time {
    font-size: 1rem;
  }

  .secretariaat-main-section {
    padding: 2rem 0;
  }

  .secretariaat-contact-card {
    padding: 1.5rem;
  }

  .secretariaat-summer-title {
    margin-top: 2rem;
  }
}

/* Responsive Design - Mobile */
@media (max-width: 576px) {
  .secretariaat-main-title {
    font-size: 1.6rem;
  }

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

  .secretariaat-contact-title {
    font-size: 1.3rem;
    text-align: center;
  }

  .secretariaat-contact-value {
    text-align: center;
  }

  .secretariaat-summer-title {
    text-align: center;
    font-size: 1.2rem;
  }

  .secretariaat-summer-info {
    text-align: center;
  }

  .secretariaat-header-wrapper {
    margin-bottom: 2rem;
  }

  .secretariaat-schedule-row {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .secretariaat-contact-card {
    padding: 1.5rem 1rem;
  }
}

/* directie contact */
.directie-main-title {
  font-family: "Lilita One", cursive;
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 2rem;

  position: relative;
}

.directie-main-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 120px;
  height: 2px;
  background-color: #ff9a50;
}

.directie-name {
  font-family: "Lilita One", cursive;
  font-size: 2.5rem;
  font-weight: 400;
  color: #7db5c4;
  margin-bottom: 0.5rem;
  margin-top: 3rem;
}

.directie-position {
  font-family: "League Spartan", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #666;
  margin-bottom: 3rem;
}

.directie-contact-label {
  font-family: "Lilita One", cursive;
  font-size: 1.3rem;
  font-weight: 600;
  color: #ff9a50;
  margin-bottom: 0.5rem;
}

.directie-contact-value {
  font-family: "League Spartan", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #2c3e50;
  margin-bottom: 2rem;
}

.directie-foto {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Zorgt ervoor dat de afbeelding de cirkel vult zonder vervorming */
  object-position: center; /* Centreert de afbeelding */
  border-radius: 50%; /* Zorgt dat de afbeelding ook cirkelvormig is */
}
/* Layout Sections */
.directie-main-section {
  padding: 4rem 3rem;
  position: relative;
}

.directie-content-wrapper {
  background-color: #f5f0eb;
  position: relative;
  z-index: 2;
}

.directie-info-section {
  padding-right: 2rem;
}

.directie-contact-section {
  display: flex;
  gap: 4rem;
  margin-top: 2rem;
}

.directie-contact-item {
  flex: 1;
}

.directie-foto-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.directie-foto-circle {
  width: 300px;
  height: 300px;
  border: 3px solid #ff9a50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

/* Responsive Design - Tablet */
@media (max-width: 992px) {
  .directie-content-wrapper {
    padding: 3rem;
  }

  .directie-foto-circle {
    width: 250px;
    height: 250px;
  }

  .directie-contact-section {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .directie-main-title {
    font-size: 1.8rem;
  }

  .directie-name {
    font-size: 2rem;
  }

  .directie-content-wrapper {
    padding: 2rem;
  }

  .directie-contact-section {
    flex-direction: column;
    gap: 1.5rem;
  }

  .directie-foto-circle {
    width: 200px;
    height: 200px;
  }

  .directie-foto-placeholder {
    font-size: 1.5rem;
  }

  .directie-info-section {
    padding-right: 0;
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .directie-main-title {
    font-size: 1.6rem;
    text-align: center;
  }

  .directie-name {
    font-size: 1.8rem;
    text-align: center;
  }

  .directie-position {
    text-align: center;
  }

  .directie-content-wrapper {
    padding: 1.5rem;
  }

  .directie-contact-section {
    text-align: center;
  }

  .directie-foto-circle {
    width: 180px;
    height: 180px;
    margin: 0 auto;
  }
}



/* persoon beheer admin */
.personenadmin-container {
  background: white;
  padding: 3rem 5rem;

}

.personenadmin-title {
  font-size: 1.8rem;
  color: #4a5568;
  font-weight: 300;
  font-family: "Lilita One", cursive;
}

.personenadmin-header {
  border-bottom: 2px solid #ed8936;
  padding: 20px 0;
}

.personenadmin-header-item {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 400;
  color: #ed8936;
  font-family: "League Spartan", sans-serif;
}

.personenadmin-user-row {
  border-bottom: 1px solid #e2e8f0;
  padding: 20px 0;
}

.personenadmin-email {
  font-size: 1,6rem;
  color: #2d3748;
  word-break: break-word;
  font-family: "League Spartan", sans-serif;
  font-weight: 400;
}

.personenadmin-wachtwoord-veld {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.personenadmin-wachtwoord-dots {
  font-size: 1,6rem;
  color: #a0aec0;
  letter-spacing: 3px;
  font-weight: bold;
  flex-shrink: 0;
}

.personenadmin-actie-knop {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background-color 0.2s;
  flex-shrink: 0;
}

.personenadmin-actie-knop:hover {
  background-color: #edf2f7;
}

.personenadmin-oog-icon, .personenadmin-bewerk-icon {
  width: 20px;
  height: 20px;
  fill: #718096;
}

/* Admin Toggle Switch */
.personenadmin-toggle {
  position: relative;
  width: 50px;
  height: 30px;
  flex-shrink: 0;
}

.personenadmin-toggle-input {
  opacity: 0;
  width: 0;
  height: 0;
}

.personenadmin-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e0;
  transition: .3s;
  border-radius: 30px;
}

.personenadmin-toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.personenadmin-toggle-input:checked + .personenadmin-toggle-slider {
  background-color: #7db5c4;
}

.personenadmin-toggle-input:checked + .personenadmin-toggle-slider:before {
  transform: translateX(20px);
}

/* Add User Button */
.personenadmin-toevoeg-knop {
  width: 40px;
  height: 40px;
  background-color: #7db5c4;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.personenadmin-toevoeg-knop:hover {
  background-color: #3182ce;
  transform: scale(1.05);
}

.personenadmin-toevoeg-knop:active {
  transform: scale(0.95);
}

/* New User Input */
.personenadmin-nieuwe-email-input {
  border: 2px solid #e2e8f0;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.2s;
}

.personenadmin-nieuwe-email-input:focus {
  outline: none;
  border-color: #4299e1;
  box-shadow: 0 0 0 0.2rem rgba(66, 153, 225, 0.25);
}

/* Password visibility states */
.personenadmin-wachtwoord-zichtbaar {
  font-family: monospace;
  letter-spacing: 1px;
  color: #2d3748;
}

/* User management states */
.personenadmin-gebruiker-actief .personenadmin-toggle-slider {
  background-color: #4299e1;
}

.personenadmin-gebruiker-actief .personenadmin-toggle-slider:before {
  transform: translateX(30px);
}

.personenadmin-gebruiker-inactief .personenadmin-email {
  opacity: 0.6;
}

/* Bootstrap responsive utilities for better spacing */
.personenadmin-acties-container {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.personenadmin-toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Mobile optimizations */
@media (max-width: 576px) {
  .personenadmin-wachtwoord-veld {
      justify-content: center;
  }
  
  .personenadmin-acties-container {
      justify-content: center;
  }
  
  .personenadmin-toggle-container {
      justify-content: center;
      margin-top: 10px;
  }
}









/* footer */
.footer {
  
  padding: 3rem;

}

.footer-logo {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
}

.footer-tagline {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 30px;
}

.footer-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-bottom: 15px;

}
.footer-links {
  text-align: center;
}

.footer-social {
  text-align: center;
}

.footer-social-icons {
  justify-content: center;
  color: white;
}
.footer-logo {
  width: 150px; /* of een andere gewenste breedte */
  height: auto;
  margin-bottom: 20px;
}

.footer-btn-primary {
  background-color: #FF8C42;
  color: white;
}

.footer-btn-primary:hover {
  background-color: #e67a38;
  color: white;
  transform: translateY(-2px);
}

.footer-btn-secondary {
  background-color: transparent;
  color: #7db5c4;
  border: 2px solid #7db5c4;
}

.footer-btn-secondary:hover {
  background-color: #7db5c4;
  color: white;
  transform: translateY(-2px);
}
.footer-links {
  text-align: center;
}

.footer-links-list {
  text-align: left;
  display: inline-block;
}

.footer-btn::after {
  content: "→";
  margin-left: 10px;
  font-size: 18px;
}

.footer-links-title {
  color: #2C5F7A;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  font-family: "Lilita One", cursive;
}

.footer-links-list {
  list-style: none;
  padding: 0;
}

.footer-links-item {
  margin-bottom: 15px;
}

.footer-links-item::before {
  content: "→";
  color: #FF8C42;
  font-weight: bold;
  margin-right: 10px;
  font-size: 18px;
}

.footer-links-link {
  color: #FF8C42;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-links-link:hover {
  color: #e67a38;
  text-decoration: underline;
}

.footer-social-title {
  color: #2C5F7A;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  font-family: "Lilita One", cursive;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #FF8C42;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-size: 24px;
  transition: all 0.3s ease;
  margin-right: 15px;
  margin-bottom: 15px;
  
}

.footer-social-link:hover {
  background-color: #e67a38;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

.footer-copyright {
  color: #666;
  font-size: 14px;
  border-top: 1px solid #ddd;
  padding-top: 30px;
  margin-top: 50px;
}

@media (max-width: 767.98px) {
  .footer-links-title,
  .footer-social-title {
      font-size: 24px;
      margin-top: 30px;
  }
  
  .footer {
      padding: 40px 0 30px;
  }
}

.bg-footer{
  background-color: #f5f0eb;
}
.personenadmin-wachtwoord-zichtbaar {
  font-family: monospace;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2px 4px;
  border-radius: 3px;
}


/* contactform */
.verhuur-form-section-contact .row {
  flex-direction: column; /* Ensures stacking order follows source on small screens */
}

@media (min-width: 768px) {
  .verhuur-form-section-contact .row {
    flex-direction: row; /* Restores row layout for md and up */
    flex-wrap: wrap; /* Allows wrapping if needed */
  }
}



 /* Capaciteit Section Styles */
 .capaciteit-aanmelding-section {
  background:#7db5c4;
  padding: 4rem 0;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.capaciteit-aanmelding-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 138, 61, 0.1);
  z-index: 1;
}

.capaciteit-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
}

/* Typography */
.capaciteit-subtitle {
  font-family: 'League Spartan', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #2C5F7A;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.capaciteit-main-title {
  font-family: 'Lilita One', sans-serif;
  font-size: 3rem;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 3rem;

  line-height: 1.2;
}

.capaciteit-section-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 500;
  font-size: 2rem;
  color: #2C5F7A;
  margin-bottom: 1rem;
}

.capaciteit-text {
  font-family: 'League Spartan', sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  color: #FFFFFF;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.aanmeldperiode-section-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 500;
  font-size: 2rem;
  color: #2C5F7A;
  margin-bottom: 1rem;
}

.aanmeldperiode-text {
  font-family: 'League Spartan', sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  color: #FFFFFF;
  line-height: 1.6;
}

/* Content Layout */
.capaciteit-info-block {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capaciteit-info-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .capaciteit-main-title {
      font-size: 2.5rem;
  }
  
  .capaciteit-section-title,
  .aanmeldperiode-section-title {
      font-size: 1.75rem;
  }
}

@media (max-width: 991.98px) {
  .capaciteit-aanmelding-section {
      padding: 3rem 0;
  }
  
  .capaciteit-main-title {
      font-size: 2.25rem;
      margin-bottom: 2rem;
  }
  
  .capaciteit-section-title,
  .aanmeldperiode-section-title {
      font-size: 1.5rem;
  }
  
  .capaciteit-text,
  .aanmeldperiode-text {
      font-size: 1rem;
  }
  
  .capaciteit-info-block {
      padding: 1.5rem;
      margin-bottom: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .capaciteit-aanmelding-section {
      padding: 2rem 0;
  }
  
  .capaciteit-main-title {
      font-size: 1.875rem;
      margin-bottom: 1.5rem;
  }
  
  .capaciteit-subtitle {
      font-size: 1.125rem;
      margin-bottom: 0.75rem;
  }
  
  .capaciteit-section-title,
  .aanmeldperiode-section-title {
      font-size: 1.375rem;
      margin-bottom: 0.75rem;
  }
  
  .capaciteit-text,
  .aanmeldperiode-text {
      font-size: 0.95rem;
      margin-bottom: 1.5rem;
  }
  
  .capaciteit-info-block {
      padding: 1.25rem;
      margin-bottom: 1.25rem;
      border-radius: 10px;
  }
}

@media (max-width: 575.98px) {
  .capaciteit-main-title {
      font-size: 1.625rem;
      line-height: 1.3;
  }
  
  .capaciteit-section-title,
  .aanmeldperiode-section-title {
      font-size: 1.25rem;
  }
  
  .capaciteit-text,
  .aanmeldperiode-text {
      font-size: 0.9rem;
  }
  
  .capaciteit-info-block {
      padding: 1rem;
      margin-bottom: 1rem;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.capaciteit-content > * {
  animation: fadeInUp 0.8s ease forwards;
}

.capaciteit-content > *:nth-child(1) { animation-delay: 0.1s; }
.capaciteit-content > *:nth-child(2) { animation-delay: 0.2s; }
.capaciteit-content > *:nth-child(3) { animation-delay: 0.3s; }
.capaciteit-content > *:nth-child(4) { animation-delay: 0.4s; }

