/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Roboto:wght@400;500;700&display=swap');

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.5;
}
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Taşmayı engeller */
}

body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  background-color: #fdfdfd;
}

header {
  background-color: #1e1e1e;
  color: white;
  padding: 20px 0;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}


nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}


}

.hero-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  padding: 10px 25px;
  background-color: #ff6b6b;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #ff4b4b;
}

.menu {
  padding: 60px 20px;
  text-align: center;
}

.menu-items {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.menu .item {
  flex: 1 1 250px;
  max-width: 250px;
  background: #fff;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-radius: 15px;
}

.menu .item img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.about {
  padding: 60px 20px;
  background-color: #f4f4f4;
  text-align: center;
}

footer {
  background-color: #ffffff;
  color: white;
  text-align: center;
  padding: 15px;
}



/* Temel stiller */
header {
  background-color: #333;
  color: white;
  padding: 15px 0;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  flex-wrap: wrap;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
  padding: 0;
  margin: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Hamburger buton */
.menu-toggle {
  font-size: 26px;
  background: none;
  border: none;
  color: white;
  display: none;
  cursor: pointer;
}

/* Mobil görünüm */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    width: 100%;
  }

  nav ul {
    flex-direction: column;
    display: none; /* Başta gizli */
    width: 100%;
    background-color: #444;
    margin-top: 10px;
  }

  nav ul.show {
    display: flex;
  }

  nav li {
    padding: 10px;
    border-top: 1px solid #555;
    text-align: center;
  }
}






/* Header ve nav arka planı */
header {
  background-color:#14352c; /* Koyu yeşil */
  color: white;
  padding: 15px 0;
}

/* Menü bağlantıları */
nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s, background 0.3s;
  padding: 8px 15px;
  border-radius: 8px;
}

/* Hover efekti */
nav a:hover {
  background-color: #66bb6a; /* Açık yeşil arka plan */
  color: #fff;
}

/* Mobil menü arka planı */
@media (max-width: 768px) {
  nav ul {
    background-color: #388e3c; /* Mobilde biraz farklı bir yeşil tonu */
  }

  nav li {
    border-top: 1px solid #4caf50;
  }
}










 

.menu {
  padding: 40px;
  background-color: #fff8f0;
  text-align: center;
}

.menu h2 {
  font-size: 32px;
  margin-bottom: 30px;
  animation: fadeInDown 1s ease;
}

.menu-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.item {
  background-color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: fadeInUp 1s forwards;
}

.item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.item h3 {
  margin: 15px 0 5px;
  font-size: 20px;
}

.item p {
  font-size: 18px;
  color: #e74c3c;
  font-weight: bold;
}

.item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Animasyonlar */
@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}












































.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.5); /* Videoyu karartır ki yazı öne çıksın */
}

.hero-text {
  z-index: 1;
  padding: 20px;
}

.btn {
  background-color: #e67e22;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 20px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #d35400;
}

