/* ==============================
   Genel Ayarlar
============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fffaf6;
  color: #444;
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 10px;
}

/* ==============================
   Header
============================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #b87333;
}

.logo span { color: #7c4f28; }

.navbar nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar nav a:hover {
  color: #b87333;
}

/* ==============================
   Butonlar
============================== */
.btn-primary, .btn-outline {
  border: none;
  padding: 10px 22px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #b87333;
  color: white;
}

.btn-primary:hover {
  background-color: #a0652c;
}

.btn-outline {
  background: transparent;
  border: 2px solid #b87333;
  color: #b87333;
}

.btn-outline:hover {
  background-color: #b87333;
  color: white;
}

/* ==============================
   Hero Section
============================== */
.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 100px 80px;
  gap: 50px;
  background-color: #fffaf6;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #4a2e05;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
}



.hero-images {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.hero-images img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.hero-images img:hover {
  transform: scale(1.05);
}

/* ==============================
   Cuisine / Mission Section
============================== */
.cuisine {
  text-align: center;
  padding: 100px 80px;
  background-color: #fff;
}

.cuisine h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #4a2e05;
  margin-bottom: 20px;
}

.cuisine p {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #666;
  font-size: 1rem;
}

.menu-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.card {
  background: #fffaf6;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
}

.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #4a2e05;
  margin-bottom: 10px;
}

.card p {
  color: #666;
  font-size: 0.95rem;
}

/* ==============================
   Tradition / Team Section
============================== */
.tradition {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 100px 80px;
  gap: 50px;
  background-color: #fffaf6;
}

.tradition-text {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
}

.tradition-text h2 {
  font-family: 'Playfair Display', serif;
  color: #4a2e05;
  font-size: 2rem;
  margin-bottom: 20px;
}

.tradition-text p {
  color: #666;
  margin-bottom: 30px;
}

.tradition-images {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  display: flex;
  justify-content: flex-end;
}

.tradition-images img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ==============================
 

/* ==============================
   Responsive Tasarım
============================== */
@media screen and (max-width: 992px) {
  .hero, .tradition {
    padding: 80px 40px;
  }
  
  .tradition-text, .tradition-images {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 20px 40px;
  }

  .hero, .cuisine, .tradition {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .cuisine h2, .tradition h2 {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-text p, .cuisine p, .tradition-text p {
    font-size: 0.95rem;
  }

  .btn-primary, .btn-outline {
    padding: 8px 18px;
    font-size: 0.9rem;
  }
}
