/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background: #f9f9f9;
    color: #333;
    scroll-behavior: smooth;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
  }
  
  header .logo {
    font-size: 1.8em;
    font-weight: bold;
  }
  
  header .nav-links a {
    text-decoration: none;
    color: #fff;
    margin: 0 15px;
    position: relative;
    font-size: 1em;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  header .nav-links a:hover {
    color: #f39c12;
  }
  /* Hamburger Button Style */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: #ffcc00;
  font-size: 2em;
  cursor: pointer;
}

/* Navigation for desktop */
.nav-links {
  display: flex;
  gap: 20px;
}

/* Navigation for mobile */
.nav-links.open {
  display: block;
  position: absolute;
  top: 60px;
  right: 0;
  background-color: #111;
  width: 100%;
  text-align: center;
  padding: 10px 0;
}

.nav-links a {
  display: block;
  padding: 10px;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
  }

  .hamburger {
    display: block;
  }
}


/* Customer Reviews Section */
.reviews {
  background: #fff; 
  padding: 60px 0;
  text-align: center;
}

.reviews h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #333;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

/* Review list and individual reviews */
.review-list {
  display: flex;
  gap: 30px;
  overflow-x: auto; /* Horizontal scroll */
  padding: 0 20px;
  scroll-snap-type: x mandatory; /* Snap effect on scroll */
  justify-content: flex-start;
}

.review {
  background-color: white;
  padding: 30px;
  min-width: 300px; /* Minimum width for each review */
  max-width: 320px; /* Max width for each review */
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  flex-shrink: 0; /* Prevent shrinking of review boxes */
  scroll-snap-align: start; /* Align items at the start */
}

.review p {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.5;
}

.review span {
  font-size: 1.1em;
  color: #333;
  font-weight: bold;
}

/* Image list and individual images */
.image-list {
  display: flex;
  gap: 30px;
  overflow-x: auto; /* Horizontal scroll */
  padding: 0 20px;
  scroll-snap-type: x mandatory; /* Snap effect on scroll */
  margin-top: 50px;
  justify-content: flex-start;
}

.image {
  width: 300px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex-shrink: 0; /* Prevent shrinking of image containers */
  scroll-snap-align: start; /* Align items at the start */
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .reviews h2 {
      font-size: 2em; /* Adjust heading size for mobile */
      margin-bottom: 20px;
  }

  .review-list, .image-list {
      gap: 15px;
  }

  .review, .image {
      min-width: 250px; /* Adjust size for mobile */
      max-width: 280px; /* Adjust size for mobile */
  }

  .review p {
      font-size: 1em; /* Adjust text size for mobile */
  }

  .review span {
      font-size: 1em; /* Adjust name size for mobile */
  }

  .image {
      width: 250px; /* Adjust image size for mobile */
      height: 170px; /* Adjust image height for mobile */
  }
}
  

#map {
  padding: 20px;
  text-align: center;
  background: #222;
  color: #fff;
}

#map h2 {
  margin-bottom: 10px;
  font-size: 1.8em;
  color: #ffcc00;
}

.map-container {
  margin: 0 auto;
  max-width: 800px;
  border: 5px solid #ffcc00;
  border-radius: 10px;
  overflow: hidden;
}


  
  #hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  #bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    filter: brightness(60%);
  }
  
  .hero-overlay {
    text-align: center;
    color: #fff;
    animation: fadeIn 2s ease-in-out;
  }
  
  .hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  }
  
  .hero-overlay p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .hero-btn {
    padding: 12px 30px;
    background: linear-gradient(45deg, #f39c12, #e74c3c);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background 0.3s ease;
    animation: bounce 2s infinite alternate;
  }
  
  .hero-btn:hover {
    background: linear-gradient(45deg, #e74c3c, #f39c12);
  }
  
  /* Animasyonlar */
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes bounce {
    from {
      transform: translateY(0);
    }
    to {
      transform: translateY(-10px);
    }
  }
  
  /* About Section */
  #about {
    padding: 80px 10%;
    text-align: center;
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  }
  
  #about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #f39c12;
  }
  
  #about p {
    font-size: 1.1rem;
    line-height: 1.8;
  }
  
  /* Menu Section */
  #menu {
    padding: 80px 10%;
    text-align: center;
    background: #f7f7f7;
  }
  
  #menu h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #e74c3c;
  }
  
  #menu p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .menu-link {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, #3498db, #9b59b6);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: background 0.3s ease;
  }
  
  .menu-link:hover {
    background: linear-gradient(45deg, #9b59b6, #3498db);
  }
  
  /* Gallery Section */
  #gallery {
    padding: 80px 10%;
    text-align: center;
    background: #fff;
  }
  
  #gallery h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #3498db;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }
  
  .gallery-grid img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);
  }
  
  /* Contact Section */
  #contact {
    padding: 80px 10%;
    background: #f9f9f9;
    text-align: center;
  }
  
  #contact h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2ecc71;
  }
  
  #contact p {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  #contact a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
  }
  
  #contact a:hover {
    color: #f39c12;
  }
  
  /* Footer */
  footer {
    padding: 20px;
    text-align: center;
    background: #333;
    color: #fff;
    a{
      text-decoration-line: none;
      color: antiquewhite;
  }
  }
  