/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Spartan", sans-serif;
  color: white;
  background-color: #000;
  overflow-x: hidden;
}

/* HERO SECTION */
.hero-section {
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 600px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* NAVIGATION */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background-color: transparent;
  position: relative;
  z-index: 10;
}

.logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.nav-links li a:hover {
  color: #f0c040;
}

.login-btn {
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 12px 20px;
  border: 2px solid white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background-color: white;
  color: black;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
}

/* HERO TEXT */
.hero-text {
  position: absolute;
  bottom: 80px;
  left: 60px;
  max-width: 600px;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  z-index: 5;
}

.hero-text h1 {
  font-size: 48px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
}

/* HAKKINDA SECTION */
.hakkında {
  background-color: white;
  color: #222;
  padding: 80px 20px;
}

.hakkında .container {
  max-width: 1000px;
  margin-left: 40px;
  align-items: left;
}

.hakkında h2 {
  font-size: 36px;
  margin-bottom: 30px;
  font-weight: 600;
  text-align: left;
  color: #333;
}

.hakkında p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
}

/* FOTOĞRAF SLIDER */
.photo-slider {
  background-color: #f8f9fa;
  padding: 80px 30px;
  color: #333;
}

.photo-slider h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 600;
  color: #333;
}

.slider-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider {
  display: flex;
  gap: 20px;
  padding: 10px 20px;
  width: max-content;
}

.slider img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slider img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

/* İLETİŞİM */
.iletisim {
  background-color: #1a1a1a;
  color: white;
  padding: 80px 20px;
}

.iletisim-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.iletisim-content h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 40px;
}

.iletisim-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  opacity: 0.9;
}

/* === MOBILE STYLES === */
@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
    flex-wrap: nowrap;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    gap: 0;
    padding: 20px;
    border-radius: 0 0 15px 15px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    font-size: 18px;
    padding: 15px 10px;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .login-btn {
    padding: 10px 15px;
    font-size: 14px;
  }

  .hero-section {
    height: 100vh;
    min-height: 500px;
  }

  .hero-text {
    position: absolute;
    bottom: 60px;
    left: 20px;
    right: 20px;
    max-width: none;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 28px;
    letter-spacing: 1px;
    margin-bottom: 15px;
  }

  .hero-text p {
    font-size: 16px;
    line-height: 1.5;
  }

  .logo {
    width: 60px;
    height: 60px;
  }

  .hakkında,
  .photo-slider,
  .iletisim {
    padding: 50px 20px;
  }

  .hakkında h2,
  .photo-slider h2,
  .iletisim-content h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .hakkında p {
    font-size: 16px;
    text-align: left;
  }

  .slider-container {
    margin: 0 -20px;
    padding: 0 20px;
  }

  .slider {
    padding: 10px 0;
    gap: 15px;
  }

  .slider img {
    width: 280px;
    height: 180px;
    border-radius: 12px;
  }

  .iletisim-content p {
    font-size: 15px;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 24px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .hakkında h2,
  .photo-slider h2,
  .iletisim-content h2 {
    font-size: 24px;
  }

  .hakkında p {
    font-size: 15px;
  }

  .slider img {
    width: 250px;
    height: 160px;
  }

  .navbar {
    padding: 12px 15px;
  }

  .logo {
    width: 50px;
    height: 50px;
  }
}