/* Local font fallback - kept for offline use */
@font-face {
  font-family: '1HOONEorinigyosilOTF';
  src: url('../assets/1HOONEorinigyosilOTF.otf') format('opentype');
  font-display: swap;
}
@font-face {
  font-family: 'FaktPro';
  src: url('../assets/FaktPro-normal.ttf') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'LFT Etica Mono';
  src: url('../assets/LFTEticaMono-Bold.otf') format('opentype');
  font-display: swap;
}

html, body {
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1 0 auto;
}

body {
  background: #E4F4FE;
  margin: 0;
  padding: 110px 0 0 0; /* prevent content behind fixed header */
  box-sizing: border-box;  overflow-x: hidden; /* Prevent horizontal scroll */
  -webkit-text-size-adjust: 100%; /* Prevent text scaling on iOS */
  cursor: url('../assets/custom-cursor.svg'), auto;
}

/* Safari cursor size fix */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  body {
    cursor: url('../assets/custom-cursor.svg'), auto;
  }
}

/* Prevent zoom on mobile form inputs */
input, select, textarea {
  font-size: 16px; /* Prevents zoom on iOS */
}

/* Global paragraph styling with max-width constraint */
p {
  max-width: 520px;
}

/* Line break styling to replace <br> tags */
.line-break {
  display: block;
  content: "";
}

.custom-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 115px;
  background: #80ABD1;
  display: flex;
  align-items: center;  box-sizing: border-box;
  font-family: "hooneorinigyosil", '1HOONEorinigyosilOTF', monospace, sans-serif;
  z-index: 1000;
  transform: translateY(0);
  transition: transform 0.3s ease-in-out;
}

.custom-header.hidden {
  transform: translateY(-100%);
}
.header-inner {
  width: 100%;
  
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 2.5vw;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-top: 9px; /* Meer ruimte boven */
  padding-bottom: 9px;
}

.header-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.header-nav a {  color: #181818;
  font-size: 40px;
  text-decoration: none;
  font-family: "hooneorinigyosil", '1HOONEorinigyosilOTF', monospace, sans-serif;
  transition: color 0.2s;
}
.header-nav a:hover {
  color: #FED61B;
}
.hero-bg {
  position: relative;
  width: 100%;
  min-height: 645px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
}
.hero-center {
  width: 100%;
  height: 645px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: none;
}
.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 645px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}
.hero-title {
  font-family: "hooneorinigyosil", '1HOONEorinigyosilOTF', monospace, sans-serif;
  font-size: 128px;
  line-height: 100px;
  color: #00262B;
  text-align: center;
  margin-bottom: 2.5rem;
  margin-top: 2rem;
  pointer-events: auto;
}
.hero-sub {
  font-family: 'FaktPro', Arial, sans-serif;
  font-size: 20px;
  line-height: 28px;
  color: #00262B;
  text-align: center;
  margin-bottom: 2rem;
  pointer-events: auto;
  max-width: 520px;
}
.hero-svg-bg {
  width: 100%;
  height: 645px;
  min-height: 645px;
  display: block;
  position: relative;  z-index: 0;
}

/* Responsive header */
@media (max-width: 768px) {
  .custom-header {
    height: 90px;
  }
  
  .header-inner {
    padding: 0.5rem 1.5rem 0.5rem 1.5rem; /* Meer ruimte boven en onder */
  }
  
  .header-logo {
    padding-bottom: 10px;
  }    .large-logo svg {
    height: 51px;
    width: auto;
  }
  
  body {
    padding-top: 90px;
  }
}

@media (max-width: 480px) {
  .custom-header {
    height: 80px;
  }
  
  .header-inner {
    padding: 0.8rem 1rem 0.8rem 1rem; /* Nog meer ruimte boven en onder op kleine telefoons */
  }
  .header-logo {
    padding-top: 10px; /* Meer ruimte boven */
    padding-bottom: 12px;
  }    .large-logo svg {
    height: 25px;
    width: auto;
  }
  
  body {
    padding-top: 80px;
  }
}

/* Globale container voor centreren en max-width */
.container {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}

/* Global responsive improvements */
@media (max-width: 768px) {
  .container {
    width: 95%;
    padding: 0 1rem;
  }
    /* Global padding adjustments for smaller screens */
  section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* Override for full-width background sections */
  .team-section,
  .site-footer {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .container {
    width: 100%;
    padding: 0 0.5rem;
  }
    /* Even tighter spacing for very small screens */
  section {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  /* Override for full-width background sections */
  .team-section,
  .site-footer {
    padding-left: 0;
    padding-right: 0;
  }
  
  /* Ensure text doesn't overflow */
  h1, h2, h3, .section-title {
    word-wrap: break-word;
    hyphens: auto;
  }
}

/* About-sectie styling */
.about-section {
  padding: 4rem 0;
  position: relative;
}
.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.about-content > .section-title {
  text-align: center;
  margin-bottom: 2rem;
}

/* About content wrapper voor tekst en afbeelding */
.about-content-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  width: 100%;
}

.about-text, .about-image {
  width: 100%;
}

.about-text p {
  font-family: 'FaktPro', Arial, sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #00222C;
  max-width: 520px;
  margin-bottom: 10px;
}

.about-image {
  display: flex;
  align-items: stretch;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.about-decoration-svg {
  position: absolute !important;
  top: -50px !important;
  right: -100px !important;
  width: 600px !important;
  height: auto !important;
  z-index: 0 !important;
  opacity: 0.15;
  transform: rotate(-10deg) !important;
  pointer-events: none;
}

/* Responsive about section */
@media (max-width: 768px) {
  .about-section {
    padding: 3rem 1rem;
  }
  
  .about-content {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  
  .about-content-wrapper {
    flex-direction: column !important;
    gap: 2rem;
    align-items: center;
  }
  
  .about-text {
    width: 90% !important;
    margin: 0 5% !important;
    text-align: left;
    max-width: 520px;
  }
  
  .about-text h2 {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .about-image {
    width: 85% !important;
    max-width: 350px;
    margin: 0 auto !important;
  }
    .about-text p {
    font-size: 16px;
    line-height: 24px;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 2rem 0.5rem;
  }
  
  .about-content {
    gap: 1.5rem;
  }
  
  .about-content-wrapper {
    flex-direction: column !important;
    gap: 1.5rem;
    align-items: center;
  }
  
  .about-text {
    width: 95% !important;
    margin: 0 2.5% !important;
    text-align: left;
    max-width: 520px;
  }
  
  .about-text h2 {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .about-image {
    width: 90% !important;
    max-width: 300px;
    margin: 0 auto !important;
  }
    .about-text p {
    font-size: 14px;
    line-height: 22px;
    text-align: left;
  }
}

/* Responsive styling voor about decoration SVG */
@media (max-width: 1024px) {
  .about-decoration-svg {
    width: 500px !important;
    top: -30px !important;
    right: -80px !important;
  }
}

@media (max-width: 768px) {
  .about-decoration-svg {
    width: 400px !important;
    top: -20px !important;
    right: -60px !important;
    transform: rotate(-15deg) !important;
  }
}

@media (max-width: 480px) {
  .about-decoration-svg {
    width: 300px !important;
    top: -10px !important;
    right: -40px !important;
    opacity: 0.1;
  }
}

/* Services-sectie styling */
.services-section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.services-bg-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 776px;
  height: 719px;
  flex-shrink: 0;
  z-index: 0;
  opacity: 0.3;
}

.services-inner {
  position: relative;
  z-index: 1;
}

.services-title {
  font-family: "hooneorinigyosil", '1HOONEorinigyosilOTF', monospace;
  font-size: 95px;
  line-height: 0.75; /* Add proper line-height to prevent overlap */
  text-align: center;
  color: #00222C;
  margin: 0 0 3rem 0;
}

/* Responsive services section */
@media (max-width: 1024px) {
  .services-title {
    font-size: 80px;
  }
}

@media (max-width: 900px) {
  .services-section {
    padding: 3rem 0;
  }
  
  .services-bg-svg {
    width: 600px;
    height: 560px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 2rem 0;
  }
  
  .services-title {
    font-size: 60px;
    line-height: 50px;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }
  
  .services-bg-svg {
    width: 480px;
    height: 450px;
  }
}

@media (max-width: 600px) {
  .services-title {
    font-size: 48px;
    line-height: 40px;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 1.5rem 0;
  }
  
  .services-title {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
  }
  
  .services-bg-svg {
    width: 320px;
    height: 300px;
  }
}

/* Legacy service card styling for carousel cards */
.service-card img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 10px;
}
.service-card h3 {
  font-family: "hooneorinigyosil", '1HOONEorinigyosilOTF', monospace;
  font-size: 30px;
  margin: 0.5rem 0;
  color: #E4F4FE;
}
.service-card p {
  font-family: 'FaktPro', Arial, sans-serif;
  font-size: 16px;
  color: #E4F4FE;
  line-height: 24px;
  max-width: 520px;
}

/* Footer styling */
.site-footer {
  background: #337AB8;
  width: 100%;

  height: 150px;
  margin: 0 auto;
  flex-shrink: 0;
}
.footer-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5vw;
  box-sizing: border-box;
}
.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.footer-social svg {
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.footer-social svg:hover {
  opacity: 0.8;
}
.footer-handle {
  color: #000;
  font-family: "hooneorinigyosil", '1HOONEorinigyosilOTF', monospace, sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 76px;
  letter-spacing: 0.5px;
}
.footer-contact {
  color: #000;
  font-family: "hooneorinigyosil", '1HOONEorinigyosilOTF', monospace, sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 76px;
  letter-spacing: 0.5px;
}

/* ============================================
   CONTACT FORMULIER SECTION
   ============================================ */
.contact-section {
  padding: 4rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
}

.contact-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1200px;
  width: 100%;
  padding: 0 2rem;
}

.contact-visual-left {
  flex-shrink: 0;
}

.contact-visual-left svg {
  width: 280px;
  height: auto;
}

.contact-form-container {
  flex: 1;
  max-width: 400px;
  text-align: center;
}

.contact-title {
  font-family: "hooneorinigyosil", '1HOONEorinigyosilOTF', monospace, sans-serif;
  font-size: 95px;
  font-weight: 400;
  color: #1F1E1D;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  font-family: 'FaktPro', Arial, sans-serif;
  font-size: 16px;
  color: #1F1E1D;
  margin-bottom: 0.5rem;
  font-weight: 500;
  max-width: 520px;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-family: 'FaktPro', Arial, sans-serif;
  font-size: 16px;
  background: #fff;
  transition: background-color 0.3s ease;  box-sizing: border-box;
  min-height: 44px; /* Touch target size */
  -webkit-appearance: none; /* Remove iOS styling */
  appearance: none; /* Standard property for compatibility */
}

.form-group input:focus {
  outline: none;
  background-color: #f8f9fa;
  box-shadow: 0 0 0 2px rgba(51, 122, 184, 0.3);
}

.submit-btn {
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
  transition: transform 0.2s ease;
  min-width: 44px; /* Touch target size */
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}

.submit-btn:hover,
.submit-btn:active {
  transform: scale(1.05);
}

.submit-btn svg {
  width: 200px;
  height: auto;
}

.contact-visual-right {
  flex-shrink: 0;
}

.contact-visual-right svg {
  width: 180px;
  height: auto;
}

/* Responsive design voor contact formulier */
@media (max-width: 1024px) {
  .contact-container {
    gap: 2rem;
  }
  
  .contact-visual-left svg {
    width: 220px;
  }
  
  .contact-visual-right svg {
    width: 150px;
  }
    .contact-title {
    font-size: 42px;
  }
}

@media (max-width: 800px) {
  .contact-visual-right {
    display: none; /* Verberg rechter SVG op schermen kleiner dan 800px */
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 3rem 0;
  }
  
  .contact-container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding: 0 1rem;
  }
  
  .contact-visual-left,
  .contact-visual-right {
    order: 2;
  }
  
  .contact-form-container {
    order: 1;
    max-width: 100%;
  }
  
  .contact-visual-left svg {
    width: 200px;
  }
  
  .contact-visual-right svg {
    width: 120px;
  }
  
  .contact-title {
    font-size: 48px;
    margin-bottom: 1.5rem;
  }
    
  .services-title {
    font-size: 72px;
  }
  
  .services-bg-svg {
    width: 540px;
    height: 510px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 2rem 0;
  }
  
  .contact-container {
    padding: 0 0.5rem;
  }
  
  .contact-visual-left svg {
    width: 140px;
  }
  
  .contact-title {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 1rem;
  }
  
  .form-group input {
    padding: 10px 12px;
    font-size: 14px;
  }
  
  .form-group label {
    font-size: 14px;
  }
    .submit-btn svg {
    width: 150px;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 3rem 0;
  }
  
  .contact-container {
    padding: 0 1rem;
  }
  
  .services-bg-svg {
    width: 480px;
    height: 450px;
  }
}

@media (max-width: 480px) {
  .contact-visual-left svg {
    width: 140px;
  }
  
  .contact-title {
    font-size: 50px;
  }
  
  .services-bg-svg {
    width: 360px;
    height: 330px;
  }
}

/* Responsive breakpoints */
@media (min-width: 769px) {
  .about-content-wrapper {
    flex-direction: row;
    align-items: flex-start;
  }
  .about-text, .about-image {
    width: 50%;
  }
}

@media (min-width: 1024px) {
  /* Large screen specific styles can be added here if needed */
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 80px;
    line-height: 75px;
  }
}

@media (max-width: 900px) {
  .hero-title {
    font-size: 64px;
    line-height: 60px;
  }
  .hero-content {
    height: 400px;
  }
  .hero-center {
    height: 400px;
  }
  .hero-svg-bg {
    height: 400px;
    min-height: 400px;  }
}
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    padding: 1.5rem 2.5vw;
    height: auto;
  }
  
  .site-footer {
    height: auto;
    min-height: 120px;
  }
  
  .footer-handle, .footer-contact {
    font-size: 24px;
    line-height: 30px;
  }
  
  .footer-social svg {
    width: 40px;
    height: 40px;
  }
  
  /* Why section responsive voor tablet */
  .why-section {
    padding: 3rem 1rem;
  }
  .why-title {
    font-size: 60px;
    line-height: 50px;
    margin-bottom: 60px;
  }
  .why-box {
    margin: 1rem 0;
    padding: 1.5rem;
  }
  .why-content {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }  .why-text {
    width: 90%;
    margin: 0 5%;
    text-align: left;
    font-size: 17px;
    line-height: 25px;
    max-width: 520px;
  }  .why-img-container {
    width: 85%;
    max-width: 350px;
    margin: 0 auto;
  }
  .why-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
    /* Tablet styling voor decoratieve SVG elementen */
  .hero-decoration-element {
    width: 70px !important;
    top: 18% !important;
    right: 3% !important;
    transform: rotate(12deg) !important;
  }
  
  .hero-decoration-element-small {
    width: 49px !important;
    top: 55% !important;
    right: 12% !important;
    transform: rotate(180deg) rotate(12deg) !important;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    padding: 1rem 1rem;
    gap: 0.5rem;
  }
  
  .site-footer {
    min-height: 100px;
  }
  
  .footer-handle, .footer-contact {
    font-size: 18px;
    line-height: 24px;
  }
  
  .footer-social svg {
    width: 32px;
    height: 32px;
    margin-top: 8px;
  }
}
@media (max-width: 700px) {
  .header-nav {
    display: flex !important;
    position: static !important;
    flex-direction: row !important;
    background: transparent !important;
    height: auto !important;
    padding: 0 !important;
  }

}

.custom-section {
  position: relative;
  width: 100%;
  height: 710px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-section svg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 710px;
  object-fit: cover;
  z-index: 1;
}

/* Responsive custom section */
@media (max-width: 900px) {
  .custom-section {
    height: 500px;
  }
  
  .custom-section svg {
    height: 500px;
  }
  
  .section-subtext {
    font-size: 20px;
    line-height: 26px;
  }
}

@media (max-width: 800px) {
  .custom-section svg {
    display: none; /* Hide SVG on mobile to prevent horizontal overflow */
  }
  
  .custom-section {
    height: 400px;
    background: linear-gradient(45deg, #E4F4FE 0%, #C3D2EF 100%);
  }
}

@media (max-width: 700px) {
  .custom-section {
    height: auto;
    min-height: 450px;
    padding-bottom: 60px;
  }
  
  .section-text-container {
    margin-top: 40px; /* Extra afstand tussen header en tekst op tablet */
  }
  
  .section-subtext {
    font-size: 18px;
    line-height: 24px;
    padding: 0 1rem;
  }
}

@media (max-width: 600px) {
  .section-subtext {
    font-size: 18px;
    line-height: 24px;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .custom-section {
    height: auto;
    min-height: 380px;
    padding-bottom: 50px;
  }
  
  .section-text-container {
    margin-top: 60px; /* Nog meer afstand tussen header en tekst op kleine telefoons */
  }
  
  .section-subtext {
    font-size: 16px;
    line-height: 25px;
    padding: 0 1.5rem;
  }
}

/* Specifieke styling voor de decoratieve SVG elementen */
.hero-decoration-element {
  position: absolute !important;
  top: 20% !important;
  right: 5% !important;
  left: auto !important;
  width: 87px !important;
  height: auto !important;
  transform: rotate(15deg) !important;
  z-index: 3 !important;
  opacity: 0.8;
}

.hero-decoration-element-small {
  position: absolute !important;
  top: 60% !important;
  right: 15% !important;
  left: auto !important;
  width: 61px !important;
  height: auto !important;
  transform: rotate(180deg) rotate(15deg) !important;
  z-index: 3 !important;  opacity: 0.6;
}

.hero-decoration-element-left {
  position: absolute !important;
  top: 70% !important;
  left: 5% !important;
  right: auto !important;
  width: 87px !important;
  height: auto !important;
  transform: rotate(-25deg) !important;
  z-index: 3 !important;
  opacity: 0.7;
}

.hero-decoration-element-top-left {
  position: absolute !important;
  top: 15% !important;
  left: 8% !important;
  right: auto !important;
  width: 120px !important;
  height: auto !important;
  transform: rotate(180deg) rotate(-30deg) !important;
  z-index: 3 !important;
  opacity: 0.6;
}

.section-text-container {
  margin-top: -10px; /* Adjusted to align with the SVG */
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-title-wrapper {
  padding: 20px 15px;
  margin: 0 auto 30px auto;
  max-width: fit-content;
}

.hero-title-wrapper .section-title {
  margin-top: 30px;
}
.section-title {
  font-family: "hooneorinigyosil", '1HOONEorinigyosilOTF', monospace, sans-serif;
  font-size: 128px;
  line-height: 0.75; /* Add proper line-height to prevent overlap */
  color: #00222C;
  margin: 0 0 65px 0; /* 65px space below title */
}

/* Responsive scaling for all section titles */
@media (max-width: 1024px) {
  .section-title {
    font-size: 80px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 64px;
    line-height: 50px;
  }
}

@media (max-width: 600px) {
  .section-title {
    font-size: 50px;
    line-height: 40px;
  }
}

@media (max-width: 480px) {  .section-title {
    font-size: 48px;
    line-height: 45px;
    margin-bottom: 15px;
  }
  
  p {
    margin-top: -10px;
  }
  
  /* Hero title blijft groter op telefoon */
  .hero-title-wrapper .section-title {
    font-size: 62px;
    line-height: 58px;
  }
}

/* Hero title specifieke responsive styling */
@media (max-width: 768px) {
  .hero-title-wrapper {
    padding: 15px 12px;
    margin-bottom: 25px;
  }
  
  .hero-title-wrapper .section-title {
    font-size: 80px;
    line-height: 70px;
  }
}

@media (max-width: 600px) {
  .hero-title-wrapper {
    padding: 12px 10px;
    margin-bottom: 20px;
  }
  
  .hero-title-wrapper .section-title {
    font-size: 68px;
    line-height: 60px;
  }
}

@media (max-width: 480px) {
  .hero-title-wrapper {
    padding: 10px 8px;
    margin-bottom: 15px;
  }
  
  /* Hero title blijft groter op telefoon */
  .hero-title-wrapper .section-title {
    font-size: 62px;
    line-height: 58px;
  }
}
.section-subtext {
  font-family: 'FaktPro', Arial, sans-serif;
  font-size: 24px;
  color: rgb(0, 34, 44);
  margin-top: 0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Phone layout SVG and text positioning */
@media (max-width: 700px) {
  .hero-svg-bg {
    display: none;
  }
  .hero-mobile-bg {
    display: none;
  }
  .hero-mobile-bg {
    display: block;
    position: absolute;
    top: 90px; /* Adjusted for smaller header */
    left: 50%;
    transform: translateX(-50%);
    width: 390px;
    height: 519px;
    z-index: 0;
  }
  .hero-content {
    position: absolute;
    top: 90px; /* Adjusted for smaller header */
    left: 50%;
    transform: translateX(-50%);
    width: 390px;
    height: 519px;
    pointer-events: none;
  }
  .hero-title {
    position: absolute;
    top: 150px; /* Adjusted positioning */
    left: calc(50% - 290px/2);
    width: 290px;
    font-size: 60px;
    line-height: 50px;
    letter-spacing: 0.5px;
  }
  .hero-sub {
    position: absolute;
    top: 330px; /* Adjusted positioning */
    left: calc(50% - 270px/2);
    width: 270px;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.5px;
  }

    /* Responsive styling voor decoratieve SVG elementen */
  .hero-decoration-element {
    width: 60px !important;
    top: 15% !important;
    right: 2% !important;
    transform: rotate(10deg) !important;
  }
    .hero-decoration-element-small {
    width: 42px !important;
    top: 50% !important;
    right: 10% !important;
    transform: rotate(180deg) rotate(10deg) !important;
  }
    .hero-decoration-element-left {
    width: 60px !important;
    top: 65% !important;
    left: 2% !important;
    transform: rotate(-20deg) !important;
  }
  
  .hero-decoration-element-top-left {
    width: 80px !important;
    top: 10% !important;
    left: 5% !important;
    transform: rotate(180deg) rotate(-25deg) !important;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 48px;
    line-height: 45px;
  }
}

@media (max-width: 480px) {
  .hero-mobile-bg {
    top: 80px; /* Adjusted for even smaller header */
    width: 320px;
    height: 400px;
  }
  
  .hero-content {
    top: 80px;
    width: 320px;
    height: 400px;
  }
  
  .hero-title {
    top: 120px;
    left: calc(50% - 250px/2);
    width: 250px;
    font-size: 36px;
    line-height: 40px;
  }
  
  .hero-sub {
    top: 250px;
    left: calc(50% - 230px/2);
    width: 230px;
    font-size: 16px;
    line-height: 22px;
  }
}

/* =========================
   Mouse follower styling
   ========================= */
.mouse-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 2000;
}

/* =========================
   Custom interactive cursor
   ========================= */
a, button, input, textarea, select, .carousel-btn, .upload-btn, .load-more-btn {
  cursor: url('../assets/click-cursor.svg'), pointer;
}

/* Safari cursor size fix */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  a, button, input, textarea, select, .carousel-btn, .upload-btn, .load-more-btn {
    cursor: url('../assets/click-cursor.svg'), pointer;
  }
}

/* ============================================
   WORKSHOPS CAROUSEL STYLING
   ============================================ */
.workshops-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}

.carousel-container {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
}

.carousel-track {
  display: flex;
  transition: transform 0.3s ease-in-out;
  gap: 1.5rem;
}

.carousel-track .service-card {
  flex: 0 0 300px;
  min-width: 300px;
  background: #EA4B94;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.carousel-track .service-card:hover {
  transform: translateY(-5px);
}

/* Responsive carousel */
@media (max-width: 768px) {
  .workshops-carousel {
    gap: 0.5rem;
    margin: 1.5rem 0;
  }
  
  .carousel-track .service-card {
    flex: 0 0 280px;
    min-width: 280px;
    padding: 1.2rem;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
  
  .services-title {
    font-size: 72px;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .workshops-carousel {
    gap: 0.25rem;
    margin: 1rem 0;
  }
  
  .carousel-track {
    gap: 1rem;
  }
    .carousel-track .service-card {
    flex: 0 0 250px;
    min-width: 250px;
    padding: 1rem;
  }
  
  .carousel-track .service-card h3 {
    font-size: 26px;
  }
  
  .carousel-track .service-card p {
    font-size: 14px;
    line-height: 20px;
  }
  
  .carousel-btn {
    width: 35px;
    height: 35px;
  }
}

.carousel-btn {
  background: #337AB8;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 2;
  min-width: 44px; /* Touch target size */
  min-height: 44px;
  -webkit-tap-highlight-color: transparent; /* Remove tap highlight on iOS */
}

.carousel-btn:hover,
.carousel-btn:active {
  background: #2a6ba0;
  transform: scale(1.1);
}

.carousel-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.2s ease;
}

.indicator.active {
  background: #337AB8;
}

/* Video Player Styles */
.video-section {
  padding: 4rem 0;
  background: #E4F4FE;
}

.video-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  
  /* Fallback for older browsers */
  padding-bottom: 56.25%; /* 16:9 aspect ratio (9/16 = 0.5625) */
  height: 0;
  
  /* Modern browsers with aspect-ratio support */
  aspect-ratio: 16 / 9;
}

/* Reset height when aspect-ratio is supported */
@supports (aspect-ratio: 16 / 9) {
  .video-container {
    height: auto;
    padding-bottom: 0;
  }
}

.video-container iframe,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
}

/* Hide all native video controls and make non-interactive */
.video-container video {
  outline: none;
  pointer-events: none;
}

.video-container video::-webkit-media-controls {
  display: none !important;
}

.video-container video::-webkit-media-controls-panel {
  display: none !important;
}

.video-container video::-webkit-media-controls-play-button {
  display: none !important;
}

.video-container video::-webkit-media-controls-start-playbook-button {
  display: none !important;
}

.video-container video::-moz-media-controls {
  display: none !important;
}

.video-container video::-ms-media-controls {
  display: none !important;
}

/* Make iframe non-interactive except for our custom controls */
.video-container iframe {
  pointer-events: none;
}

/* Re-enable pointer events for our custom controls */
.video-controls {
  pointer-events: auto;
}

.video-controls {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  transition: opacity 0.3s ease;
}

.play-btn, .pause-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 80px;
  height: 80px;
  min-width: 44px; /* Touch target size */
  min-height: 44px;
  -webkit-tap-highlight-color: transparent; /* Remove tap highlight on iOS */
  transition: transform 0.2s ease;
}

.play-btn:active, .pause-btn:active {
  transform: scale(0.95);
}

.play-btn svg, .pause-btn svg {
  width: 100%;
  height: 100%;
  pointer-events: none; /* Prevent event issues */
}

/* Workshops page styling */
.workshops-main-section {
  padding: 80px 0;
  background: #E4F4FE;
  min-height: 600px;
}

.workshops-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-content-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 600px;
  margin: 0 auto;
}

.workshop-image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.main-workshop-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.meer-laden-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.meer-laden-btn {
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  padding: 0;
}

.meer-laden-btn:hover {
  transform: scale(1.05);
}

.meer-laden-btn svg {
  width: 305px;
  height: 73px;
}

/* Meer laden button within services section */
.services-section .meer-laden-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.meer-laden-container.hidden {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

.meer-laden-btn:disabled {
  opacity: 0.5;
  pointer-events: none !important;
  cursor: not-allowed;
}

/* ============================================
   MINDER TONEN BUTTON STYLING
   ============================================ */
.minder-tonen-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  z-index: 2;
}

.minder-tonen-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.minder-tonen-btn:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.minder-tonen-btn svg {
  width: 305px;
  height: 55px;
  max-width: 100%;
  height: auto;
}

/* Responsive styling for minder tonen button */
@media (max-width: 768px) {
  .minder-tonen-container {
    margin-top: 2rem;
  }
  
  .minder-tonen-btn svg {
    width: 280px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .minder-tonen-container {
    margin-top: 1.5rem;
  }
  
  .minder-tonen-btn svg {
    width: 250px;
    height: 45px;
  }
}

/* Workshop meta information styling */
.workshop-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin: 15px 0;
  flex-wrap: wrap;
}

.workshop-age,
.workshop-duration {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.8);
  
  border-radius: 20px;
  font-family: 'FaktPro', Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #337ab8;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.workshop-age:hover,
.workshop-duration:hover {
  background: #337AB8;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(51, 122, 184, 0.3);
}

/* Mobile responsive for workshop meta */
@media (max-width: 768px) {
  .workshop-meta {
    gap: 15px;
    justify-content: center;
  }
  
  .workshop-age,
  .workshop-duration {
    font-size: 13px;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .workshop-meta {
    gap: 10px;
    flex-direction: column;
    align-items: center;
  }
  
  .workshop-age,
  .workshop-duration {
    width: fit-content;
    text-align: center;
  }
}

/* ============================================
   BLUE WORKSHOPS CAROUSEL STYLING
   ============================================ */
.second-carousel {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
  animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blue-workshops-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}

.blue-workshops-carousel .carousel-container {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
}

.blue-workshops-carousel .carousel-track {
  display: flex;
  transition: transform 0.3s ease-in-out;
  gap: 1.5rem;
}

.blue-workshops-carousel .carousel-track .service-card {
  flex: 0 0 300px;
  min-width: 300px;
  background: #337AB8;
  color: white;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.blue-workshops-carousel .carousel-track .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(51, 122, 184, 0.3);
  cursor: pointer;
}

.blue-workshops-carousel .carousel-track .service-card h3 {
  color: white;
  margin-bottom: 1rem;
}

.blue-workshops-carousel .carousel-track .service-card p {
  color: rgba(255, 255, 255, 0.9);
}

.blue-workshops-carousel .carousel-btn {
  background: #337AB8;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 2;
  min-width: 44px;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}

.blue-workshops-carousel .carousel-btn:hover,
.blue-workshops-carousel .carousel-btn:active {
  background: #2a6ba0;
  transform: scale(1.1);
}

.blue-workshops-carousel .carousel-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.blue-workshops-carousel .carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.blue-workshops-carousel .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.2s ease;
}

.blue-workshops-carousel .indicator.active {
  background: #337AB8;
}

/* Responsive design for blue carousel */
@media (max-width: 768px) {
  .blue-workshops-carousel {
    gap: 0.5rem;
    margin: 1.5rem 0;
  }
  
  .blue-workshops-carousel .carousel-track .service-card {
    flex: 0 0 280px;
    min-width: 280px;
    padding: 1.2rem;
  }
}

@media (max-width: 480px) {
  .blue-workshops-carousel {
    gap: 0.25rem;
    margin: 1rem 0;
  }
  
  .blue-workshops-carousel .carousel-track {
    gap: 1rem;
  }
    .blue-workshops-carousel .carousel-track .service-card {
    flex: 0 0 250px;
    min-width: 250px;
    padding: 1rem;
  }
  
  .blue-workshops-carousel .carousel-track .service-card h3 {
    font-size: 26px;
  }
  
  .blue-workshops-carousel .carousel-track .service-card p {
    font-size: 14px;
    line-height: 20px;
  }
  
  .blue-workshops-carousel .carousel-btn {
    width: 35px;
    height: 35px;
  }
}

/* ============================================
   TEAM SECTION STYLING
   ============================================ */
.team-section {
  padding: 4rem 0;
  background: #FAD400;
}

.team-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.team-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-family: "hooneorinigyosil", '1HOONEorinigyosilOTF', monospace, sans-serif;
  font-size: 24px;
  color: #1F1E1D;
  font-weight: 600;
}

.team-role {
  font-family: 'FaktPro', Arial, sans-serif;
  font-size: 16px;
  color: #1F1E1D;
  font-weight: 500;
  margin-top: 5px;
  display: block;
}

.team-text {
  flex: 1;
  max-width: 500px;
}

.team-text h2 {
  font-family: "hooneorinigyosil", '1HOONEorinigyosilOTF', monospace, sans-serif;
  font-size: 95px;
  line-height: 0.75;
  color: #00222C;
  margin-bottom: 2rem;
  text-align: center;
}

.team-text p {
  font-family: 'FaktPro', Arial, sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #00222C;
  text-align: left;
  max-width: 520px;
}

/* Responsive team section */
@media (max-width: 1024px) {
  .team-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .team-photos {
    order: 2;
  }
  
  .team-text {
    order: 1;
  }
    .team-text h2 {
    font-size: 80px;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .team-section {
    padding: 3rem 1rem;
  }
  
  .team-content {
    gap: 2rem;
  }
  
  .team-photos {
    gap: 1.5rem;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }    .team-name {
    font-size: 22px;
  }
  
  .team-role {
    font-size: 15px;
  }
    .team-text h2 {
    font-size: 56px;
    margin-bottom: 1.5rem;
  }
  
  .team-text p {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .team-text h2 {
    font-size: 48px;
    line-height: 45px;
  }
}

@media (max-width: 480px) {
  .team-section {
    padding: 2rem 0.5rem;
  }
  
  .team-photos {
    gap: 1rem;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }    .team-name {
    font-size: 20px;
  }
  
  .team-role {
    font-size: 14px;
  }
  
  .team-text h2 {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 1rem;
  }
    .team-text p {
    font-size: 14px;
    line-height: 22px;
    padding: 0 1rem;
  }
}

/* ============================================
   VIDEO RESPONSIVE STYLING
   ============================================ */
@media (max-width: 1200px) {
  .video-container {
    margin: 0 2rem;
  }
}

@media (max-width: 768px) {
  .video-section {
    padding: 3rem 1rem;
  }
  
  .video-container {
    margin: 0 1rem;
    border-radius: 8px;
  }
  
  .video-controls {
    opacity: 1; /* Always show controls on mobile */
  }
  
  .play-btn, .pause-btn {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .video-section {
    padding: 2rem 0.5rem;
  }
  
  .video-container {
    margin: 0 0.5rem;
    border-radius: 6px;
  }
  
  .play-btn, .pause-btn {
    width: 50px;
    height: 50px;
  }
}

/* Kunstmetcode page specific styles */

.hero-subtitle {
  font-family: 'FaktPro', Arial, sans-serif;
  font-size: 1.7rem;
  color: #1F1E1D;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.process-section {
  padding: 4rem 0;
  background: #EA4B94;
}

.process-section .section-title {
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  font-family: 'FaktPro', Arial, sans-serif;;
  text-align: center;
  padding: 2rem 1rem;
  background: #E4F4FE;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 60px;
  height: 60px;
  background: #FAD400;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: 'FaktPro', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #00222C;
}

.process-step h3 {
  font-family: "hooneorinigyosil", '1HOONEorinigyosilOTF', monospace, sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #00222C;
}

.process-step p {
  font-family: 'FaktPro', Arial, sans-serif;
  line-height: 1.4;
  color: #00222C;
}

.tech-section {
  padding: 4rem 0;
  background: #E4F4FE;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tech-item {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.tech-item:hover {
  transform: translateY(-3px);
}

.tech-item h3 {
  font-family: 'FaktPro', Arial, sans-serif;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #00222C;
}

.workshop-info-section {
  padding: 4rem 0;
  background: #fff;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.info-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #FAD400;
}

.info-card h3 {
  font-family: 'FaktPro', Arial, sans-serif;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #00222C;
}

.benefits-section {
  padding: 4rem 0;
  background: #E4F4FE;
}

.benefits-content {
  margin-top: 3rem;
}

.benefit-item {
  background: #fff;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.benefit-item h3 {
  font-family: 'FaktPro', Arial, sans-serif;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #00222C;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .process-grid,
  .tech-grid,
  .info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .process-step,
  .tech-item,
  .info-card,
  .benefit-item {
    padding: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .process-section,
  .tech-section,
  .workshop-info-section,
  .benefits-section {
    padding: 2rem 0;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
  padding: 4rem 0;
  background: #E4F4FE;
}
.gallery-section .section-title {
  text-align: center;
  margin-bottom: 2rem;
}
.gallery-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1.5rem;
}
.gallery-search {
  flex: 1;
  max-width: 400px;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.upload-btn {
  background: #FAD400;
  color: #00262B;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-family: "hooneorinigyosil", monospace;
  font-size: 18px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.upload-btn:hover {
  opacity: 0.8;
}
.gallery-subtitle {
  font-family: 'FaktPro', Arial, sans-serif;
  font-size: 24px;
  color: #00222B;
  text-align: center;
  margin-bottom: 1rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}
.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}
.load-more-container {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.load-more-btn {
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.load-more-btn:hover {
  opacity: 0.8;
}

/* Sticky footer styles */
html, body {
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1 0 auto;
}
.site-footer {
  flex-shrink: 0;
}

@media (max-width: 480px) {
  /* Maak containers volledig breed zonder extra padding */
  .container {
    width: 100%;
    padding: 0;
  }
  /* Verwijder padding rond secties voor volledige breedte */
  section {
    padding-left: 0;
    padding-right: 0;
  }
  /* Zorg dat de footer geen horizontale padding heeft */
  .footer-inner {
    padding: 0 1rem;
  }
  
  /* Gallery grid specific styling voor mobiel - voeg padding toe */
  .gallery-grid {
    padding: 0 1rem;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gallery-grid img {
    margin: 0 auto;
    max-width: calc(100% - 2rem);
  }
  
  /* Process grid specific styling voor mobiel - voeg padding toe */
  .process-grid {
    padding: 0 1rem;
    gap: 1rem;
  }
  
  .process-step {
    margin: 0 auto;
    max-width: calc(100% - 2rem);
  }
}

/* Responsive download button */
.download-material {
  width: 100%;
  max-width: 400px; /* optional, adjust as needed */
  margin: 1rem auto;
}


@media (max-width: 700px) {
  /* Hide default nav links */
  .header-nav {
    display: none;
  }

  .header-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    background-color: white;
    padding: 2rem;
    box-shadow: -2px 0 8px rgba(0,0,0,0.1);
    z-index: 1001;
  }
  .header-nav.mobile-open .close-menu {
    align-self: flex-end;
    display: block;
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 2rem;
  }
  .header-nav.mobile-open a {
    margin: 1rem 0;
    text-decoration: none;
    color: black;
    font-size: 1.2rem;
  }
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
  }
  .header-nav.mobile-open ~ .nav-overlay {
    display: block;
  }
}

/* Responsive styling voor about-section (workshops pagina) */
/* Section titles now use unified responsive scaling */

/* Responsive styling voor process-section section-title */
/* Section titles now use unified responsive scaling */

/* Responsive header navigation text */
@media (max-width: 1024px) {
  .header-nav a {
    font-size: 40px;
  }
}

@media (max-width: 600px) {
  .header-nav a {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .header-nav a {
    font-size: 25px;
  }
}

/* Responsive styling voor services-title binnen services-inner */
@media (max-width: 1024px) {
  .services-inner .services-title {
    font-size: 85px;
  }
}

@media (max-width: 768px) {
  .services-inner .services-title {
    font-size: 70px;
    line-height: 60px;
  }
}

@media (max-width: 600px) {
  .services-inner .services-title {
    font-size: 50px;
    line-height: 40px;
  }
}

@media (max-width: 480px) {
  .services-inner .services-title {
    font-size: 40px;
    line-height: 40px;
  }
}

/* ============================================
   DOWNLOAD BUTTON STYLING (Responsive)
   ============================================ */
.download-material {
  text-align: center;
  margin-top: 1.5rem;
}

.download-material p {
  margin-bottom: 1rem;
  font-weight: 600;
}

.download-btn-svg {
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: inline-block;
  text-decoration: none;
  min-width: 44px; /* Touch target size */
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}

.download-btn-svg:hover,
.download-btn-svg:active {
  opacity: 0.8;
  transform: scale(1.02);
}

.download-btn-svg svg {
  width: 409px;
  height: auto;
  max-width: 100%;
  display: block;
}

/* Responsive styling for download button */
@media (max-width: 768px) {
  .download-btn-svg svg {
    width: 350px;
  }
  
  .download-material {
    margin-top: 1.25rem;
  }
}

@media (max-width: 480px) {
  .download-btn-svg svg {
    width: 280px;
  }
  
  .download-material {
    margin-top: 1rem;
  }
  
  .download-material p {
    font-size: 16px;
  }
}

@media (max-width: 380px) {
  .download-btn-svg svg {
    width: 250px;
  }
}

/* ============================================
   DUAL LOGO SYSTEM (Large & Small)
   ============================================ */

/* Default: Show large logo, hide small logo */
.large-logo {
  display: inline-block;
}

.small-logo {
  display: none;
}

/* At 600px and below: Hide large logo, show small logo */
@media (max-width: 600px) {
  .large-logo {
    display: none;
  }
  
  .small-logo {
    display: inline-block;
  }
    .small-logo svg {
    width: 46px;
    height: auto;
  }
}

@media (max-width: 480px) {
  .small-logo svg {
    width: 38px;
    height: auto;
  }
}

@media (max-width: 380px) {
  .small-logo svg {
    width: 32px;
    height: auto;
  }
}

/* Random decoratieve SVG elementen */
.hero-decoration-random-1 {
  position: absolute !important;
  top: 10% !important;
  left: 8% !important;
  transform: rotate(45deg) !important;
  z-index: 2 !important;
  opacity: 0.4;
}

.hero-decoration-random-2 {
  position: absolute !important;
  top: 75% !important;
  left: 25% !important;
  transform: rotate(-30deg) !important;
  z-index: 2 !important;
  opacity: 0.5;
}

.hero-decoration-random-3 {
  position: absolute !important;
  top: 25% !important;
  left: 85% !important;
  transform: rotate(120deg) !important;
  z-index: 2 !important;
  opacity: 0.3;
}

.hero-decoration-random-4 {
  position: absolute !important;
  top: 85% !important;
  left: 70% !important;
  transform: rotate(-75deg) !important;
  z-index: 2 !important;
  opacity: 0.6;
}

.hero-decoration-random-5 {
  position: absolute !important;
  top: 35% !important;
  left: 15% !important;
  transform: rotate(200deg) !important;
  z-index: 2 !important;
  opacity: 0.4;
}

.hero-decoration-random-6 {
  position: absolute !important;
  top: 65% !important;
  left: 90% !important;
  transform: rotate(-150deg) !important;
  z-index: 2 !important;
  opacity: 0.5;
}

.hero-decoration-random-7 {
  position: absolute !important;
  top: 5% !important;
  left: 50% !important;
  transform: rotate(85deg) !important;
  z-index: 2 !important;
  opacity: 0.35;
}

/* Responsive styling voor random decoratieve elementen - tablet */
@media (max-width: 768px) {
  .hero-decoration-random-1,

  .hero-decoration-random-2,
  .hero-decoration-random-3,
  .hero-decoration-random-4,
  .hero-decoration-random-5,
  .hero-decoration-random-6,
  .hero-decoration-random-7 {
    transform: scale(0.8) !important;
    opacity: 0.3 !important;
  }
}

/* Random decoratieve elementen verbergen op zeer kleine schermen */
@media (max-width: 480px) {
  .hero-decoration-random-1,
  .hero-decoration-random-3,
  .hero-decoration-random-5,
  .hero-decoration-random-7 {
    display: none !important;
  }
  
  .hero-decoration-random-2,
  .hero-decoration-random-4,
  .hero-decoration-random-6 {
    transform: scale(0.6) !important;
    opacity: 0.2 !important;
  }
}

