* {
    scroll-behavior: smooth;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    text-align: center;
    background: #203A58;
    cursor: url('path/to/ster.svg'), auto;

}

header {
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}


header h1 {
    margin: 0;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: #D4AF37;
    text-decoration: none;
    font-size: 40px;
}


p {
    color: #fff;
}

h5 {
    bottom: 2px;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh; /* Zorgt voor volledige schermhoogte */
    border: 5px solid #D4AF37; /* Border aan alle kanten */
    box-sizing: border-box; /* Zorgt dat de border deel uitmaakt van de totale grootte */
}
/* Base styles for the lines */
.text-line1,
.text-line2 {
margin: 20px 0;
}

/* Animation for text */
.text-line1 span,
.text-line2 span {
opacity: 0;
animation: fadeIn 0.1s ease forwards;
}

/* First line animation */
.text-line1 span {
animation-delay: calc(var(--index) * 0.1s);
}

/* Second line animation - starts after first line completes */
.text-line2 span {
animation-delay: calc((var(--index) * 0.05s) + 1s); /* Changed from 0.1s to 0.05s */
}

/* Underline effect for first line */
.text-line2 {
position: relative;
}

.text-line2::after {
content: '';
position: absolute;
left: 0;
bottom: -5px;
width: 0;
height: 2px;
background-color: #D4AF37;
animation: growLine 1s ease forwards;
animation-delay: 1s;
}

/* Text fade in animation */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

/* Line growing animation */
@keyframes growLine {
from {
width: 0;
}
to {
width: 100%;
}
}

.mouse-glow {
position: fixed;
width: 100px; /* Grootte van de gloed */
height: 100px;
border-radius: 50%;
pointer-events: none; /* Zorgt ervoor dat het geen interacties blokkeert */
transform: translate(-40%, -40%);
mix-blend-mode: screen; /* Zorgt voor een mooi lichteffect */
transition: transform 0.05s linear; /* Smooth effect */
background: radial-gradient(circle, rgba(255, 255, 0, 0.8) 0%, rgba(255, 255, 0, 0) 70%);
filter: blur(20px);
}

.card-container1 {
    display: flex;
    justify-content: center; /* Zet de kaarten in het midden */
    gap: 20px; /* Ruimte tussen de kaarten */
    flex-wrap: wrap; /* Laat kaarten naar een nieuwe regel gaan op kleine schermen */
    padding: 20px;
}
.card1 {
    width: 320px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 0px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;

    min-height: 300px; /* Verhoog de minimale hoogte */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card1:hover {
    transform: translateY(-8px) rotateX(5deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-image1 {
    height: 200px;
    width: 100%;
    overflow: hidden;
    position: relative;
}


.card-image1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0.9;
}

/* Afbeelding zoomt in en wordt helderder bij hover */
.card1:hover .card-image1 img {
    transform: scale(1.15);
    opacity: 1;
}



.card-content1 {
   
    flex-grow: 1; /* Zorgt ervoor dat de content de beschikbare ruimte gebruikt */
    padding: 30px; /* Voeg extra padding toe om het wit groter te maken */
}

.card-content1 h2 {
    font-size: 1.3em;
    color: #333;
    margin-bottom: 10px;
}

.card-content1 p {
    font-size: 1em;
    color: #666;
    margin-bottom: 15px;
}


    
  
  .card {
      width: 320px;
      background-color: white;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      padding-bottom: 20px;
      transition: transform 0.5s ease, box-shadow 0.5s ease;
  }

  .card-container {
    display: flex;
    justify-content: center; /* Zet de kaarten in het midden */
    gap: 20px; /* Ruimte tussen de kaarten */
    flex-wrap: wrap; /* Laat kaarten naar een nieuwe regel gaan op kleine schermen */
    padding: 20px;
}

  
  /* Kaart zweeft iets omhoog met een lichte draai */
  .card:hover {
      transform: translateY(-8px) rotateX(5deg);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .card-image {
      width: 100%;
      height: 400px;
      overflow: hidden;
      position: relative;
  }
  
  
  .card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease, opacity 0.5s ease;
      opacity: 0.9;
  }
  
  /* Afbeelding zoomt in en wordt helderder bij hover */
  .card:hover .card-image img {
      transform: scale(1.15);
      opacity: 1;
  }
  
  .card-content {
      padding: 20px;
  }
  
  .card-content h2 {
      font-size: 1.3em;
      color: #333;
      margin-bottom: 10px;
  }
  
  .card-content p {
      font-size: 1em;
      color: #666;
      margin-bottom: 15px;
  }
  
 /* Base responsive styles for the design page */

/* General responsive adjustments */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

/* Cards layout for larger screens */
.card-container, .card-container1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.card, .card1 {
    width: 30%;
    min-width: 300px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card:hover, .card1:hover {
    transform: translateY(-10px);
}

.card-image, .card-image1 {
    width: 100%;
    overflow: hidden;
}

.card-content, .card-content1 {
    padding: 15px;
}

.card-content h2, .card-content1 h2 {
    font-size: 1.5rem;
    margin-top: 0;
}

.card-content p, .card-content1 p {
    font-size: 1rem;
}

/* Media query for tablets */
@media screen and (max-width: 992px) {
    .card, .card1 {
        width: 45%;
        min-width: 250px;
    }
    
    header svg {
        width: 150px;
        height: 150px;
    }
}

/* Media query for mobile phones */
@media screen and (max-width: 768px) {
    .card-container, .card-container1 {
        flex-direction: column;
        align-items: center;
    }
    
    .card, .card1 {
        width: 90%;
        min-width: auto;
    }
    
    header svg {
        width: 120px;
        height: 120px;
    }
    
    .text-line1, .text-line2 {
        font-size: 1.5rem;
    }
    
    /* Add mobile navigation */
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        color: #D4AF37;
        font-size: 2rem;
        cursor: pointer;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 100;
    }
}

/* Very small screens adjustments */
@media screen and (max-width: 480px) {
    .card, .card1 {
        width: 95%;
    }
    
    .card-content h2, .card-content1 h2 {
        font-size: 1.2rem;
    }
    
    .card-content p, .card-content1 p {
        font-size: 0.9rem;
    }
    
    header svg {
        width: 100px;
        height: 100px;
    }
    html, body {
        border-width: 3px;
    }
}

/* Disable mouse glow on touch devices */
@media (hover: none) {
    .mouse-glow {
        display: none;
    }
}

/* Animation-related styles (preserved from original) */
.mouse-glow {
    position: fixed;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-40%, -40%);
    mix-blend-mode: screen;
    transition: transform 0.05s linear;
    background: radial-gradient(circle, rgba(255, 255, 0, 0.8) 0%, rgba(255, 255, 0, 0) 70%);
    filter: blur(20px);
}
  