* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
  font-family: "Lato TR", sans-serif;
  font-family: "Lato TR Hairline", sans-serif;
  font-family: "Lato TR Light", sans-serif;
  font-family: "Lato TR Black", sans-serif;
}
header {
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.7) 63.82%
  );
  padding: 15px 0;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

header nav ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
  font-family: Lato TR;
  font-size: 24px;
  line-height: 28.8px;
  letter-spacing: -0.02em;
  width: 100%;
}

.logo {
  flex: 1;
  text-align: left;
}

.logo img {
  height: 40px;
}

.menu {
  display: flex;
  align-items: center;
}

.menu li {
  margin-left: 50px;
}

.menu ul li a {
  color: #3f74b4 !important;
  font-weight: 300 !important;
}
header nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-family: "Lato TR";
  font-weight: 700;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px 0;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

@media screen and (max-width: 875px) {
  header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .hamburger {
    display: block;
    order: 2;
    width: auto;
  }

  .logo {
    order: 1;
  }

  .menu {
    display: block;
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: #3f74b4;
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
  }

  .menu.active {
    right: 0;
  }

  .menu ul {
    flex-direction: column;
  }

  .menu li {
    margin: 15px 0;
    text-align: left;
  }
  .menu ul li a {
    color: #ffffff !important;
  }
}

.slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  color: white;
}

.slide-content-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.slide-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.slide-content p {
  font-size: 1.125rem;
  max-width: 600px;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 100;
}

.slider-nav button {
  background: rgba(255, 255, 255, 0.5);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.slider-container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .slider-nav {
    padding: 0 1rem;
  }

  .slider-nav button {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 480px) {
  .slider-nav {
    padding: 0 0.5rem;
  }

  .slider-nav button {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
}

.slider-wrapper {
  display: flex;
  /* width: 900%;  */
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  width: 11.11%; /* 100% / 5 slide */
  height: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-nav button:hover {
  background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .slide-content h2 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1rem;
  }
}
.project-label {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.395);
  color: white;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .slide img {
    width: 100%;
    height: full;
    aspect-ratio: 9 / 16;
    object-fit: cover;
  }
}
