
  .custom-red {
    background-color: #f00;
    border-color: #f00;
    color: white;
  }

  .custom-red:hover {
    background-color: #cc0000;
    border-color: #cc0000;
  }
  .spacer {
    display: block;
    height: 6.5em; /* height of one line break */
    background-color: black;
  }

  .gamebox:hover .custom {
    filter: blur(5px);
    transition: filter 0.5s ease;
  }
  
  .overlay {
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    border-radius: 25px;
  }
  
  .gamebox:hover .overlay {
    visibility: visible;
    opacity: 1;
  }
  
  .category-label {
    background-color: #ee0029;
    color: white;
    font-size: 0.9rem;
    font-weight: bold;
  }
  
  .custom {
    transition: filter 0.5s ease;
    filter: brightness(1);
    padding: .25rem;
    background-color: #e8e8e8;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    max-width: 100%;
    height: auto;
  }
  
  .card-body {
    background-color: transparent;
  }
  
  .logo,
  .canvasoff {
    width: 150px;
    height: 40px;
    transform: scale(1);
    transition: 0.3s;
  }
  
  .logo:hover {
    transform: scale(1.1);
    transition: 0.3s;
  }
  
  
  .ust {
    margin-top: 75px;
  }
  
  



















  /* Icon Styles */

  .icon {
    transition: 0.4s;
    transform: scale(1);
  }
  
  .icon:hover {
    transition: 0.4s;
    font-weight: bold;
    transform: scale(1.1);
    margin-top: -20px;
    cursor: pointer;
  }























  /* Media Styles */

  @media (max-width: 1200px) {
    .carouselimage {
      width: 100%;
      height: auto;
    }
    .ada,
    .ada2,
    .ada3,
    .gic,
    .snake {
      display: none;
    }
    .ekip {
      width: 100%;
      height: auto;
    }
    .privacy {
      font-size: 14px;
    }
    .formsosyal {
      height: 120vw;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .about {
      height: 850px;
    }
    .ekiptext {
      text-align: center;
    }
    .footertext {
      font-size: 15px;
      text-align: center;
    }
    .textsol {
      text-align: center;
      font-size: 12px;
    }
    
  }




































/* Slider Styles */
.swiper-container {
  width: 100vw; 
  height: 40vw; /* Adjust height for better responsiveness */
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  margin-left: auto; 
  margin-right: auto;
  /* Removing or adjusting clip-path to prevent clipping of navigation buttons */
  clip-path: none; /* Disable clipping */
  z-index: 1; /* Ensure it is not overlapped by other content */
}

.swiper-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.5s ease-in-out;
}

.swiper-slide {
  width: calc(100% / 4); /* 4 slides across */
  height: auto; /* Let height adjust with content */
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Style for the active slide */
.swiper-slide-active {
  transform: scale(1.2);  /* Enlarge active slide */
  z-index: 10; /* Bring it to the front */
  width: calc(100% / 3); /* 4 slides across */
  height: auto; /* Let height adjust with content */
}

.swiper-pagination {
  position: absolute;
  width: 100%;
  height: 3vw;
  text-align: center;
  align-content: center;
  align-items: center;
  top: 90%; /* Adjust the position so it's not overlapping buttons */
  z-index: 5; /* Ensure pagination is behind buttons */
}

.swiper-pagination-bullet {
  background-color: #666;
}

.swiper-pagination-bullet-active {
  background-color: #f00;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Use contain for image scaling */
  transition: opacity 0.5s ease-in-out;
}

.swiper-slide-active img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Use contain for image scaling */
  transition: opacity 0.5s ease-in-out;
}

/* Style for the next/previous buttons */
.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%); /* Center vertically */
  background-color: rgba(0, 0, 0, 0.5); /* Add background color */
  color: white; /* Button color */
  border-radius: 50%; /* Round shape */
  padding: 10px;
  z-index: 10; /* Ensure it's in front of other elements */
  cursor: pointer; /* Make it interactable */
}

.swiper-button-next {
  right: 2.5vw; /* Position on the right side */
}

.swiper-button-prev {
  left: 2.5vw; /* Position on the left side */
}

/* Optional: Make the buttons bigger for easier click */
.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 30px;
  font-weight: bold;
}






















/* Navbar */

.navbar {
  background-color: black;
  width: 100%;
  position: fixed;
}

.offcanvas {
  max-width: 80% !important;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none !important;
}

.navbar-toggler {
  border: none !important;
  outline: none !important;
}

#offcanvasDarkNavbar {
  background-color: #000000;
}

.navbar-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: calc(20vw + 100px);
  width: 100%;
  gap: 40vw;
}


.nav-link.activenav /* Highlight the active page */
.nav-link.active {
  color: rgb(255, 255, 255) !important;
  font-weight: bold;
}
























/* Form Styles */
.form-container {
  position: relative;
  width: 100%;
}

.formsosyal {
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Ensure all elements with text-white class have white text */
[class*="text-white"] {
  color: white;
}

/* Remove bullet points for .red-white class items */
ul.text-white li.red-white {
  list-style: none; /* Removes bullets */
  margin-left: 0;
  padding-left: 0;
}

/* Styling for red-white class links */
[class*="red-white"] {
  color: rgb(255, 255, 255) !important;
  font-weight: bold;
  text-decoration: solid;
  text-align: left;
}

/* Ensure HTML and Body take full height */
html, body {
  height: 100%;
  margin: 0;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1; /* Pushes footer down if content is short */
}


.ada, .ada2, .ada3 {
  background-image: url('images/wesitesi/team/ada.png');
  background-size: cover; /* Ensures the image fills the div */
  background-position: center;
  width: 600px;  /* Use viewport width to ensure it takes full width */
  height: 400px; /* Use viewport height to ensure it takes full height */
  position: absolute;
  z-index: -1;
}

select {
  background: black; /* Sets the background to black */
  color: #b86161; /* Sets the text color to gray */
  font-weight: bold; /* Makes the text bold */
  border: none; /* Removes the border */
  appearance: none; /* Removes default browser styles */
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  width: 200px;
  position: relative;
}

select option {
  background: black; /* Sets background for each option */
  color: #b86161; /* Sets text color for each option */
}

select::after {
  content: "▼"; /* Unicode for dropdown arrow */
  position: absolute;
  right: 10px;
  top: 50%;
  color: #b86161; /* Sets the arrow color to gray */
  pointer-events: none;
}

.about, .works, .fuar {
  background-color: #000000;
}






















/* Style for Footer */

footer.custom-footer {
  background-color: black;
  color: white;
  padding: 40px 20px;
  text-align: center;
  margin-top: auto;
}

.footertext {
  text-decoration: none;
  color: white;
  opacity: 0.8;
  transition: 0.3s ease;
  margin: 0 10px;
  font-size: 2.5rem;
}

.footertext:hover {
  opacity: 1;
  transform: scale(1.1);
}

footer .bi {
  font-size: 1.6rem;
  transition: 0.3s ease;
}

footer .bi:hover {
  transform: scale(1.2);
}


















/* Style for Fuar */
.napan-video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
}

.napan-video-bg iframe {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  pointer-events: none;
}

.napan-blur-effect {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
}

.napan-interactive-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: rgb(255, 255, 255);
  padding: 20px;
  text-shadow: 3px 3px 4px rgba(0, 0, 0, 0.8);
}

.napan-interactive-content p {
  font-size: 1.5em;
  line-height: 1.6;
  max-width: 600px;
  margin: 10px auto;
}

.napan-join-action {
  padding: 10px 30px;
  background-color: red;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  white-space: nowrap;
}






















/* Style for #zeplife */
#zeplife {
  width: 100vw;
  height: 80vw;
  max-width: 2000px;
  max-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  /*background-color: rgb(60, 184, 201); /* FOR TESTING */
  margin: 40px 0;
}

/* Updated for swiper-container */
#zeplife .swiper-container {
  width: 100%;
  height: 40vw;
  padding-top: 20px;
  padding-bottom: 40px;
  /*background-color: rgb(24, 100, 110); /* FOR TESTING */
  box-sizing: border-box;
}

/* Slide style */
#zeplife .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30vw;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  /*background-color: rgb(6, 43, 48); /* FOR TESTING */
}

/* Base style for zeplife-slide */
.zeplife-slide {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

/* Title, description, and labels on the slide */
.zeplife-title,
.zeplife-description,
.zeplife-labels {
  position: absolute;
  color: white;
  font-weight: bold;
  padding: 5px 10px;
  text-shadow: 1px 1px 2px black;
  z-index: 10;
  transition: all 0.3s ease-in-out;
}

.zeplife-title {
  bottom: 70%;
  font-size: 1.6vw; /* 1.5em Adjust font size relative to zoom */
}

.zeplife-description {
  color: rgb(216, 216, 216);

  bottom: 50%;
  font-size: 0.7vw; /* 0.8em Adjust font size relative to zoom */
}

.zeplife-labels {
  bottom: 0;
  left: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 1vw;
  list-style: none;
  padding: 0.5vw 1vw;
  margin: 0;
  font-size: 0.9vw; /*0.9em Adjust font size relative to zoom */
  background: transparent;
  border-radius: 6px;
}

@media (orientation: portrait) {

  #zeplife {
    width: 90vw;
    height: 72vw;
    max-height: none;
    margin-left: 5vw;
  }

  #zeplife .swiper-container {
    height: 100%;
    padding: 0;
  }

  #zeplife .swiper-slide {
    height: 100%;
  }

  /* Fix text scaling (use vh instead of vw) */
  .zeplife-title {
    font-size: 3.2vw;
  }

  .zeplife-description {
    font-size: 1.4vw;
  }

  .zeplife-labels {
    font-size: 1.8vw;
    gap: 0.5vh;
    padding: 0.5vh;
  }
}


















/* Style for the zoom overlay */
#zoom-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
}

#zoom-content {
  position: relative;
  z-index: 9999;
  width: 90vw; /* Adjust the width for a reasonable zoom size */
  max-height: 100vh; /* Prevent zoomed slide from overflowing */
  overflow: hidden; /* Prevent scrolling inside the zoomed container */
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5); /* Adds a shadow for the zoom effect */
  background-color: #fff; /* Adds a background */
}

#zoom-close {
  position: fixed;
  top: 20px;
  right: 30px;
  z-index: 10000;
  font-size: 40px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.zoom-slide {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 10;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  
  width: 90vw;
  max-height: 20vw;
  padding: 20vw;
}
