/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Oswald', sans-serif;
  background: #000;
  color: #fff;
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  min-height: 100vh;
  background: url("https://images.unsplash.com/photo-1550547660-d9450f859349") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.4rem;
  color: #ff5416;
}

.hero-content p {
  margin: 0.75rem 0 2rem;
  font-size: 1.05rem;
}

/* =========================
   HERO BANNERS
========================= */
.banner-list {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.banner-list a {
  display: block;
  text-align: center;
  padding: 1rem;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease;
}

.banner-list a:nth-child(odd) {
  background: #ff5416;
  color: #000;
}

.banner-list a:nth-child(even) {
  background: #ff5416;
  color: #000;
}

.banner-list a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.45);
}

/* =========================
   BLOG
========================= */
.blog {
  padding: 4rem 1rem;
  background: #000;
}

.blog h2 {
  text-align: center;
  color: #ff5416;
  margin-bottom: 2.5rem;
  font-size: 2rem;
}

.blog-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* BLOG CARD */
.blog-card {
  border-radius: 18px;
  overflow: hidden;
}

.blog-card a {
  display: block;
  text-decoration: none;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.blog-card h3 {
  padding: 1rem;
  font-size: 1.2rem;
}

/* BLOG RENKLER */
.blog-card:nth-child(odd) a {
  background: #ff5416;
  color: #fff;
}

.blog-card:nth-child(even) a {
  background: #ff5416;
  color: #000;
}

.blog-card:hover img {
  transform: scale(1.08);
}

/* FOOTER */
.site-footer {
  background-color: #0f0f0f;
  color: #f3f3f3;
  padding: 32px 16px 20px;
  font-size: 14px;
}

/* ÜST ŞERİT */
.footer-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(242, 179, 109, 0.3);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.footer-strip div {
  white-space: nowrap;
}

/* LOGO / MARKA */
.footer-logo {
  font-weight: 600;
  color: #ff5416;
  letter-spacing: 0.5px;
}

/* SEO METNİ */
.footer-seo {
  max-width: 900px;
  margin: 0 auto 18px;
  text-align: center;
  color: #ccc;
  line-height: 1.6;
  font-size: 13px;
}

/* ALT BANT */
.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: #999;
}

.footer-bottom .agency {
  margin-top: 6px;
  color: #ff5416;
}

/* -------------------- */
/* RESPONSIVE (MOBİL) */
/* -------------------- */
@media (max-width: 768px) {
  .footer-strip {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-strip div {
    white-space: normal;
  }
}


/* =========================
   WHATSAPP
========================= */
.whatsapp-btn {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #25d366;
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  animation: pulse 2s infinite;
  z-index: 999;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.7); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* =========================
   DESKTOP
========================= */
@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }

  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.logo-area {
  display: flex;
  align-items: center;
}

.logo {
  max-height: 70px;
  width: auto;
}
/* =========================
   CONTACT PAGE
========================= */
.contact-hero {
  position: relative;
  min-height: 50vh;
  background: url("https://images.unsplash.com/photo-1600891964599-f61ba0e24092") center / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.contact-hero h1 {
  position: relative;
  z-index: 2;
  font-size: 2.5rem;
  color: #ff5416;
  max-width: 90%;
}

/* HAKKIMIZDA */
.contact-about {
  padding: 3rem 1rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ccc;
}

/* FORM */
.contact-content {
  padding: 2rem 1rem;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-content form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-content input,
.contact-content select,
.contact-content textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #333;
  background-color: #111;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  transition: border 0.2s, box-shadow 0.2s;
}

.contact-content input:focus,
.contact-content select:focus,
.contact-content textarea:focus {
  outline: none;
  border: 1px solid #ff5416;
  box-shadow: 0 0 8px rgba(242,179,109,0.5);
}

.contact-content button {
  padding: 14px;
  background-color: #ff5416;
  color: #000;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.contact-content button:hover {
  background-color: #ff5416;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* MAP */
.contact-map {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-map {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .contact-about {
    font-size: 1rem;
  }

  .contact-content input,
  .contact-content select,
  .contact-content textarea,
  .contact-content button {
    font-size: 0.95rem;
    padding: 10px 12px;
  }
}
/* =========================
   HEADER & MENU
========================= */
.header {
  position: relative;
  width: 100%;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: #000;
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #ff5416;
  cursor: pointer;
}

.nav-menu ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-menu a {
  color: #ff5416;
  text-decoration: none;
  font-weight: 600;
}

/* SUBMENU */
.has-submenu {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  background: #111;
  padding: 0.5rem 0;
  border-radius: 8px;
}

.submenu a {
  display: block;
  padding: 8px 16px;
  color: #fff;
}

/* =========================
   SLIDER
========================= */
.header-slider {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
}

.slide h1 {
  position: relative;
  z-index: 2;
  color: #ff5416;
  font-size: 2.5rem;
  text-align: center;
}

/* MOBİL */
@media (max-width:768px) {
  .nav-menu {
    display: none;
    position: absolute;
    right: 1rem;
    top: 70px;
    background: #111;
    padding: 1rem;
    border-radius: 12px;
  }

  .nav-menu ul {
    flex-direction: column;
  }
}
/* =========================
   TOPTAN YAPRAK SARMA BLOĞU
========================= */
.contact-sarma {
  background: #111; /* koyu zemin, mevcut tasarıma uyumlu */
  border-radius: 16px;
  padding: 2rem 1.5rem;
  max-width: 900px;
  margin: 0 auto 2.5rem; /* form ile arasında boşluk bırakır */
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.contact-sarma:hover {
  transform: translateY(-3px);
}

.contact-sarma h2 {
  font-size: 1.8rem;
  color: #ff5416;
  margin-bottom: 1rem;
}

.contact-sarma p {
  font-size: 1.05rem;
  color: #ccc;
  line-height: 1.6;
}

.contact-sarma strong {
  color: #ff5416;
}
/* =========================
   BLOG SAYFALARI
========================= */
.contact-about h2 {
  font-size: 2rem;
  color: #ff5416;
  margin-bottom: 1rem;
  text-align: center;
}

.contact-about h3 {
  font-size: 1.5rem;
  color: #f3f3f3;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.contact-about p {
  font-size: 1.05rem;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

/* BLOG HERO */
.contact-hero {
  position: relative;
  min-height: 40vh;
  background: url("https://images.unsplash.com/photo-1550547660-d9450f859349") center / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
}

.contact-hero h1 {
  position: relative;
  z-index: 2;
  font-size: 2.5rem;
  color: #ff5416;
  max-width: 90%;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

/* BLOG CARD HOVER */
.blog-card:hover img {
  transform: scale(1.1);
  transition: transform 0.4s ease;
}

/* RESPONSIVE BLOG */
@media (max-width:768px){
  .contact-about h2 {
    font-size: 1.8rem;
  }
  .contact-about h3 {
    font-size: 1.3rem;
  }
  .contact-about p {
    font-size: 1rem;
  }
  .contact-hero h1 {
    font-size: 2rem;
  }
}
/* =========================
   BLOG SAYFALARI
========================= */
.contact-about h2 {
  font-size: 2rem;
  color: #ff5416;
  margin-bottom: 1rem;
  text-align: center;
}

.contact-about h3 {
  font-size: 1.5rem;
  color: #f3f3f3;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.contact-about p {
  font-size: 1.05rem;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

/* BLOG HERO */
.contact-hero {
  position: relative;
  min-height: 40vh;
  background: url("https://images.unsplash.com/photo-1550547660-d9450f859349") center / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
}

.contact-hero h1 {
  position: relative;
  z-index: 2;
  font-size: 2.5rem;
  color: #ff5416;
  max-width: 90%;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

/* BLOG CARD HOVER */
.blog-card:hover img {
  transform: scale(1.1);
  transition: transform 0.4s ease;
}

/* RESPONSIVE BLOG */
@media (max-width:768px){
  .contact-about h2 {
    font-size: 1.8rem;
  }
  .contact-about h3 {
    font-size: 1.3rem;
  }
  .contact-about p {
    font-size: 1rem;
  }
  .contact-hero h1 {
    font-size: 2rem;
  }
}
/* =========================
   YEMEK KARTLARI
========================= */
.meal-cards {
  background: #111;
  padding: 3.5rem 1rem;
}

.meal-cards-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: #0f0f0f;
  border-radius: 18px;
  padding: 2.5rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.meal-cards h2 {
  font-size: 2rem;
  color: #ff5416;
  margin-bottom: 1rem;
}

.meal-cards p {
  font-size: 1.05rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.meal-cards p strong {
  color: #ff5416;
}

.meal-card-logos {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.card-logo {
  background: #111;
  padding: 14px 22px;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.card-logo img {
  max-height: 42px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.card-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255,84,22,0.35);
}

.card-logo:hover img {
  filter: none;
}

/* MOBİL */
@media (max-width: 480px) {
  .meal-cards h2 {
    font-size: 1.6rem;
  }

  .meal-cards p {
    font-size: 1rem;
  }

  .card-logo img {
    max-height: 36px;
  }
}
