//* PRACTIKA FAST-FOOD STYLE - 2025 */

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #FAFAFA;
  color: #333;
}

/* Navbar */
.navbar {
  background: #E02727;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: center; /* Menü ortalanır */
  gap: 40px; /* Logo ile menü arası boşluk */
  padding: 10px 20px;
  position: relative;
}

.logo {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.logo a {
  display: inline-block;
  text-decoration: none;
  line-height: 0;
}
.logo img {
  height: 60px;
  width: auto;
  display: inline-block;
  border: none;
  vertical-align: middle;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
nav ul li a:hover {
  color: #FFD447;
}
.menu-toggle {
  display: none;
  font-size: 1.8em;
  cursor: pointer;
}

/* Hero */
.hero {
  background: url('../img/hero-practika-fastfood.jpg') center center / cover no-repeat;
  color: #fff;
  text-align: center;
  position: relative;
  height: 100vh;              /* Tam ekran yüksekliği */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero h1 {
  font-size: 3em;
  margin-bottom: 10px;
  font-family: 'Fugaz One', sans-serif;
}
.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}
.btn-primary {
  background: #FFD447;
  color: #E02727;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
.btn-primary:hover {
  background: #E02727;
  color: #fff;
}

/* Menü Bölümü */
.menu-section {
  text-align: center;
  padding: 80px 20px;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.menu-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
}
.menu-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.menu-card h3 {
  color: #E02727;
  margin-top: 10px;
}

/* Kampanyalar */
.kampanya-section {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}
.kampanya-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.kampanya-card {
  background: #FAFAFA;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}
.kampanya-card span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #E02727;
}
.kampanya-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}
.kampanya-card h3 {
  color: #E02727;
  margin-top: 0;
}


/* Hakkımızda */
.about-section {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

/* İletişim */
.contact-section {
  padding: 60px 20px;
  text-align: center;
}
.contact-section iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 10px;
  margin-top: 20px;
}

/* WhatsApp */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 28px;
  padding: 12px 14px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 1000;
}

/* Footer */
footer {
  background: #E02727;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 0.9em;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: #E02727;
    position: absolute;
    top: 60px;
    right: 0;
    width: 180px;
    padding: 10px;
  }
  nav ul.show {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .logo img {
    height: 45px;
  }
  .hero {
    height: 80vh; /* Mobilde biraz daha kısa */
  }
  .hero h1 {
    font-size: 2em;
  }
}
