/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900&display=swap");
/* Root Variables */
:root {
  --main-color: #bf8a78;
  --black-color: #0e0e0e;
  --border: 0.1rem solid rgba(255, 255, 255, 0.4);
  --main-color-hover: #bf8a78;
}
/* Global Styles */
* {
  font-family: "Merriweather", serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  text-transform: capitalize;
  transition: 0.2s ease;
}
html,
body {
  height: 100%;
  display: flex;
  flex-direction: column;
}
body {
  background-color: var(--main-color);
  color: #333;
  padding-top: calc(160px + 20px); /* header yüksekliği + boşluk */
  font-size: 62.5%;
}
/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
  z-index: 1000;
  height: 160px;
}
.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.logo img {
  height: 160px;
}
/* Hero Section */
.hero {
  text-align: center;
  padding: 50px 20px;
  background-color: #fff;
}
.hero h2 {
  font-size: 2.5rem;
  color: #413b3b;
}
.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
  color: #666;
}
/* Menu Section */
.menu-section {
  padding: 40px 20px;
  text-align: center;
}
.menu-section h2 {
  margin: 2rem 0; /* Üst ve alt boşluk eşit */
  font-size: 2.4rem;
  color: #4a3f39;
  text-align: center;
}

/* Tablet ekranlar (768px ve altı) */
@media (max-width: 768px) {
  .menu-section h2 {
    font-size: 2rem;
    margin: 1.5rem 0;
  }
}

/* Mobil ekranlar (480px ve altı) */
@media (max-width: 480px) {
  .menu-section h2 {
    font-size: 1.7rem;
    margin: 1.2rem 0;
  }
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.menu-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.08);
  text-align: left;
}
.menu-item h3 {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #333;
}

/* Tablet ekranlar (768px ve altı) */
@media (max-width: 768px) {
  .menu-item h3 {
    font-size: 1.3rem;
  }
}

/* Mobil ekranlar (480px ve altı) */
@media (max-width: 480px) {
  .menu-item h3 {
    font-size: 1.1rem;
  }
}
.menu-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}
.menu-item .price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #bf8a78;
  margin-top: 5px;
}

/* Kafeinsiz Kahve Uyarısı */
.decaf-notice {
  margin-top: 25px;
  padding: 12px 16px;
  background: linear-gradient(
    135deg,
    rgba(191, 138, 120, 0.08) 0%,
    rgba(191, 138, 120, 0.12) 100%
  );
  border: 2px solid white;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(191, 138, 120, 0.15);
}

.decaf-notice p {
  font-size: 1.1rem;
  color: white;
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
}

.decaf-notice strong {
  color: white;
  font-weight: 600;
}

/* Tablet ekranlar için */
@media (max-width: 768px) {
  .decaf-notice {
    margin-top: 20px;
    padding: 10px 14px;
  }
  .decaf-notice p {
    font-size: 1.05rem;
  }
}

/* Mobil ekranlar için */
@media (max-width: 480px) {
  .decaf-notice {
    margin-top: 18px;
    padding: 8px 12px;
  }
  .decaf-notice p {
    font-size: 1rem;
  }
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #333;
  color: #fff;
}
footer .social-icons a {
  color: white;
  font-size: 3rem;
  margin: 0 0.5rem;
}
footer .social-icons a:hover {
  color: var(--main-color-hover);
}

/* Media Queries */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  header {
    height: 100px;
    padding: 5px 10px;
  }
  .logo img {
    height: 100px;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  footer .social-icons a {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  header {
    height: 100px;
  }
  .logo img {
    height: 100px;
  }
  .hero {
    padding: 15px 5px;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 0.9rem;
  }
  footer {
    padding: 10px;
  }
  footer .social-icons a {
    font-size: 2rem;
  }
}
