.column{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    
}
.column-content{
    width: 100%;
}
.image-container{
    width: 100%;
    height: 100%;
}   
.video-container{
    width: 100%;
    height: 100%;
}
.content-text{
    width: 100%;
    height: 100%;
}  
body.custom-background {
    background-image: url("https://usercontent.one/wp/www.nasmak.nl/wp-content/uploads/2023/11/background7.png?media=1663692849");
    background-position: left top;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Courier Prime', monospace, 'PT Sans', sans-serif;
  }

.social-media-section{
    text-align: center;
}

  
  /* List styling */
  .selector-menu {
    
    position: relative;            /* Makes sure the list is above the box */
    z-index: 2;                    /* Ensures list appears above the square */
    list-style: none;              /* Remove bullet points */
    padding: 0;
    text-align: center;            /* Centers the text */
    font-size: 18px;
  }
  
  /* List item and link styles */
  .selector-menu li {
    margin: 30px 0;  
    display: flex;
    flex-direction: column;              /* Spacing between list items */
  }
  
  .selector-menu a {
    color: #333;                   /* Set text color */
    text-decoration: none;         /* Remove underlines */
  }
  
  .selector-menu a:hover {
    color: #f5e4b4;                /* Change link color on hover */
    background-color: #333;        /* Add background color on hover */
    padding: 5px 10px;             /* Add padding to links on hover */
    border-radius: 5px;            /* Round the corners on hover */
  }
  /* --------------------------------------------------class and style overhaul------------------------------------- */
  /* column content*/
  .column-dn{
    max-width: 1000px;
    background-color: #eae3b4;
    padding: 10px;
    border-radius: 10px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #a71625;
  }
  .column-odn{
    background-color: #eae3b4;
    padding: 10px;
    border-radius: 10px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #a71625;
    float: left;
    width: 33.33%;
  }
  .text-odn{
    font-family: 'PT Sans', sans-serif;
    font-size: 30px;
    font-weight: bold;
    color: #a71625;
    background-color: #eae3b4;
    padding: 10px;
    border-radius: 10px;
  }
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }

  .title-dnred{
    font-family: 'Courier Prime', monospace;
    font-size: 60px;
    font-weight: bold;
    color: #a71625;
  }
  .title-dnyellow{
    font-family: 'Courier Prime', monospace;
    font-size: 60px;
    font-weight: bold;
    color: #ffeb33;
  }
  /* --------------------------------------------------Title text dn------------------------------------ */
  .title-dnmred{
    font-family: 'Courier Prime';
    font-size: 90px;
    font-weight: bold;
    color: #a71625;
  }
  .title-dnmyellow{
    font-family: 'Courier Prime', monospace;
    font-size: 90px;
    font-weight: bold;
    color: #ffeb33;
  }
  .nav-dn{
    font-size: 18px;
    font-weight: bold;
    color: #a71625;
  }

/* Base styles for all content classes */
.dn-image, .dn-video, .dn-text {
    width: 100%;
    margin: 20px 0;
    transition: all 0.3s ease; /* Smooth transitions when resizing */
}

/* Image styles */
.dn-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    border: 2px solid #a71625;
}

/* Video container */
.dn-video {
    position: relative;
    padding-bottom: 56.25%;
}

.dn-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    border: 2px solid #a71625;
}

/* Text content */
.dn-text {
    font-family: 'PT Sans', monospace;
    font-size: 30px;
    line-height: 1.6;
    text-align: left;
    color: #a71625;
    padding: 30px 60px;
    margin: 30px 40px;
    background-color: rgba(234, 227, 180, 0.5);
    border-radius: 5px;
    max-width: 1200px;
}

/* --------------------------------------------------media queries------------------------------------- */

/* Medium screens (tablet) */
@media screen and (max-width: 1199px) and (min-width: 768px) {
    .dn-text {
        padding: 20px 40px;
        margin: 20px 30px;
        font-size: 20px;
    }
}

/* Small screens (mobile) */
@media screen and (max-width: 767px) {
    .dn-text {
        padding: 15px 20px;
        margin: 15px 20px;
        font-size: 18px;
    }
}
/* --------------------------------------------------gimmick button------------------------------------- */
.button-dn{
  background-color: #a71625;
  color: #eae3b4;
  font-size: 40px;
  font-weight: bold;
  border-radius: 60px;
  border: 2px solid #666666;
}
/* --------------------------------------------------keyboard container------------------------------------- */
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(50px, 80px)); /* Fixed size columns */
    gap: 8px;
    width: fit-content; /* Only take up as much space as needed */
    margin: 20px auto;
    justify-content: center;
}

.soundpad {
    width: 100%;
    aspect-ratio: 1;
    background-color: #a71625;
    border-radius: 15px;
    border: 2px solid #ffeb33;
    cursor: pointer;
    transition: all 0.3s ease;
}

.soundpad:hover {
    background-color: #ffeb33;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.soundpad.active {
    transform: scale(0.95);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);  
    background-color:#ffeb33;
    transition: transform 0.2s;
 
}

/* --------------------------------------------------Slider------------------------------------- */
.background {
  width: 100%; 
  height: 100%; 
  position: relative; 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center; 
}


/* Main container for the slider */
.slider-container {
  position: relative; 
  width: 60%; 
  max-width: 800px; 
  overflow: hidden; 
  border-radius: 10px; /* Rounds the corners of the slider */
}

/* Flexbox container that holds all the slides */
.slider {
  display: flex; /* Enables flexbox layout to line up slides horizontally */
  transition: transform 0.4s ease-in-out; /* Smooth transition when sliding between images */
}

/* Each individual slide - takes up full width of the container */
.slide {
  min-width: 100%; /* Each slide takes up 100% of the slider container's width */
  height: 450px; /* Fixed height for each slide */
  transition: transform 0.5s ease-in-out; /* Smooth transition when slides are changed */
}

/* Ensures that images fill the slide area while maintaining aspect ratio */
.slide img {
  width: 100%; /* Image width matches the slide width */
  height: 100%; /* Image height matches the slide height */
  object-fit: contain; /* Images are scaled to cover the entire slide, cropping if necessary */
  border-radius: 10px; /* Rounds the corners of the images to match the slider */
  cursor: pointer;
}

/* Common styling for both previous and next navigation buttons */
.prev, .next {
  position: absolute; /* Absolute positioning within the slider container */
  top: 50%; /* Centers the button vertically */
  transform: translateY(-50%); /* Offsets the button position by half its height */
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
  color: white; /* White color for the arrow icons */
  border: none; /* Removes default button borders */
  width: 40px; /* Fixed width for the buttons */
  height: 40px; /* Fixed height for the buttons */
  cursor: pointer; /* Changes the cursor to pointer on hover */
  z-index: 10; /* Ensures buttons appear above the slider content */
  border-radius: 50%; /* Makes the buttons round */
  transition: background-color 0.3s ease; /* Smooth transition for background color on hover */
  display: flex; /* Enables flexbox for centering the arrow inside the button */
  justify-content: center; /* Centers arrow horizontally */
  align-items: center; /* Centers arrow vertically */
  padding: 0; /* Removes any default padding */
}

/* Positioning the previous button to the left */
.prev {
  left: 10px; /* Positions the button 10px from the left edge */
}

/* Positioning the next button to the right */
.next {
  right: 10px; /* Positions the button 10px from the right edge */
}

/* Hover effect for navigation buttons */
.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8); /* Darkens the button background on hover */
}

/* Container for the dot indicators below the slider */
.dots-container {
  margin-top: 20px; /* Space above the dots */
  display: flex; /* Enables flexbox layout for horizontal alignment */
  justify-content: center; /* Centers the dots horizontally */
  align-items: center; /* Centers the dots vertically */
}

/* Common styling for each individual dot */
.dot {
  height: 15px; /* Fixed height for the dots */
  width: 15px; /* Fixed width for the dots */
  margin: 0 5px; /* Spacing between the dots */
  background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent white background */
  border-radius: 50%; /* Makes the dots round */
  display: inline-block; /* Ensures dots are inline */
  cursor: pointer; /* Changes cursor to pointer on hover */
  transition: background-color 0.3s ease; /* Smooth transition for background color on hover */
}

/* Styling for the active dot - indicates the current slide */
.dot.active {
  background-color: rgba(255, 255, 255, 1); /* Solid white background for the active dot */
}



/* Mobile adjustments */
@media screen and (max-width: 600px) {
    .grid-container {
        grid-template-columns: repeat(3, minmax(40px, 60px)); /* Smaller on mobile */
        gap: 6px;
    }
    
    .rounded-square {
        border-radius: 10px;
        border-width: 1px;
    }
}

/* Modal Image */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.image-modal-content {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  margin: auto;
  display: block;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}