/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body Styling */
  body {
    font-family: "Modak", serif;
    font-weight: 400;
    font-style: normal;
    color: #01178F;
    text-align: center;
  
  }

  html, body {
    background-image: url(../images/background-1.jpg);
    background-position-y: 60px;
    background-position: cover;
    background-size: cover;
    background-repeat: repeat;
    margin: 0;
    height: 100%; 
  }

  /*h2 styling */
  h2{
   -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #FFA2B5;
    font-size: 50px;
    color: white;
    animation: fadeIn 2s ease-in-out;
    text-decoration-line: none;
   text-decoration: none;
    
  }

  /*h3 styling*/
  h3 {
    font-family: "Modak", serif;
   font-size: 30px;
   font-weight: 400;
   font-style: normal;
   color: rgba(255, 255, 255, 0.8);
   -webkit-text-stroke-width: 1px;
   -webkit-text-stroke-color: #FFA2B5;
   

  }

  .tags {
    font-family: "Modak", serif;
   font-size: 30px;
   font-weight: 400;
   color: rgba(255, 255, 255, 0.8);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #FFA2B5;
  background: rgba(165, 180, 240, 0.4);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  padding: 10px;
  border-radius: 20px;
  }
 
  /* Header & Navigation */
  header {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    box-shadow: 0 4px 6px #01178F(0, 0, 0, 0.1);
    
  }

  /*h1 style*/
  h1 {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #FFA2B5;
    font-size: 50px;
    color: white;
    animation: fadeIn 2s ease-in-out;
    border-radius: 15px;
   background: rgba(255, 255, 255, 0.8);
   border: 10px solid, rgba(255, 255, 255, 0.8);
   text-decoration-line: none;
   text-decoration: none;
  }

  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 0;
    text-align: center;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 6px #01178F(0, 0, 0, 0.1);
  }

  /*nagigatie a styling*/
  nav a {
    text-decoration: none;
    color: #5a6aa0;
    margin: 0 15px;
    font-size: 20px !important;
    transition: color 0.3s;
    font-family: "Modak", serif;
   font-size: 10px;
   font-weight: 400;
   font-style: normal;
   text-decoration-line: none;
  }

  /*hovering color*/
  nav a:hover {
    color: #b06ba3;
  }
  
  /* Hero Section */
  .hero {
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 2px 2px 6px #01178F;
  }
  
  .hero h1 {
    font-size: 3rem;
    animation: fadeIn 2s ease-in-out;
    text-decoration-line: none;
    text-decoration: none;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  /* Button styling*/
  button {
    padding: 10px 20px;
    background: #b06ba3;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
    font-family: "Modak", serif;
   font-size: 30px;
   font-weight: 400;
   font-style: normal;
   text-decoration-line: none;
   text-decoration: none;
  }

  
  button:hover {
    background: #8c5484;
  }
  
  /* Gallery Layout */
  .gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    
  }
  
  .gallery img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .gallery img:hover {
    transform: scale(1.0);
  }
  
 

  /* Contact Form */
  form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
  }
  
  form input, form textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1rem;
  }
  
  form button {
    align-self: flex-end;
  }

  h4 {
    color: #01178F;
   border-radius: 15px;
   background: rgba(255, 255, 255, 0.8);
   border: 10px solid, rgba(255, 255, 255, 0.8);
  
    font-family: "DynaPuff", system-ui;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    font-size: 18px;
  }

  img {
    border-radius: 130px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }

  /* General gallery styling */
.gallery {
  
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
}

.gallery img {
  width: 370px;
  height: auto;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Lightbox Overlay Styling */
.lightbox {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Close Button */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: #FFA2B5;
}

/* Show Lightbox using :target */
.lightbox:target {
  display: flex; /* Show the lightbox */
}

