/* Site styles — self-contained; do not rely on /style.css at web root */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
}

header {
  background: linear-gradient(to bottom, #231f20);
  padding: 0px 100px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-left, .nav-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.nav-left {
  justify-content: flex-start;
}

.nav-right {
  justify-content: flex-end;
}

.logo {
  flex: 0;
  text-align: center;
}

.logo img {
  height: 250px;
  object-fit: contain;
}

.nav a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  margin: 0 15px;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.nav a:hover {
  color: #0c7b42;
  transform: scale(1.15);
}

.hero {
  background: url('') no-repeat center center/cover;
  color: #ffffff;
  text-align: center;
  padding: 100px 20px 50px;
  font-size: 32px;
  font-weight: bold;
}

.hero h1,
.hero .mobile-subtitle {
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.menu-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 50px 20px;
}

.menu-card {
  width: 300px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  color: #0c3a20;
  transition: color 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
  color: #0a3530;
  box-shadow: 0 0 25px rgba(5, 48, 43, 0.7);
  cursor: pointer;
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.menu-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.menu-card h3 {
  margin: 0;
  padding: 15px 0;
  font-size: 18px;
  background-color: #f5f5f5;
}

.siparis-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #095d2e;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.siparis-btn i {
  margin-right: 8px;
}

.breadcrumb {
  font-size: 14px;
  padding: 10px 100px;
  background-color: #f9f9f9;
  color: #333;
  font-weight: 500;
}

.breadcrumb a {
  text-decoration: none;
  color: #0c7b42;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #095d2e;
}

.about-section {
  padding: 4rem 2rem;
  background-color: #fefefe;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 2;
  min-width: 300px;
}

.about-text h2 {
  font-size: 32px;
  color: #0c7b42;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
}

footer {
  background: linear-gradient(to top, #1a1a1a, #231f20);
  color: white;
  padding: 30px 100px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-logo {
  height: 70px;
  object-fit: contain;
}

.footer-social {
  display: flex;
  gap: 20px;
  margin: 10px 0;
}

.footer-social a {
  color: white;
  font-size: 20px;
  transition: transform 0.3s ease, color 0.3s ease;
  opacity: 0.8;
}

.footer-social a:hover {
  transform: translateY(-5px) scale(1.2);
  opacity: 1;
}

.footer-social a .fa-whatsapp:hover { color: #25D366; }
.footer-social a .fa-instagram:hover { color: #E1306C; }
.footer-social a .fa-facebook:hover { color: #1877F2; }
.footer-social a .fa-x-twitter:hover { color: #fff; }
.footer-social a .fa-youtube:hover { color: #FF0000; }

.footer-line-container {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 900px;
  gap: 15px;
  justify-content: space-between;
}

.footer-left {
  font-size: 14px;
  flex-shrink: 0;
  text-align: left;
}

.footer-line {
  flex-grow: 1;
  border: none;
  height: 1.5px;
  background-color: white;
  opacity: 0.4;
  margin: 0 10px;
}

.footer-maker-logo {
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.modal {
  display: none;
  position: fixed;
  z-index: 3000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  margin: auto;
  display: block;
  width: 1000px;
  height: auto;
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
  border: 4px solid white;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 3001;
}

.garson-btn {
  position: fixed;
  bottom: 30px;
  right: 20px;
  background-color: #095d2e;
  color: #ffff;
  border: none;
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.popup-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}

.popup-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.popup-card input {
  width: 80%;
  padding: 10px;
  margin: 15px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.popup-buttons button {
  padding: 10px 16px;
  margin: 5px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.popup-buttons button:first-child {
  background-color: #09a72e;
  color: white;
}

.popup-buttons button:last-child {
  background-color: #dc3545;
  color: white;
}

.notification-success {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #28a745;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  z-index: 1002;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeOut 4s forwards;
}

@keyframes fadeOut {
  0% { opacity: 1; }
  75% { opacity: 1; }
  100% { opacity: 0; display: none; }
}

@media (max-width: 1024px) {
  header {
    padding: 10px 40px !important;
  }
  .breadcrumb {
    padding: 10px 40px;
  }
  footer {
    padding: 30px 40px !important;
  }
  .footer-line-container {
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 10px 20px !important;
    flex-wrap: wrap;
  }

  .logo {
    flex-basis: 100%;
    margin-bottom: 10px;
  }

  .logo img {
    height: 100px !important;
    margin: 0 auto;
    display: block;
  }

  .nav-left, .nav-right {
    flex: 1 1 100%;
    justify-content: center !important;
    margin: 5px 0;
  }

  .nav a {
    font-size: 16px;
    margin: 0 8px;
  }

  @media (max-width: 768px) {
    header {
      padding: 10px 20px !important;
      flex-wrap: nowrap;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      flex: 0 0 auto;
      order: 1;
    }

    .logo img {
      height: 100px !important;
      margin: 0;
    }

    .nav-left, .nav-right {
      flex: 0 0 auto;
      display: flex;
      gap: 15px;
      order: 2;
      justify-content: flex-end !important;
      margin: 0;
    }

    .nav-left {
      margin-right: 5px;
    }

    header > .nav-left,
    header > .nav-right {
      align-items: center;
    }

    .nav a {
      font-size: 16px;
      margin: 0;
      padding: 8px 12px;
    }
  }

  .hero {
    font-size: 24px !important;
    padding: 50px 10px 30px !important;
  }

  .mobile-subtitle {
    font-size: 16px !important;
  }

  .menu-section {
    padding: 30px 10px;
  }

  .menu-card {
    width: 90vw;
    max-width: 350px;
  }

  .menu-card h3 {
    font-size: 16px;
  }

  footer {
    padding: 20px 10px !important;
  }

  .footer-line-container {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .footer-left {
    text-align: center;
    font-size: 14px;
  }

  .footer-maker-logo {
    height: 30px !important;
  }
}

@media (max-width: 480px) {
  .menu-card {
    width: 100%;
  }

  .breadcrumb {
    padding: 10px 15px;
    font-size: 13px;
  }
}

.kahvaltiliklar {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #231f20;
}

.kahvalti-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.kahvalti-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.kahvalti-card:hover {
  transform: scale(1.03);
}

.kahvalti-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 1rem;
}

.card-content h3 {
  font-size: 1.2rem;
  margin: 0.5rem 0;
  color: #004aad;
}

.card-content p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.price {
  font-weight: bold;
  font-size: 1.1rem;
  color: #e53935;
}

.detail-toggle {
  margin-top: 0.5rem;
  background-color: #004aad;
  color: #fff;
  padding: 6px 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.detail-toggle:hover {
  background-color: #002f6c;
}

.price-details {
  margin-top: 0.5rem;
  background-color: #f8f8f8;
  padding: 10px;
  border-radius: 10px;
  font-size: 0.9rem;
  color: #444;
}

@media (max-width: 768px) {
  .kahvalti-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }

  .kahvalti-card {
    border-radius: 12px;
  }

  .card-content h3 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .kahvalti-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .kahvalti-card img {
    height: 180px;
  }
}

header {
  background-color: #000;
  padding: -1px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo img {
  height: 200px;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.desktop-nav {
  display: flex;
  gap: 20px;
}

.mobile-menu-toggle,
.mobile-nav {
  display: none;
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
    color: white;
    font-size: 26px;
    cursor: pointer;
  }

  .mobile-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #111;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    z-index: 999;
  }

  .mobile-nav.active {
    display: flex;
  }
}

.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  left: 20px;
  background-color: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-5px);
  color: white;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp i {
  font-size: 20px;
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 20px;
    left: 20px;
    padding: 10px 15px;
    font-size: 14px;
  }

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp {
    padding: 12px;
    border-radius: 50%;
  }
}

.site-footer {
  background: linear-gradient(to top, #1a1a1a, #231f20);
  color: #fff;
  padding: 18px 24px 14px;
  margin-top: 40px;
}

.site-footer-brand {
  text-align: center;
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.site-footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer-copyright {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

.site-footer-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.footer-design-credit-block {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-left: auto;
}

.footer-design-by {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-design-logo {
  width: 120px;
  height: 32px;
  object-fit: contain;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 16px 14px 18px;
  }

  .site-footer-brand {
    font-size: 34px;
    margin-bottom: 12px;
  }

  .site-footer-bottom {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .site-footer-copyright {
    width: 100%;
    text-align: center;
    white-space: normal;
  }

  .site-footer-line {
    width: 100%;
    flex-basis: 100%;
  }

  .footer-design-credit-block {
    margin-left: 0;
  }
}

/* Modern responsive UI overrides */
:root {
  --site-bg: #f5f7fb;
  --surface: #ffffff;
  --text: #10243e;
  --muted: #5f6f85;
  --primary: #0c7b42;
  --primary-dark: #096536;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 10px 30px rgba(16, 36, 62, 0.09);
}

body.site-page {
  background: radial-gradient(circle at top, #f8fbff 0%, var(--site-bg) 45%, #edf2f9 100%);
  color: var(--text);
}

header {
  position: sticky;
  top: 0;
  z-index: 1100;
  backdrop-filter: blur(8px);
  background: linear-gradient(110deg, rgba(20, 20, 20, 0.95), rgba(35, 31, 32, 0.92));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero {
  min-height: clamp(220px, 40vh, 360px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(54px, 8vh, 96px) 20px clamp(40px, 6vh, 70px);
}

.hero-content {
  max-width: 880px;
  margin: 0 auto;
  padding: 8px 12px;
}

.hero h1 {
  font-size: clamp(30px, 4.3vw, 54px);
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}

.mobile-subtitle {
  font-size: clamp(15px, 1.8vw, 20px);
  margin: 0;
}

.breadcrumb {
  padding: 12px clamp(16px, 6vw, 100px);
  border-top: 1px solid rgba(12, 123, 66, 0.08);
  border-bottom: 1px solid rgba(12, 123, 66, 0.08);
}

.menu-section,
.about-section,
.contact-section,
.kahvaltiliklar {
  width: min(1200px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.menu-section {
  gap: clamp(16px, 2vw, 28px);
  padding: clamp(28px, 4vw, 50px) 0;
}

.menu-card,
.kahvalti-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(12, 123, 66, 0.1);
}

.menu-card img,
.kahvalti-card img {
  aspect-ratio: 16 / 10;
  height: auto;
}

.menu-card h3 {
  font-size: 18px;
  padding: 14px 14px 16px;
}

.card-content {
  padding: 18px;
}

.card-content h3 {
  color: #0f3258;
}

.card-content p {
  color: var(--muted);
  line-height: 1.6;
}

.price {
  color: #d5352d;
}

.price-details {
  border: 1px solid #e4e9f2;
  background: #f9fbff;
}

.about-container {
  background: var(--surface);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  padding: clamp(20px, 4vw, 38px);
  border: 1px solid rgba(12, 123, 66, 0.08);
}

.about-text h2 {
  margin-top: 0;
}

.about-text p {
  color: var(--muted);
}

.contact-section {
  margin: clamp(24px, 5vw, 52px) auto;
  gap: clamp(20px, 4vw, 48px);
  align-items: stretch;
}

.contact-left,
.contact-right {
  background: var(--surface);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(12, 123, 66, 0.08);
}

.contact-left {
  flex: 0 0 320px;
  min-width: 280px;
  padding: 28px;
}

.contact-left p {
  color: var(--muted);
  line-height: 1.8;
  margin: 10px 0;
}

.contact-right {
  flex: 1;
  min-width: 300px;
  padding: clamp(22px, 4vw, 40px);
}

.contact-right h2 {
  margin-top: 0;
  color: #17365b;
}

.contact-lead {
  margin: 0 0 14px;
  color: #64748b;
}

.contact-right input,
.contact-right textarea,
.contact-right select {
  width: 100%;
  padding: 13px 16px;
  margin-bottom: 12px;
  border: 1px solid #d9e0ea;
  border-radius: var(--radius-md);
  background: #fff;
  font: inherit;
}

.contact-right input:focus,
.contact-right textarea:focus,
.contact-right select:focus {
  outline: none;
  border-color: #7ab796;
  box-shadow: 0 0 0 3px rgba(12, 123, 66, 0.14);
}

.contact-feedback {
  margin: 0 0 14px;
  font-weight: 600;
}

.contact-feedback--ok {
  color: #166534;
}

.contact-feedback--error {
  color: #b91c1c;
}

.btn-primary-site {
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #0a8f4d);
  color: #fff;
  font-weight: 600;
  padding: 12px 20px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-primary-site:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(12, 123, 66, 0.24);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

@media (max-width: 900px) {
  .contact-section {
    width: min(1120px, calc(100% - 22px));
  }

  .contact-left,
  .contact-right {
    min-width: 100%;
  }

  .contact-left {
    flex-basis: auto;
  }
}