/* Genel Stil */
body {
  margin: 0;
  padding: 0;
  background: #E32227   ;
  color: #ffe8e2;
  font-family: 'Montserrat', sans-serif;
}

/* Sos Efekti */
.sauce-img {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: auto;
  z-index: 1000;
}

@media (max-width: 768px) {
  .sauce-img {
    width: 150px;
  }
}





/* base (masaüstü) */
.top-left-menu {
  position: fixed;
  top: 20px; left: 20px;
  z-index: 20;
  font-family: 'Montserrat', sans-serif;
  background-color: black;
  border: 2px solid black;
  border-radius: 10px;
  padding: 8px 16px; /* üst-alt, sağ-sol */
}

.top-left-menu .nav-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 22px;
}
.top-left-menu a {
  
  color: #fff; text-decoration: none; font-weight: 400;
  letter-spacing: .04em;
}
.top-left-menu a:hover { color: #FFAA56; }





.hero-wrapper {
  display: flex;
  flex-direction: column; /* Logo üstte, yazı altta */
  align-items: center;
  justify-content: center;
  min-height: 100vh; /* Ortalamak için */
}

.center-logo {
  max-width: 200px; /* İsteğe göre boyut ayarı */
  height: auto;
}

.hero-big-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(40px, 6vw, 100px); /* Responsive */
  font-weight: 900;
  color: wheat ;
  margin-top: 20px; /* Logo ile yazı arası boşluk */
  text-align: center;
  line-height: 0.95;
  text-transform: uppercase;
}

/* Mobilde satır kırılması */
.hero-big-title .br {
  display: none;
}
@media (max-width: 768px) {
  .hero-big-title .br {
    display: inline;
  }
}



.mobile-break {
  display: none; /* Masaüstünde görünmez */
}

/* Mobilde 2 satır */
@media (max-width: 768px) {
  .home-title {
    font-size: 1.8rem;  /* Yazıyı küçült */
    wheat-space: normal; /* Satır kırılımı aktif */
    line-height: 1.2;
  }
  .mobile-break {
    display: inline; /* <br> sadece mobilde aktif */
  }
}






/* OPS Specials Bölümü */
.ops-specials {
  background: #E32227 ;
  padding: 10px 20px;
  text-align: center;
  margin-bottom: 50px;
}

.ops-title {
  font-size: 3.8rem;
  font-weight: bold;
  
  
}

/* Burger Kartları Grid */
.ops-specials .burger-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  justify-items: center;
  
}

/* Burger Kartları */
.burger-card {
  background: none;
  border: none;
  padding: 20px;
  max-width: 350px;
}

.burger-img {
  width: 300px;
  height: auto;
  max-height: 250px;
  object-fit: contain;
}

.burger-title {
  margin-top: 15px;
  font-size: 1.6rem;
  font-weight: 800;
}

.burger-story {
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 500;
  
}

/* Ingredients */
.burger-ingredients {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.burger-ingredients img {
  height: 37px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.burger-ingredients img:hover {
  transform: scale(1.1);
}




.contact-section {
  background-color: #E32227;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}


.contact-left {
  flex: 1 1 50%; /* %50 yerine %55 genişlik */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px; /* Form elemanları arası boşluk */
}

.contact-right {
  flex: 1 1 45%;
}


.contact-form .form-control {
  width: 100%;              /* Form genişliğine uyumlu */
  background-color: #FFAA56;
  border: 1px solid #fff;
  color: black;
  padding: 12px;
  font-size: 1rem;
  border-radius: 5px;
  box-sizing: border-box;
}

.contact-form textarea {
  height: 120px;            /* Mesaj kutusu daha yüksek */
  resize: none;
}

.btn-submit {
  width: 100%;
  background-color: black;
  color:  wheat;
  padding: 12px 40px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  text-align: center;
}

.btn-submit:hover {
  color: #FFAA56;
}


.contact-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}



.contact-right img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}

/* Mobilde alt alta */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-right img {
    height: 240px; /* mobilde sabit yükseklik */
  }
}



.events-section {
  background: #E32227;
  padding: 60px 20px;
  text-align: center;
  padding-top: 90px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 4vw, 40px);
  color: #FFAA56;
  margin-bottom: 30px;
}

.events-row {
    margin-top: 10px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media (max-width: 768px) {
  .events-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.event-item {
  overflow: hidden;
  border-radius: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: #000;
}

.event-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1; /* kare */
  object-fit: cover;
  transition: transform 0.35s ease;
}

.event-item:hover img {
  transform: scale(1.05);
}


/* ==== Footer ==== */
.footer {
  background-color: #E32227;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.footer-logo {
  height: 100px;
  margin-bottom: 5px;
}

.footer-address {
  font-size: 1rem;
  margin-bottom: 10px;
}

.footer-copy {
  font-size: 0.7rem;
  color: wheat;
  margin: 0;
}


.daily-section{
  background:#E32227;
  padding:0;              /* sağ–sol boşluk kalkar */
  text-align:center;
  margin-top: 50px;
}

.section-title{
  font-family:'Montserrat', sans-serif;
  font-weight:800;
  font-size:clamp(26px,4vw,40px);
  color: wheat;
  margin:0 0 18px;
  text-transform:uppercase;
  letter-spacing:.02em;
  padding-bottom: 10px;
  
}

.daily-figure{
  margin:0;
  max-width:100%; /* Tam genişlik */
}

.daily-img{
  margin-top: 10px;
  display:block;
  width:100%;
  height:auto;
  border-radius:0;
  border:none;
  box-shadow:none;
}


/* MODAL OVERLAY */
.modal {
  display: none; /* başlangıçta kapalı */
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.75);
  justify-content: center;
  align-items: center;
}

/* MODAL KUTUSU */
.modal-content {
  background: #fff;
  color: black;
  padding: 20px;
  max-width: 500px;
  width: 90%;
  border-radius: 12px;
  text-align: center;
  position: relative;
}

.modal-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* GÖRSELLER */
.modal-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.modal-images img {
  width: 120px;
  height: auto;
  border-radius: 10px;
  transition: transform 0.2s ease;
}

.modal-images img:hover {
  transform: scale(1.05);
}

/* KAPAT BUTONU */
.close-btn {
  position: absolute;
  right: 14px;
  top: 10px;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

.close-btn:hover {
  color: red;
}

.map-section {
  background: #E32227;
 
  text-align: center;
}


.map-container {
  width: 100%;
  height: 400px;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .map-container {
    height: 300px;
  }
}
