* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333333 ;
    text-align: center;
  }
  
  :root {
    --gold: #D3B486;
    --gold-light: #D3B486;
    --gold-dim: rgba(211, 180, 134, 0.6);
    --white: #ffffff;
    --white-soft: rgba(255, 255, 255, 0.85);
    --black: #000000;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    height: 100%;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
  }
  
  /* ============================================
     TOPBAR
     ============================================ */
  
  .topbar {
    background: #2f6376;
    padding: 15px 0;
    height: 50px;
  }
  
  .container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .working-hours {
    color: white;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.03em;
  }
  
  .icons {
    position: absolute;
    right: 48px;
    display: flex;
    gap: 10px;
  }
  
  .icon-box {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
  }
  
  .icon-box img {
    width: 18px;
    height: 18px;
  }
  
  .badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #f4b400;
    color: white;
    font-size: 9px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* ============================================
     HERO
     ============================================ */
  
  .hero {
    position: relative;
    width: 100%;
    background: var(--black);
    overflow: hidden;
    display: grid;
  }
  
  /* ============================================
     HERO — BACKGROUND IMAGE
     ============================================ */
  
  .hero-image-wrapper {
    grid-area: 1 / 1;
    z-index: 0;
    width: 100%;
  }
  
  .hero-image {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .hero-overlay {
    grid-area: 1 / 1;
    z-index: 1;
   
  }
  
  /* ============================================
     NAVBAR — GRID İLE TAM ORTALI
     ============================================ */
  
  .navbar {
    grid-area: 1 / 1;
    align-self: start;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 60px 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
    animation: fadeUp 0.8s ease both;
  }
  
  .nav-left {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
  }
  
  .nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
  }
  
  .nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
  }
  
  .navbar a {
    text-decoration: none;
    color: var(--white-soft);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.25s ease;
    white-space: nowrap;
  }
  
  .navbar a:hover {
    color: var(--gold-light);
  }
  
  /* ============================================
     HERO CONTENT — TEXT
     ============================================ */
  
  .hero-content {
    grid-area: 1 / 1;
    align-self: start;
    position: relative;
    z-index: 10;
    margin-top: 155px;
    text-align: center;
    padding: 0 24px;
    animation: fadeUp 1s ease 0.2s both;
  }
  
  .hero-tagline {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--white-soft);
    margin-bottom: 10px;
    
  }
  
  .hero-title {
    font-size: clamp(26px, 4vw, 52px);
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gold);
    text-transform: uppercase;
    text-shadow: 0 2px 40px rgba(211, 180, 134, 0.3);
    line-height: 1.1;
  }
  
  /* ============================================
     HERO — CTA BUTTONS
     ============================================ */
  
  .hero-buttons {
    grid-area: 1 / 1;
    align-self: center;
    justify-self: center;
    position: relative;
    z-index: 10;
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 400px;
    animation: fadeUp 1s ease 0.4s both;
    white-space: nowrap;
  }
  
  .btn {
    display: inline-block;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 32px;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 999px
  }
  
.btn-outline {
    border: 1.5px solid var(--gold);
  color: #093035;
  background: var(--gold);
  }
  
  .btn-outline:hover {
    background: var(--gold);
    color: var(--black);
  }
  
  .btn-ghost {
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    color: var(--white-soft);
    background: transparent;
  }
  
  .btn-ghost:hover {
    border-color: var(--white);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
  }
  
  /* ============================================
     ANIMATIONS
     ============================================ */
  
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* ============================================
     RESPONSIVE
     ============================================ */
  
  @media (max-width: 900px) {
    .navbar {
      padding: 20px 24px 0;
      gap: 12px;
    }

    .nav-left,
    .nav-right {
      gap: 16px;
    }

    .navbar a {
      font-size: 11px;
    }

    .logo-img {
      height: 56px;
    }

    .hero-content {
      margin-top: -180px;
      padding: 0 16px;
    }

    .hero-tagline {
      font-size: 13px;
    }

    .hero-title {
      font-size: clamp(18px, 5vw, 28px);
      letter-spacing: 0.06em;
    }

    .hero-buttons {
      flex-direction: column;
      gap: 10px;
      margin-top: 160px;
      white-space: normal;
    }

    .btn {
      padding: 12px 22px;
      font-size: 12px;
    }
  }

  @media (max-width: 480px) {
    .navbar {
      padding: 16px 16px 0;
      gap: 8px;
    }

    .nav-left a:last-child,
    .nav-right a:first-child {
      display: none;
    }

    .navbar a {
      font-size: 10px;
    }

    .logo-img {
      height: 46px;
    }

    .hero-content {
      margin-top: -200px;
    }

    .hero-tagline {
      font-size: 11px;
    }

    .hero-title {
      font-size: clamp(16px, 5.5vw, 22px);
    }

    .hero-buttons {
      margin-top: 180px;
    }

    .container {
      padding: 0 16px;
    }

    .icons {
      right: 16px;
    }
  }
  
  /* ============================================
     MENU SECTION
     ============================================ */
  
  .menu-section {
    position: relative;
    width: 100%;
    padding: 0 0 80px;
    margin-top: -200px;
    overflow: visible;
    background: transparent;
    z-index: 5;
  }
  
  
  
  /* İçerik */
  .menu-inner {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    background: transparent;
  }
  
  .menu-title {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 40px;
    letter-spacing: 0.02em;
    padding-top: 40px;
  }
  
  /* Kartlar */
  .menu-cards {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }
  
  .menu-cards::-webkit-scrollbar {
    display: none;
  }
  
  .menu-card {
    position: relative;
    flex: 0 0 210px;
    height: 260px;
    overflow: hidden;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.08);
    cursor: pointer;
    transition: flex 0.4s ease, border-color 0.3s ease;
  }
  
  .menu-card:hover {
    flex: 0 0 270px;
    border-color: var(--gold-dim);
  }
  
  .menu-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.3s ease;
    filter: brightness(0.75);
  }
  
  .menu-card:hover img {
    transform: scale(1.06);
    filter: brightness(0.9);
  }
  
  /* Kart üstündeki isim */
  .menu-card span {
    position: absolute;
    top: 18px;
    left: 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.04em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    transition: color 0.3s ease;
  }
   p.menu-list-desc {
    color: #333333 ;
    text-align: center;
    line-height: 1.8;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 24px;
    max-width: 720px;
    margin: 0 auto 44px;
   }

  .menu-card:hover span {
    color: var(--gold-light);
  }
  
  /* ============================================
     RESPONSIVE — MENU
     ============================================ */
  
  @media (max-width: 768px) {
    .menu-section {
      margin-top: -60px;
    }

    .menu-inner {
      padding: 0 16px;
    }

    .menu-title {
      font-size: 18px;
      padding-top: 24px;
      margin-bottom: 24px;
    }

    .menu-card {
      flex: 0 0 140px;
      height: 180px;
    }

    .menu-card:hover {
      flex: 0 0 170px;
    }

    .menu-card span {
      font-size: 12px;
    }
  }

  @media (max-width: 480px) {
    .menu-section {
      margin-top: 0px;
      padding-bottom: 32px;
    }

    .menu-card {
      flex: 0 0 120px;
      height: 160px;
    }

    .menu-card:hover {
      flex: 0 0 150px;
    }
  }

  
  /* ============================================
     ORGANİK ÜRÜNLER SECTION
     ============================================ */
  
  .organik-section {
    background: var(--black);
    padding: 80px 0 90px;
  }
  
  .organik-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
  }
  
  .organik-title {
    font-size: clamp(18px, 3vw, 34px);
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 40px;
    letter-spacing: 0.02em;
  }
  
  .organik-cards {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }
  
  .organik-cards::-webkit-scrollbar {
    display: none;
  }
  
  .organik-card {
    position: relative;
    flex: 0 0 260px;
    height: 260px;
    overflow: hidden;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.08);
    cursor: pointer;
    transition: flex 0.4s ease, border-color 0.3s ease;
  }
  
  .organik-card:hover {
    flex: 0 0 320px;
    border-color: var(--gold-dim);
  }
  
  .organik-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.3s ease;
    filter: brightness(0.75);
  }
  
  .organik-card:hover img {
    transform: scale(1.06);
    filter: brightness(0.9);
  }
  
  .organik-card span {
    position: absolute;
    top: 18px;
    left: 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.04em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    transition: color 0.3s ease;
    line-height: 1.3;
  }
  
  .organik-card:hover span {
    color: var(--gold-light);
  }
  
  /* ============================================
     ŞEFİN TAVSİYESİ SECTION
     ============================================ */
  
  .sef-section {
    background: var(--black);
    padding: 10px 0 0;
    overflow: hidden;
  }
  
  .sef-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: flex-end;
    gap: 40px;
  }
  
  .sef-left {
    flex: 1;
    padding-bottom: 80px;
  }
  
  .sef-title {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 16px;
  }
  
  .sef-dish {
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
  }
  
  .sef-desc {
    font-size: 16px;
    font-weight: 300;
    color: #EDDFD3;
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 420px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
  }
  
  .sef-imza {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    color: var(--white-soft);
    margin-bottom: 32px;
  }
  
  .sef-btn {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 32px;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 999px;
  }
  
  .sef-right {
    flex: 0 0 720px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    margin-right: -60px;
  }
  
  .sef-img {
    width: 100%;
    max-width: 650px;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: bottom;
  }
  
  /* ============================================
     RESPONSIVE — YENİ BÖLÜMLER
     ============================================ */
  
  @media (max-width: 900px) {
    .organik-cards {
      flex-wrap: wrap;
    }
  
    .organik-card {
      flex: 0 0 calc(50% - 12px);
    }
  
    .sef-inner {
      flex-direction: column;
      align-items: flex-start;
      padding-bottom: 0;
    }
  
    .sef-left {
      padding-bottom: 0;
    }
  
    .sef-right {
      flex: unset;
      width: 100%;
      justify-content: center;
    }
  
    .sef-img {
      max-width: 340px;
    }
  }
  
  @media (max-width: 480px) {
    .organik-section {
      padding: 32px 0 60px;
    }

    .organik-inner,
    .sef-inner {
      padding: 0 24px;
    }
  
    .organik-card {
      flex: 0 0 100%;
      height: 180px;
    }
  }
  
  /* ============================================
     VIDEO SECTION
     ============================================ */
  
  .video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
  }
  
  .video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
  }
  
  .video-content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 0 24px;
    animation: fadeUp 1s ease both;
  }
  
  .video-tagline {
    font-size: clamp(22px, 1.5vw, 18px);
    font-weight: 400;
    color: var(--white-soft);
    letter-spacing: 1px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.6);
    line-height: 1.4;
  }
  
  .video-title {
    font-size: clamp(28px, 5vw, 64px);
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 4px 40px rgba(211, 180, 134, 0.35);
    line-height: 1.1;
  }
  
  /* ============================================
     FOOTER INFO SECTION
     ============================================ */
  
  .footer-info {
    background: #1e4d5c;
    padding: 64px 0 48px;
  }
  
  .footer-info-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }
  
  .footer-logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
  }
  
  .footer-nav {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer-nav a {
    text-decoration: none;
    color: var(--white-soft);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: color 0.25s ease;
  }
  
  .footer-nav a:hover {
    color: var(--gold-light);
  }
  
  .footer-desc {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    max-width: 580px;
  }
  
  .footer-hours {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.03em;
  }
  
  .footer-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .btn-gold {
   
    background: #093035;
    color: #D4AF37;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 999px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;

  }
  
  .btn-gold:hover {
    background: var(--gold);
    border-color: #093035;
    color: #093035;
  }
  
  .btn-outline-white {
    border: 1.5px solid rgba(255,255,255,0.6);
    background: transparent;
    color: var(--white-soft);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 999px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
  }
  
  .btn-outline-white:hover {
    border-color: var(--white);
    color: var(--white);
    background: rgba(255,255,255,0.08);
  }
  
  .footer-social {
    display: flex;
    gap: 14px;
    align-items: center;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: border-color 0.25s ease, color 0.25s ease;
  }
  .footer-social .social-icon svg {
    stroke: #ffffff;
  }
  .social-icon:hover {
    border-color: var(--gold);
    color: var(--gold);
  }
  .social-icon:hover svg {
    stroke: var(--gold);
  }
  
  .footer-map {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
  }
  
  /* ============================================
     FOOTER COPYRIGHT
     ============================================ */
  
  .footer-copy {
    background: #163a47;
    padding: 18px 48px;
    text-align: center;
  }
  
  .footer-copy p {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.04em;
  }
  
  /* ============================================
     RESPONSIVE — VIDEO & FOOTER
     ============================================ */
  
  @media (max-width: 768px) {
    .video-section {
      height: 100vh;
    }
  
    .footer-info-inner {
      padding: 0 24px;
    }
  
    .footer-nav {
      gap: 20px;
    }
  
    .footer-buttons {
      flex-direction: column;
      align-items: center;
    }
  }

/* ============================================
   MENU PAGE — HEADER
   ============================================ */

.menu-page {
  background:white;
  min-height: 100vh;
  padding-top: 88px;
}

.menu-page-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #245D7C;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.menu-page-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 48px;
  position: relative;
}

.menu-page-icons {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.menu-page-navbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.menu-page-nav-left {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
}

.menu-page-nav-right {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
}

.menu-page-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-page-logo .logo-img {
  height: 56px;
}

.menu-page-navbar a {
  text-decoration: none;
  color: var(--white-soft);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.menu-page-navbar a:hover {
  color: var(--gold);
}

/* ============================================
   MENU PAGE — MAIN CONTENT
   ============================================ */

.menu-page-main {
  background: white;
}

.menu-list-section {
  padding: 56px 0 80px;
}

.menu-list-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Başlık */
.menu-list-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: #123844;
  text-align: center;
  margin-bottom: 20px;
}

.menu-list-desc {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
  font-size: clamp(14px, 1.4vw, 16px);
  color: #333333 !important;
  line-height: 1.8;
}

/* Filtre sekmeleri */
.menu-filters {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 52px;
  border-bottom: 2px solid rgba(18, 56, 68, 0.12);
}

.menu-filter-btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  padding: 10px 22px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(18, 56, 68, 0.55);
  cursor: pointer;
  transition: color 0.22s, border-color 0.22s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.menu-filter-btn:hover {
  color: #123844;
}

.menu-filter-btn.active {
  color: #123844;
  border-bottom-color: #123844;
}

/* Kategori bloğu */
.menu-category {
  margin-bottom: 60px;
}
.menu-category.gizli {
  display: none !important;
}

.menu-category-title {
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  margin-bottom: 90px;
}

/* Kartlar */
.menu-item-cards {
  display: flex;
  column-gap: 28px;
  row-gap: 90px;
  justify-content: center;
  flex-wrap: wrap;
}

.menu-item-card {
  position: relative;
  width: 260px;
  background: #f0e9e0;
  padding: 114px 22px 28px;
  text-align: center;
  border-radius: 4px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.menu-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(18, 56, 68, 0.12);
}

.menu-item-img-wrap {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f5f0ea;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.menu-item-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-item-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #123844;
  line-height: 1.25;
}
.menu-item-clickable {
  cursor: pointer;
}
.menu-item-clickable:hover .menu-item-img-wrap {
  transform: translateX(-50%) scale(1.04);
}
.menu-item-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  margin: 6px 0 0;
}
.menu-item-desc-short {
  font-size: 12px;
  color: rgba(18,56,68,0.55);
  margin: 6px 0 0;
  line-height: 1.5;
}

/* ============================================
   MENÜ ÜRÜN DETAY MODAL
   ============================================ */
.menu-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 20000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.menu-modal-overlay.open {
  display: flex;
}
.menu-modal-box {
  background: #fff;
  border-radius: 20px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  animation: modalSlideUp 0.3s cubic-bezier(.4,0,.2,1);
}
@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.menu-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(18,56,68,0.08);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #123844;
  transition: background 0.2s;
  z-index: 2;
}
.menu-modal-close:hover {
  background: rgba(18,56,68,0.15);
}
.menu-modal-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.menu-modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.menu-modal-icerik {
  padding: 24px 28px 28px;
}
.menu-modal-header {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.menu-modal-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: #123844;
  margin: 0;
  line-height: 1.2;
}
.menu-modal-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  background: rgba(211,180,134,0.15);
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.menu-modal-desc {
  font-size: 14px;
  color: rgba(18,56,68,0.7);
  line-height: 1.75;
  margin-bottom: 20px;
}
.menu-modal-section {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(18,56,68,0.08);
}
.menu-modal-section-title {
  font-size: 13px;
  font-weight: 600;
  color: #123844;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
}
.menu-modal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.menu-modal-list li {
  background: #f0e9e0;
  color: #123844;
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 400;
}
.menu-modal-list--alrg li {
  background: rgba(231,76,60,0.1);
  color: #c0392b;
  font-weight: 500;
}
@media (max-width: 600px) {
  .menu-modal-box { border-radius: 16px; }
  .menu-modal-img-wrap { border-radius: 16px 16px 0 0; }
  .menu-modal-icerik { padding: 18px 20px 24px; }
  .menu-modal-header h2 { font-size: 18px; }
}

/* ============================================
   MENU PAGE — ŞEFİN TAVSİYESİ
   ============================================ */

.menu-chef-section {
  background: white;
  padding: 20px 0 0;
}

.menu-chef-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: flex-end;
  gap: 32px;
}

.menu-chef-left {
  flex: 1;
  padding-bottom: 60px;
}

.menu-chef-left h2 {
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: #123844;
  margin-bottom: 12px;
}

.menu-chef-dish {
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
}

.menu-chef-desc {
  max-width: 100%;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(18, 56, 68, 0.68);
  margin-bottom: 18px;
}

.menu-chef-sign {
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: rgba(18, 56, 68, 0.75);
  margin-bottom: 24px;
}

.menu-chef-btn {
  border: 1.5px solid var(--gold);
  background: var(--gold);
  color: #123844;
  font-size: 13px;
  letter-spacing: 1px;
  border-radius: 999px;
}

.menu-chef-right {
  flex: 0 0 600px;
  display: flex;
  align-items: flex-end;
  margin-right: -90px;
}

.menu-chef-right img {
  width: 100%;
  height: auto;
  display: block;
}

/* Menü sayfası footer renk override */
.footer-info-menu {
  background: #245D7C;
}

/* ============================================
   MENU PAGE — RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .menu-page-header-inner {
    padding: 12px 24px;
  }

  .menu-page-icons {
    right: 24px;
  }

  .menu-page-nav-left,
  .menu-page-nav-right {
    gap: 20px;
  }

  .menu-page-navbar a {
    font-size: 11px;
  }

  .menu-list-inner,
  .menu-chef-inner {
    padding: 0 24px;
  }

  .menu-chef-inner {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .menu-chef-left {
    padding-bottom: 24px;
    max-width: 100%;
  }

  .menu-chef-right {
    flex: unset;
    width: 300px;
  }
}

@media (max-width: 600px) {
  .menu-page {
    padding-top: 78px;
  }

  .menu-page-nav-left a:last-child,
  .menu-page-nav-right a:first-child {
    display: none;
  }

  .menu-page-logo .logo-img {
    height: 44px;
  }

  .menu-filters {
    gap: 0;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 2px;
  }

  .menu-filter-btn {
    padding: 8px 14px;
    font-size: 12px;
  }

  .menu-item-card {
    width: calc(50% - 14px);
    min-width: 140px;
  }

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

/* ============================================
   AUTH PAGES (register / login)
   ============================================ */

.auth-page {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.auth-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.auth-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.72);
}

.auth-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
}

.auth-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 24px;
}

.auth-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 2px;
}

.auth-subtitle {
  font-size: 14px;
  font-weight: 300;
  color: var(--white-soft);
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.auth-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.auth-input-wrap {
  position: relative;
  width: 100%;
}

.auth-input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(147, 147, 147, 1);
  pointer-events: none;
}

.auth-input {
  width: 100%;
  padding: 15px 18px 15px 46px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  outline: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.auth-input::placeholder {
  color: rgba(0, 0, 0, 0.38);
}

.auth-input:focus {
  background: #fff;
  box-shadow: 0 0 0 2px rgba(211, 180, 134, 0.6);
}

.auth-btn {
  width: 100%;
  padding: 15px;
  margin-top: 4px;
  background: var(--gold);
  border: none;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: white;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease;
}

.auth-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.auth-switch {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 300;
  color: var(--white-soft);
  text-align: center;
}

.auth-switch a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.auth-switch a:hover {
  color: var(--gold-light);
}

.auth-login-link {
  display: block;
  margin-top: 18px;
  text-align: center;
  font-size: 13px;
  font-weight: 300;
  color: var(--white-soft);
  text-decoration: none;
  transition: color 0.2s ease;
  letter-spacing: 0.01em;
}

.auth-login-link:hover {
  color: var(--gold);
}

.auth-forgot-link {
  display: block;
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  transition: color 0.2s ease;
  letter-spacing: 0.01em;
}

.auth-forgot-link:hover {
  color: var(--gold);
}

.auth-back-btn {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: var(--white-soft);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.03em;
  backdrop-filter: blur(6px);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.auth-back-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

/* ============================================
   ÜRÜN DETAY SAYFASI
   ============================================ */

.urun-detay-section {
  padding: 48px 0 80px;
  background: #ffffff;
  min-height: calc(100vh - 88px);
}

.urun-detay-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 48px;
}

.urun-geri-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(18, 56, 68, 0.65);
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 40px;
  transition: color 0.2s ease;
}

.urun-geri-btn:hover {
  color: #123844;
}

.urun-detay-kart {
  display: flex;
  align-items: center;
  gap: 72px;
  background: #ffffff;
}

.urun-detay-sol {
  flex: 0 0 auto;
}

.urun-detay-img-wrap {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.14);
}

.urun-detay-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.urun-detay-sag {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.urun-detay-isim {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  color: #123844;
  line-height: 1.15;
  margin-bottom: 10px;
  text-align: left;
}

.urun-detay-fiyat {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-align: left;
}

.urun-detay-aciklama1 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(18, 56, 68, 0.65);
  line-height: 1.75;
  margin-bottom: 14px;
  text-align: left;
}

.urun-detay-aciklama2 {
  font-size: 14px;
  font-weight: 300;
  color: rgba(18, 56, 68, 0.55);
  line-height: 1.75;
  margin-bottom: 36px;
  text-align: left;
}

.urun-miktar {
  display: flex;
  align-items: center;
  gap: 0;
  background: #ede4d8;
  border-radius: 999px;
  width: fit-content;
  padding: 4px;
  margin-bottom: 24px;
}

.urun-miktar-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--gold);
  color: #2a1f0e;
  font-size: 20px;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  line-height: 1;
}

.urun-miktar-btn:hover {
  background: var(--gold-light);
}

.urun-miktar-sayi {
  min-width: 44px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #123844;
}

.urun-sepete-ekle-btn {
  width: 100%;
  max-width: 320px;
  padding: 16px;
  background: #123844;
  border: none;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #fff;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease;
}

.urun-sepete-ekle-btn:hover {
  background: #1a5060;
  transform: translateY(-1px);
}

/* Kart link stili sıfırla */
a.menu-item-card {
  text-decoration: none;
  display: block;
  color: inherit;
}

@media (max-width: 768px) {
  .urun-detay-kart {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .urun-detay-img-wrap {
    width: 280px;
    height: 280px;
  }

  .urun-detay-sag {
    width: 100%;
  }

  .urun-sepete-ekle-btn {
    max-width: 100%;
  }

  .urun-detay-inner {
    padding: 0 24px;
  }
}

/* ============================================
   SEPET SAYFASI
   ============================================ */

.sepet-section {
  padding: 52px 0 80px;
  background: #ffffff;
  min-height: calc(100vh - 88px);
}

.sepet-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* Sol kolon — ürün listesi */
.sepet-sol {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sepet-urun-kart {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f0e9e0;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 16px;
  position: relative;
}

.sepet-urun-img-wrap {
  flex: 0 0 90px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
}

.sepet-urun-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sepet-urun-bilgi {
  flex: 1;
  min-width: 0;
}

.sepet-urun-isim {
  font-size: 17px;
  font-weight: 700;
  color: #123844;
  margin-bottom: 4px;
  text-align: left;
}

.sepet-urun-aciklama {
  font-size: 12px;
  font-weight: 300;
  color: rgba(18, 56, 68, 0.6);
  line-height: 1.5;
  text-align: left;
  margin-bottom: 12px;
  max-width: 320px;
}

.sepet-urun-alt {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sepet-miktar {
  display: flex;
  align-items: center;
  gap: 0;
  background: #ede4d8;
  border-radius: 999px;
  padding: 3px;
}

.sepet-miktar-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--gold);
  color: #2a1f0e;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  line-height: 1;
}

.sepet-miktar-btn:hover {
  background: var(--gold-light);
}

.sepet-miktar-sayi {
  min-width: 36px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #123844;
}

.sepet-sil-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #123844;
  opacity: 0.5;
  padding: 4px;
  transition: opacity 0.2s ease, color 0.2s ease;
  display: flex;
  align-items: center;
}

.sepet-sil-btn:hover {
  opacity: 1;
  color: #c0392b;
}

.sepet-urun-fiyat {
  font-size: 17px;
  font-weight: 700;
  color: #123844;
  white-space: nowrap;
  align-self: flex-start;
  margin-top: 4px;
}

/* Toplam + Ödeme */
.sepet-toplam-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 20px;
  border-top: 1.5px solid rgba(18, 56, 68, 0.12);
}

.sepet-toplam-label {
  font-size: 16px;
  font-weight: 700;
  color: #123844;
}

.sepet-toplam-tutar {
  background: var(--gold);
  color: #2a1f0e;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 6px;
}

.sepet-odeme-btn {
  margin-top: 20px;
  width: 100%;
  max-width: 360px;
  padding: 16px;
  background: #123844;
  border: none;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #fff;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease;
  letter-spacing: 1px;
}

.sepet-odeme-btn:hover {
  background: #1a5060;
  transform: translateY(-1px);
}

/* Boş sepet */
.sepet-bos {
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 0;
  font-size: 15px;
  color: rgba(18, 56, 68, 0.6);
}

/* Sağ kolon — teslimat & ödeme */
.sepet-sag {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 4px;
}

.sepet-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sepet-panel-baslik {
  font-size: 15px;
  font-weight: 700;
  color: #123844;
  margin-bottom: 4px;
}

.sepet-radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: var(--gold);
  cursor: pointer;
}

.sepet-radio-label input[type="radio"] {
  display: none;
}

.sepet-radio-custom {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  flex-shrink: 0;
  transition: background 0.2s ease;
  position: relative;
}

.sepet-radio-label input[type="radio"]:checked + .sepet-radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

@media (max-width: 768px) {
  .sepet-inner {
    flex-direction: column;
    padding: 0 24px;
    gap: 32px;
  }

  .sepet-sag {
    flex: unset;
    width: 100%;
  }

  .sepet-odeme-btn {
    max-width: 100%;
  }
}

/* ============================================
   İLETİŞİM SAYFASI
   ============================================ */

.iletisim-hero {
  background: #fff;
  padding: 56px 48px 40px;
  text-align: center;
}

.iletisim-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}

.iletisim-hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.iletisim-hero-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: #123844;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.iletisim-hero-sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(18, 56, 68, 0.6);
  line-height: 1.75;
}

/* Ana iki kolon */
.iletisim-section {
  background: #fff;
  padding: 72px 0 80px;
}

.iletisim-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

/* FORM */
.iletisim-form-wrap {
  flex: 1;
}

.iletisim-form-title {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  color: #123844;
  margin-bottom: 8px;
  text-align: left;
}

.iletisim-form-sub {
  font-size: 13px;
  font-weight: 300;
  color: rgba(18,56,68,0.6);
  margin-bottom: 32px;
  text-align: left;
}

.iletisim-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.iletisim-form-row {
  display: flex;
  gap: 18px;
}

.iletisim-input-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}

.iletisim-input-group label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #123844;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
}

.iletisim-input-group input,
.iletisim-input-group select,
.iletisim-input-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(18,56,68,0.12);
  border-radius: 10px;
  background: #f7f5f2;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 300;
  text-align: left;
  color: #123844;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: none;
  appearance: none;
}

.iletisim-input-group input::placeholder,
.iletisim-input-group textarea::placeholder {
  color: rgba(18,56,68,0.35);
}

.iletisim-input-group input:focus,
.iletisim-input-group select:focus,
.iletisim-input-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(211,180,134,0.2);
}

.iletisim-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 36px;
  background: #123844;
  border: none;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #fff;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease;
  align-self: flex-start;
  margin-top: 4px;
}

.iletisim-submit-btn:hover {
  background: #1a5060;
  transform: translateY(-1px);
}

.iletisim-success {
  display: none;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 500;
  color: #2a7a5a;
}

/* BİLGİ KARTI */
.iletisim-bilgi-wrap {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.iletisim-bilgi-kart {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f7f5f2;
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 14px;
  border: 1px solid rgba(18,56,68,0.07);
  transition: box-shadow 0.2s ease;
}

.iletisim-bilgi-kart:hover {
  box-shadow: 0 6px 24px rgba(18,56,68,0.09);
}

.iletisim-bilgi-ikon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(211,180,134,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.iletisim-bilgi-kart h4 {
  font-size: 13px;
  font-weight: 600;
  color: #123844;
  margin-bottom: 5px;
  letter-spacing: 0.03em;
  text-align: left;
}

.iletisim-bilgi-kart p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(18,56,68,0.7);
  line-height: 1.7;
  text-align: left;
}

.iletisim-bilgi-kart > div {
  text-align: left;
}

.iletisim-social-row {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.iletisim-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(18,56,68,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #123844;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.iletisim-social-btn:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
}

/* HARİTA */
.iletisim-map-section {
  width: 100%;
  line-height: 0;
  filter: grayscale(20%);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .iletisim-inner {
    flex-direction: column;
    padding: 0 24px;
    gap: 40px;
  }

  .iletisim-form-wrap {
    width: 100%;
  }

  .iletisim-form-row {
    flex-direction: column;
    gap: 18px;
  }

  .iletisim-bilgi-wrap {
    flex: unset;
    width: 100%;
  }

  .iletisim-hero {
    padding: 48px 24px 40px;
    text-align: center;
  }

  .iletisim-submit-btn {
    align-self: stretch;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .iletisim-submit-btn {
    align-self: stretch;
    justify-content: center;
  }
}

/* ============================================
   HAKKIMIZDA SAYFASI
   ============================================ */

/* BÖLÜM 1 — Hakkımızda + Hikayemiz */
.hk-intro-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  background: #fff;
}

.hk-intro-img {
  overflow: hidden;
}

.hk-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hk-intro-content {
  padding: 64px 56px 64px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  background: #fff;
}

.hk-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hk-baslik {
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 700;
  color: #123844;
  line-height: 1.1;
}

.hk-metin {
  font-size: 14px;
  font-weight: 300;
  color: rgba(18, 56, 68, 0.72);
  line-height: 1.85;
  max-width: 520px;
}

/* BÖLÜM 2 — Misyon */
.hk-misyon-vizyon-metin {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.85;
  margin-bottom: 32px;
}

.hk-misyon-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.hk-misyon-content {
  background: var(--gold);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.hk-misyon-baslik {
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.hk-misyon-liste {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hk-misyon-liste li {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.hk-misyon-liste li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
}

.hk-misyon-img {
  overflow: hidden;
}

.hk-misyon-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* BÖLÜM 3 — Müşteri Yorumları */
.hk-yorum-section {
  background: #fff;
  padding: 80px 0 90px;
}

.hk-yorum-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}

.hk-yorum-baslik {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 700;
  color: #123844;
  margin-bottom: 44px;
}

.hk-slider-wrap {
  position: relative;
}

.hk-slider {
  background: #f7f5f2;
  border-radius: 16px;
  padding: 44px 48px 36px;
  min-height: 200px;
  position: relative;
}

.hk-yorum-kart {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  animation: hkFadeIn 0.4s ease;
}

.hk-yorum-kart.active {
  display: flex;
}

@keyframes hkFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hk-yorum-metin {
  font-size: 14px;
  font-weight: 300;
  color: rgba(18, 56, 68, 0.78);
  line-height: 1.85;
  font-style: italic;
  text-align: center;
}

.hk-yorum-isim {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.hk-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.hk-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(18, 56, 68, 0.18);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.2s ease;
}

.hk-dot.active {
  background: var(--gold);
  transform: scale(1.25);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hk-intro-section,
  .hk-misyon-section {
    grid-template-columns: 1fr;
  }

  .hk-intro-img {
    height: 280px;
  }

  .hk-intro-content {
    padding: 44px 28px;
  }

  .hk-misyon-content {
    padding: 44px 28px;
    order: 2;
  }

  .hk-misyon-img {
    height: 280px;
    order: 1;
  }

  .hk-yorum-inner {
    padding: 0 24px;
  }

  .hk-slider {
    padding: 32px 28px 28px;
  }
}

/* ============================================
   HAMBURGER MENU
   ============================================ */

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 19px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: absolute;
  right: 60px;
  top: 36px;
  z-index: 200;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white-soft);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-btn.open span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* shared header hamburger */
.menu-hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 19px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: absolute;
  left: 48px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
}

.menu-hamburger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white-soft);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-hamburger-btn.open span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.menu-hamburger-btn.open span:nth-child(2) {
  opacity: 0;
}
.menu-hamburger-btn.open span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* mobil dropdown menü */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #245D7C;
  backdrop-filter: blur(8px);
  z-index: 999;
  padding: 8px 0;
  border-top: 1px solid rgba(211, 180, 134, 0.2);
}

.mobile-nav.open {
  display: flex;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: auto;
  height: auto;
  max-height: calc(100vh - 70px);
  z-index: 99999;
  background: #245D7C;
  padding: 12px 0 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.mobile-nav a {
  color: var(--white-soft);
  text-decoration: none;
  padding: 14px 28px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.2s, color 0.2s;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

/* Kapatma butonu — menü açıkken göster (index mobil) */
.mobile-nav-top {
  display: none;
  justify-content: flex-end;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav.open .mobile-nav-top {
  display: flex !important;
}
.mobile-nav-close-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--white-soft);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav-close-btn:hover {
  background: rgba(255,255,255,0.1);
  color: var(--gold);
}

.mobile-nav a:hover {
  background: rgba(211, 180, 134, 0.12);
  color: var(--gold);
}

/* hamburger aktif, nav linkleri gizli */
@media (max-width: 768px) {
  .topbar .icons {
    display: none !important;
  }
  .menu-page-icons {
    display: none !important;
  }

  .hamburger-btn {
    display: flex;
    right: 16px;
    top: 20px;
  }

  .nav-left,
  .nav-right {
    display: none !important;
  }

  /* logo ortala */
  .navbar {
    display: flex;
    justify-content: center;
  }

  .menu-hamburger-btn {
    display: flex;
    left: 24px;
  }

  .menu-page-nav-left,
  .menu-page-nav-right {
    display: none !important;
  }

  /* logo ortala */
  .menu-page-navbar {
    position: relative;
    display: flex;
    justify-content: center;
  }
}

/* ============================================
   HAKKIMIZDA v2
   ============================================ */
.hk2-section {
  padding: 72px 48px 56px;
  background: #fff;
  text-align: center;
}
.hk2-section--alt {
  background: #faf8f5;
}
.hk2-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.hk2-baslik {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  color: #123844;
  margin-bottom: 20px;
}
.hk2-metin p {
  font-size: 15px;
  color: rgba(18,56,68,0.7);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 10px;
}
.hk2-slider-wrap {
  margin-top: 36px;
  position: relative;
}
.hk2-slider-viewport {
  overflow: hidden;
  border-radius: 16px;
}
.hk2-slider {
  display: flex;
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
}
.hk2-slide {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
}
.hk2-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hk2-slider-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}
.hk2-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #123844;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(18,56,68,0.18);
}
.hk2-btn:hover {
  background: var(--gold);
  transform: scale(1.08);
}
.hk2-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.hk2-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(18,56,68,0.2);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.hk2-dot.active {
  background: #123844;
  transform: scale(1.3);
}

/* Vizyon + Misyon */
.hk2-vm-section {
  padding: 0;
}
.hk2-vm-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
}
.hk2-vm-kart {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hk2-vm-kart--beyaz {
  background: #fff;
}
.hk2-vm-kart--gold {
  background: var(--gold);
}
.hk2-vm-baslik {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 700;
  color: #123844;
  margin-bottom: 20px;
}
.hk2-vm-kart--gold .hk2-vm-baslik {
  color: #fff;
}
.hk2-vm-metin {
  font-size: 14px;
  color: rgba(18,56,68,0.7);
  line-height: 1.85;
  margin-bottom: 12px;
}
.hk2-misyon-liste {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hk2-misyon-liste li {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
}
.hk2-misyon-liste li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #fff;
}

@media (max-width: 768px) {
  .hk2-section { padding: 48px 24px 40px; }
  .hk2-vm-inner { grid-template-columns: 1fr; }
  .hk2-vm-kart { padding: 44px 28px; }
}

/* ============================================
   EKİBİMİZ SAYFASI
   ============================================ */

/* ŞEFİMİZ (Ekibimiz sayfası) */
.chef-ek-section {
  padding: 72px 48px 64px;
  background: #fff;
}
.chef-ek-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.chef-ek-baslik {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: #123844;
  text-align: center;
  margin-bottom: 48px;
}
.chef-ek-icerik {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 64px;
  align-items: center;
}
.chef-ek-gorsel-wrap {
  border-radius: 20px;
  overflow: hidden;
}
.chef-ek-gorsel {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 3/4;
}
.chef-ek-metin {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.chef-ek-unvan {
  font-size: 18px;
  font-weight: 600;
  color: #123844;
  margin-bottom: 20px;
  text-align: center;
}
.chef-ek-aciklama {
  font-size: 15px;
  line-height: 1.95;
  color: #444;
  font-weight: 300;
  text-align: center;
}

/* EKİBİMİZ */
.team-section {
  padding: 72px 48px 80px;
  background: #f8f6f1;
}
.team-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.team-baslik {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: #123844;
  text-align: center;
  margin-bottom: 16px;
}
.team-alt-baslik {
  font-size: 15px;
  color: rgba(18,56,68,0.65);
  text-align: center;
  font-weight: 300;
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 14px;
}
.team-aciklama {
  font-size: 15px;
  color: rgba(18,56,68,0.65);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}
.team-bos {
  text-align: center;
  color: rgba(18,56,68,0.4);
  padding: 60px 0;
}

/* Slider */
.team-slider-wrap {
  margin-top: 40px;
  position: relative;
}
.team-slider-viewport {
  overflow: hidden;
  border-radius: 16px;
}
.team-slider {
  display: flex;
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
}
.team-slide {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
}
.team-slide img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 4px 20px rgba(18,56,68,0.10);
}
.team-slider-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.team-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #123844;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(18,56,68,0.18);
}
.team-btn:hover {
  background: var(--gold);
  transform: scale(1.08);
}
.team-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.team-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(18,56,68,0.2);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.team-dot.active {
  background: #123844;
  transform: scale(1.3);
}

/* ============================================
   BLOG SAYFASI
   ============================================ */
.blog-hero {
  background: #fff;
  padding: 72px 48px 48px;
  text-align: center;
  border-bottom: 1px solid rgba(18,56,68,0.08);
}
.blog-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}
.blog-hero-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: #123844;
  margin-bottom: 16px;
}
.blog-hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(18,56,68,0.6);
  line-height: 1.75;
}
.blog-section {
  padding: 64px 48px 100px;
  background: #ffffff;
}
.blog-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.blog-kart {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(18,56,68,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.blog-kart:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(18,56,68,0.13);
}
.blog-kart-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #e8e3db;
}
.blog-kart-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.blog-kart:hover .blog-kart-img img {
  transform: scale(1.05);
}
.blog-kart-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8e3db 0%, #d4cfc7 100%);
}
.blog-kart-icerik {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-kart-tarih {
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.blog-kart-baslik {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 600;
  color: #123844;
  line-height: 1.4;
  margin-bottom: 12px;
}
.blog-kart-ozet {
  font-size: 13px;
  color: rgba(18,56,68,0.6);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-kart-devami {
  display: block;
  width: 100%;
  margin-top: auto;
  padding: 10px 18px;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 8px;
  text-align: center;
  transition: background 0.2s;
  box-sizing: border-box;
}
.blog-kart:hover .blog-kart-devami {
  background: #b8902a;
}
.blog-bos {
  text-align: center;
  color: rgba(18,56,68,0.45);
  padding: 60px 0;
  font-size: 15px;
}

/* Blog Detay */
.blog-detay-section {
  padding: 64px 48px 100px;
  background: #fff;
}
.blog-detay-inner {
  max-width: 780px;
  margin: 0 auto;
}
.blog-geri {
  position: fixed;
  top: 90px;
  left: 24px;
  display: inline-block;
  padding: 10px 18px;
  background: #245D7C;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(18,56,68,0.18);
  transition: background 0.2s;
  z-index: 100;
  letter-spacing: 0.02em;
}
.blog-geri:hover {
  background: var(--gold);
}

@media (max-width: 600px) {
  .blog-geri {
    position: static;
    margin-bottom: 28px;
  }
}
.blog-detay-tarih {
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.blog-detay-baslik {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  color: #123844;
  line-height: 1.2;
  margin-bottom: 32px;
}
.blog-detay-img {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 40px;
}
.blog-detay-img img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}
.blog-detay-icerik {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(18,56,68,0.8);
}

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .chef-ek-icerik { grid-template-columns: 1fr; gap: 36px; }
  .chef-ek-gorsel-wrap { max-width: 440px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-section { padding: 40px 20px 60px; }
  .blog-hero { padding: 48px 24px 36px; }
  .blog-detay-section { padding: 40px 24px 60px; }
  .chef-ek-section { padding: 48px 24px 48px; }
  .team-section { padding: 48px 24px 60px; }
  .team-slide { flex: 0 0 100%; }
}