/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Body Setup */
body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    font-family: Arial, sans-serif;
}

/* Header Setup */
header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: black;
    color: rgb(0, 255, 247);
    padding: 30px 20px;
    border-bottom: 3px solid rgb(0, 255, 247);
    box-shadow: 0 10px 20px rgba(0, 255, 247, 0.5);
}

.logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 80px;
}

#logopic {
    position: absolute;
    top: 0;
    left: 0;
    height: 80px;
    width: 200px;
}

nav {
    display: flex;
    gap: 20px;
    margin-left: auto;
}

nav a {
    color: rgb(0, 255, 247);
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    transition: 0.3s;
}

#selected{
    color: black;
    text-shadow: 
        0 0 5px rgb(0, 255, 247),
        0 0 10px rgb(0, 255, 247),
        0 0 15px rgb(0, 255, 247);
    font-weight: bold;
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s;
}

.selected2 {
    color: black;
    text-shadow: 
        0 0 5px rgb(0, 255, 247),
        0 0 10px rgb(0, 255, 247),
        0 0 15px rgb(0, 255, 247);
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover {
    text-decoration: underline;
}

/* Content Section */
#achtergrond {
    flex: 1;
    background-color: black;
    display: flex;
    align-items: center;
    flex-direction: column;
   
}

/* Main Background */
.main-background {
    flex: 1;
    background: rgba(0, 0, 0, 0.01);
    display: flex;
    align-items: center;
    color: white;
    font-size: 24px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 1;
}

/* About Me Section */
#fotocontainer {
    width: 100%;
    display: flex;
    margin-top: 3%;
}

#teamfoto {
    width: 25%;
    height: 60vh;
    border-radius: 50%;
    background: radial-gradient(circle, rgb(0, 255, 247) 0, 9%, black 99%), url('your-image.jpg');
    background-size: cover;
    background-position: center;
    transform: scaleX(-1);
    margin-left: 5%;
    margin-top: 5%;
}

#overmij {
    color: white;
    font-weight: bold;
    margin-left: 10%;
    margin-top: 5%;
    width: 100%;
    font-size: 1.2vw;
}

#titelmij {
    color: white;
    font-weight: bold;
    margin-left: 10%;
    margin-top: 10%;
    width: 100%;
    font-size: 3.2vw;
    
}

/* Footer Section */
footer {
    background: black;
    display: flex;
    justify-content: center;
    gap: 40px;
    font-weight: bold;
    color: rgb(0, 255, 247);
    text-align: center;
    padding: 20px;
}

/* Slideshow Section */
.slideshow-section {
    margin-top: 40px; /* Space above slideshow */
    padding-bottom: 100px; /* Add bottom space if needed */
    background-color: black;
}

/* Slideshow Container */
.slideshow-container {
    position: relative;
    width: 10vw;
    margin: auto;
    overflow: hidden;
}

/* Slide Images */
.mySlides {
    display: none; /* Hide slides by default */
    position: absolute;
    width: 36vw;
}

.text {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Navigation Arrows */
.prev, .next {
    position: absolute;
    top: 50%;
    padding: 16px;
    color: white;
    font-size: 24px;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    cursor: pointer;
    transition: 0.3s;
    transform: translateY(-50%);
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Slide Fade Effect */
.fade {
    animation-name: fade;
    animation-duration: 2s;
}

@keyframes fade {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Slideshow Text (for responsive design) */

#slideshowbox{
    color: white;
    margin-top: 5%;
}
/* Slideshow container */
.slideshow-container {
   
    position: relative;
    width: 35vw;
    height: 600px;
    overflow: hidden;

  }
  
  /* Hide all images by default */
  .mySlides {
    display: none;
    height: 100px;
  }
  
  /* Style for each image */
  .mySlides img {
    width: 500px;
    height: auto;
  }
  
  /* Next and previous buttons */
  .prev, .next {
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    cursor: pointer;
    border-radius: 50%;
    user-select: none;
    transform: translateY(-50%);
    z-index: 2;
  }
  
  .next {
   right: 0;
  }
  
  .prev {
    left: 0;
  }
  
  /* Dots for the slideshow */
  .dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active {
    background-color: #717171;
  }
  #slidepic{
    height: 70vh;
    width: 37vw;
    text-align: center;
  }
  #slideshowtext{
    text-align: center;
  }
  #linkbal a{
    text-decoration: underline;
    color: white;
    font-weight: bold;
    font-size: 20px;
  }
  #slidetitel{
    text-align: center;
    margin-top: 200px;
  }
  @media (max-width: 630px) {
    .text {
        font-size: 18px;
    }
    body{
        background-color: blue;
    }

    .prev, .next {
        font-size: 18px;
        padding: 10px;
    }
    .slideshow-container {
        display: flex;
        justify-content: center;
        position: relative;
        width: 65vw;
        height: 600px;
        overflow: hidden;
    
      }
      #slidepic{
        height: 70vh;
        width: 60vw;
        text-align: center;
      }
      #slideshowtext{
        text-align: center;
      }
      .mySlides {
        display: none; /* Hide slides by default */
        position: absolute;
        width: 60vw;
    }
    #overmij {
        color: white;
        font-weight: bold;
        margin-left: 10%;
        margin-top: 5%;
        width: 80vw;
        font-size: 3vw;
    }
    nav {
        display: flex;
        gap: 20px;
        margin-left: auto;
    }
    
    nav a {
        color: rgb(0, 255, 247);
        text-decoration: none;
        font-size: 13px;
        font-weight: bold;
        transition: 0.3s;
    }
    #selected{
        color: black;
        text-shadow: 
            0 0 5px rgb(0, 255, 247),
            0 0 10px rgb(0, 255, 247),
            0 0 15px rgb(0, 255, 247);
        font-weight: bold;
        text-decoration: none;
        font-size: 13px;
        transition: 0.3s;
    }
    #fotocontainer {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-top: 3%;
    }
    #teamfoto {
        width: 80vw;
        height: 60vh;
        border-radius: 50%;
        background: radial-gradient(circle, rgb(0, 255, 247) 0, 9%, black 99%), url('your-image.jpg');
        background-size: cover;
        background-position: center;
        transform: scaleX(-1);
        margin-left: 5%;
        margin-top: 5%;
    }
}
  