:root {
  --container-margin: 20px;
  --container-padding: 25px;
  --container-radius: 20px;
}

html, body {
  background-color: #f2f2f2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* HEADER */
.header {
  background-color: #6D7456;
  padding: 20px 0;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;   
}

.header-container {
  width: 90%;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* LOGO */
.logo img {
  height: 50px;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
}

.hamburger {
  position: absolute;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}

/* MOBILE MENU */
.mobile-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #6D7456;
  width: 200px;
  display: flex;
  flex-direction: column;
  text-align: center;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 2000;   
}

.mobile-menu a {
  padding: 15px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.mobile-menu a:hover {
  background-color: #6D7456;
}

.menu-toggle:checked ~ .mobile-menu {
  max-height: 300px;
}

.menu-toggle:checked + .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
}

.menu-toggle:checked + .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/*background image header*/

.home-image {
    background-image: url("../Images/ChatGPT\ Image\ 11\ apr\ 2026\,\ 18_25_54.png");
    background-size: cover;
    background-position: center;
    
    /* AANPASSINGEN HIERONDER: */
    width: 100%;
    min-height: 100vh; /* Vult altijd minstens het volledige scherm */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.home-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px 30px;
    border-radius: 15px;
    backdrop-filter: blur(4px);
    max-width: 90%;
}

.home-image h1 {
    font-family: 'Alfarn', sans-serif;
    font-size: 3rem;
    margin: 0;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
}

.home-image p {
    font-family: "Cocosharp Trial", sans-serif;
    font-size: 1.2rem;
    margin-top: 15px;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.cta-button {
    font-family: 'Alfarn', sans-serif;
    display: inline-block;
    padding: 14px 30px;
    background-color: white;
    color: black;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

.cta-button:hover {
    background-color: #6D7456;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

html {
  scroll-behavior: smooth;
}

/* da ene ding*/

.card-section {
  width: 100%;
  padding: 40px 20px;
  background-color: #f2f2f2;
  display: flex;
  justify-content: center;
}

.card {
  width: 100%;
  max-width: 350px;
  background-color: #ffffff;
  border-radius: var(--container-radius);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-content {
  padding: var(--container-padding);
}

.card-image {
  width: 100%;
  height: auto;
  display: block;
}

.card-content {
  padding: 20px;
}

.title {
  font-family: 'Alfarn', sans-serif;
  font-size: 26px;
  margin-bottom: 10px;
  text-align: left;
}

.description {
  font-family: "Cocosharp Trial", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.btn {
  font-family: 'Alfarn', sans-serif;
  margin: 20px;
  padding: 16px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #333;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

/*VIDEO GEDEELTE*/


.safesip-card {
  /* Layout & Spacing */
  max-width: 350px; /* Ideaal voor mobile */
  margin: 20px auto;
  padding: 15px; /* De witruimte rondom de video en tekst */
  
  /* Visuele styling */
  background-color: #ffffff;
  border-radius: 20px; /* Afgeronde hoeken */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Zachte schaduw */
  
  /* Font styling */
  font-family: "Cocosharp Trial", sans-serif;
  line-height: 1.6;
  color: #333;

}

.video-container {
  width: 100%;
  border-radius: 12px; /* De video zelf ook licht afronden voor de look */
  overflow: hidden;
  margin-bottom: 20px; /* Ruimte tussen video en tekst */
}

.video-container video {
  width: 100%;
  display: block;

  animation: slideUp 0.8s ease forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container:hover{
  transform: scale(1.4);
  box-shadow: 0 12px 25px rgba(109, 116, 86, 0.5);
}

.content p {
  margin: 0;
  font-size: 16px;
  text-align: left; /* Of 'center' afhankelijk van je voorkeur */
}

/* Functies dingske */
.functies-mobile {
  background-color: #6D7456;
  color: #ffffff;
  font-family: 'Alfarn', sans-serif;
  font-size: 2rem;
  text-align: center;
  padding: var(--container-padding);
  margin: var(--container-margin);
  border-radius: var(--container-radius);
  letter-spacing: 2px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

  animation: slideUp 0.8s ease forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Tap / hover effect */
.functies-mobile:active,
.functies-mobile:hover {
  transform: scale(1.4);
  box-shadow: 0 12px 25px rgba(109, 116, 86, 0.5);
}

/* Slide-up animatie */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FEATURE CONTAINER ===== */

.feature-section {
  padding: 60px 20px;
  display: flex;
  flex-direction: column; 
  align-items: center;    
  gap: 30px;              
}

.functies-hover:hover{
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.feature-container {
  background: #ffffff;
  border-radius: var(--container-radius);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  padding: var(--container-padding);
  max-width: 380px;
  width: 100%;
  text-align: center;
}

.feature-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 20px;
}

.feature-container h2 {
  font-family: 'Alfarn', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #6D7456;
}

.feature-container p {
  font-family: "Cocosharp Trial", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* MASCOTTE GEDEELTE */
.mascotte-container {
  background-color: #6D7456;
  border-radius: var(--container-radius);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  padding: var(--container-padding);
  margin: var(--container-margin);
}

/* Afbeelding */
.mascotte-img {
  width: 100%;
  aspect-ratio: 1 / 1; 
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 20px;
  background-color: #ffffff;
}

/* Titel */
.mascotte-title {
  font-family: 'Alfarn', sans-serif;
  text-align: left;
  margin-bottom: 15px;
  color: #ffffff;
}

/* Tekst */
.mascotte-text {
  font-family: 'Cocosharp Trial', sans-serif;
  text-align: left;
  line-height: 1.6;
  color: #ffffff;
}

/* FOOTER */
.custom-footer {
  background-color: #6D7456; /* gouden kleur */
  text-align: center;
  padding: 50px 20px;
  font-family: 'Alfarn', sans-serif;
  color: white;
}

.custom-footer h2 {
  margin-bottom: 30px;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.social-item,
.contact-item {
  margin-bottom: 35px;
}

.social-item img,
.contact-item img {
  width: 60px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 50%;
}

/* Hover animatie */
.social-item img:hover,
.contact-item img:hover {
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.custom-footer p {
  font-size: 1rem;
  letter-spacing: 1px;
}

.contact-title {
  margin-top: 40px;
  margin-bottom: 30px;
  font-size: 1.3rem;
}

.Kyan{
  text-align: center;
  font-family: "alfarn", sans-serif;
  padding: 30px;
}


/* ============================= */
/* ===== DESKTOP VERSION ====== */
/* ============================= */

@media (min-width: 1024px)  {

/* HEADER */
.header-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: all 0.4s ease;
  padding: 20px 0;
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s ease;
}
.logo {
    animation: logoSlide 0.5s ease;
  }

  @keyframes logoSlide {
    from {
      transform: translate(-50%, -20px);
      opacity: 0;
    }
    to {
      transform: translate(-50%, 0);
      opacity: 1;
    }
  }

  .hamburger {
    display: none;
  }

  .menu-toggle {
    display: none;
  }

  /* Desktop menu */
  .mobile-menu {
    position: static;
    max-height: none;
    overflow: visible;
    flex-direction: row;
    width: auto;
    background: none;
    box-shadow: none;
    gap: 40px;
  }

  .mobile-menu a {
    border: none;
    padding: 0;
    font-size: 1rem;
    position: relative;
  }

  .mobile-menu a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background: white;
    transition: 0.3s;
  }

  .mobile-menu a:hover::after {
    width: 100%;
  }

  /* HERO */
  .home-image {
    height: 90vh;
  }

  .home-overlay {
    max-width: 600px;
  }

  .home-image h1 {
    font-size: 4.5rem;
  }

  .home-image p {
    font-size: 1.4rem;
  }


  
  /* PRODUCT CARD */
  /* PRODUCT CARD AANPASSINGEN */
  .card {
    flex-direction: row; /* Foto links, tekst rechts */
    max-width: 1900px;
    align-items: stretch; /* Zorgt dat foto en tekst even hoog zijn */
  }

  .card-image {
    width: 50%;
    object-fit: cover; /* Voorkomt dat de foto vervormt */
  }

  .card-content {
    width: 50%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .card-section {
  min-height: 80vh; /* 👈 volledige schermhoogte */
}

  .btn {
    align-self: flex-start; 
    margin: 20px 0 0 0;    
    padding: 15px 40px;    
    border-radius: 4px;    
    width: auto;           
  }
  /* FUNCTIES TITLE */
  .functies-mobile {
    max-width: 400px;
    margin: 60px auto;
  }

  /*VIDEO DEELKE*/
.safesip-card {
    max-width: 1900px; /* Breder voor desktop */
    display: flex;
    align-items: center; /* Zorgt dat tekst en video verticaal gecentreerd staan */
    gap: 30px; /* Ruimte tussen de tekst en de video */
    padding: 30px;
  }

  .video-container {
    flex: 1; /* Neemt de helft van de ruimte in */
    order: 2; /* Verplaatst de video naar rechts */
    margin-bottom: 0; /* Verwijder de onderkant marge van de mobiele versie */
  }

  .content {
    flex: 1; /* Neemt de andere helft van de ruimte in */
    order: 1; /* Plaatst de tekst aan de linkerkant */
  }

  .content p {
    font-size: 18px; /* Iets grotere tekst op desktop leest prettiger */
  }

  /* De hover animatie uit je code heb ik behouden, 
     maar op desktop is 1.4x scale erg groot. 
     Je kunt dit eventueel aanpassen naar 1.05 voor een subtieler effect. */
  .video-container:hover {
    transform: scale(1.05);
  }

.content p {
  margin: 0;
  font-size: 16px;
}

/*FUNCTIES*/
.functies-mobile{
  max-width: 1900px;
}

/* FEATURE DING */

  .feature-section {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    padding: 80px 40px;
    gap: 40px;
  }

  .feature-section .feature-container {
    max-width: 350px;
    flex: 1;
  }

  /* ===== DESKTOP MASCOTTE AANPASSINGEN ===== */
.mascotte-container {
    max-width: 1900px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.mascotte-img {
    max-width: 1850px;           
    aspect-ratio: 20 / 9;   
    object-fit: cover;      
    border-radius: 15px;    
    margin-bottom: 30px;
    align-items: center;
}

.mascotte-title, .mascotte-text {
    max-width: 800px;
}

/*FOOTER*/
 
.custom-footer {
    display: grid;
    /* We maken 2 kolommen die precies naast elkaar starten */
    grid-template-columns: 1fr 1fr; 
    /* Kolom-gap voor ruimte tussen links en rechts */
    column-gap: 100px;
    padding: 80px 10%;
    text-align: left;
    /* Dit zorgt dat beide kolommen bovenaan op dezelfde lijn beginnen */
    align-items: start; 
  }

  /* Titels: dwing ze op de eerste rij */
  .custom-footer h2, 
  .custom-footer .contact-title {
    grid-row: 1; 
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 1.2rem;
    align-self: start;
  }

  .custom-footer h2 {
    grid-column: 1;
  }

  .custom-footer .contact-title {
    grid-column: 2;
    text-align: right;
  }

  /* Items containers: dwing ze op de tweede rij */
  .social-item, 
  .contact-item {
    grid-row: auto; /* Laat de browser ze onder de titels stapelen */
  }

  .social-item {
    grid-column: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
  }

  .contact-item {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 15px;
  }

  /* Volgorde correctie (zoals gevraagd) */
  .social-item:nth-of-type(1) { order: 1; } /* X */
  .social-item:nth-of-type(3) { order: 2; } /* Instagram */
  .social-item:nth-of-type(2) { order: 3; } /* Facebook onderaan */

  .contact-item:nth-of-type(2) { order: 1; } /* Adres bovenaan */
  .contact-item:nth-of-type(1) { order: 2; } /* Gmail */
  .contact-item:nth-of-type(3) { order: 3; } /* Telefoon */

  /* Icon & Tekst styling */
  .social-item img,
  .contact-item img {
    width: 32px;
    height: 32px;
    margin-bottom: 0;
  }

  .social-item p, 
  .contact-item p {
    font-size: 0.9rem;
    margin: 0;
  }

  .contact-item p {
    text-align: right;
  }

  .Kyan{
    display: none;
  }



}