/* =====================
   Genel Ayarlar
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* =====================
   Navbar
===================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;        /* NAVBAR sabit yüksekliği */
  padding: 0 40px;     /* sadece sağ/sol boşluk */
  background: #111;
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: hidden;    /* taşma olursa gizle */
}

.navbar .logo img {
  height: 100%;        /* logo yüksekliği → navbar yüksekliğine uyar */
  max-height: 100px;    /* ama en fazla 70px olsun */
  width: auto;
  display: block;
}


.main-menu {
  flex: 1;
}

.main-menu ul {
  display: flex;
  justify-content: center; /* Ortalanmış menü */
  gap: 40px;
}

.main-menu a {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s;
}

.main-menu a:hover {
  color: #ffcb05; /* Hover sarı */
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* =====================
   Hero
===================== */
.hero {
  height: 90vh;
  background: url("../img/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  color: #fff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-left: 45%;   /* yazıyı sağa kaydır */
  margin-top: -30px;  /* biraz yukarı taşı */
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero p {
  font-size: 20px;
}

/* =====================
   Bölüm Başlıkları
===================== */
section {
  padding: 60px 20px;
  text-align: center;
}

section h2 {
  font-size: 28px;
  color: #d82020;
  margin-bottom: 20px;
}

/* =====================
   Hakkımızda
===================== */
.about p {
  max-width: 800px;
  margin: auto;
  font-size: 18px;
  color: #555;
}

/* =====================
   Menü Tanıtımı
===================== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.menu-item {
  background: #fff8f8;
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.3s;
}

.menu-item:hover {
  transform: translateY(-5px);
}

.menu-item h3 {
  margin: 15px 0 10px;
  font-size: 20px;
  color: #d82020;
}

/* =====================
   Yakında
===================== */
.coming-soon {
  background: #ffcb05;
  color: #111;
  padding: 60px 20px;
  border-radius: 12px;
  max-width: 800px;
  margin: auto;
}

/* =====================
   Galeri
===================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

/* =====================
   İletişim
===================== */
.contact p {
  font-size: 18px;
  margin: 10px 0;
}

.contact-form {
  max-width: 600px;
  margin: 30px auto 0;
  text-align: left;
}

.contact-form .form-group {
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #d82020;
  box-shadow: 0 0 5px rgba(216,32,32,0.4);
}

.contact-form .btn {
  background: #d82020;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form .btn:hover {
  background: #ffcb05;
  color: #111;
}

/* =====================
   Footer
===================== */
footer {
  background: #111;   /* koyu gri arka plan */
  color: #fff;        /* beyaz yazı */
  text-align: center;
  padding: 25px 15px;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 40px;   /* üstten biraz boşluk */
}

footer a {
  color: #ffcb05;     /* sarı link */
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: #fff;        /* hover olunca beyaz */
}


/* =====================
   Responsive
===================== */
@media (max-width: 768px) {
  .navbar .logo img {
    height: 60px; /* Mobilde daha küçük */
  }

  .main-menu ul {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 15px;
    border-radius: 8px;
    gap: 15px;
  }

  .main-menu ul.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-content {
    margin-left: 0; /* Mobilde ortala */
    margin-top: 0;
    text-align: center;
  }
}
