:root {
    --bg-main: #FCFAF7;
    --bg-section: #F7F2EA;
    --text-main: #4A3325;
    --heading: #7F3A32;
    --accent: #B04A3A;
    --divider: #D9C4A8;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  /* HEADER */
  
  .site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(252, 250, 247, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(217, 196, 168, 0.5);
  }
  
  .header-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  
  .logo {
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--heading);
    font-size: 1.1rem;
    white-space: nowrap;
  }
  
  .main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.95rem;
  }
  
  .main-nav a {
    position: relative;
    padding-bottom: 0.15rem;
  }
  
  .main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.2s ease;
  }
  
  .main-nav a:hover::after,
  .main-nav a:focus-visible::after,
  .main-nav a.active::after {
    width: 100%;
  }
  
  
  /* MOBILE NAV BUTTON */
  
  .nav-toggle {
    display: none;
    border: none;
    background: none;
    padding: 0.25rem;
    cursor: pointer;
  }
  
  .nav-toggle span,
  .nav-toggle span::before,
  .nav-toggle span::after {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-main);
    border-radius: 999px;
    position: relative;
    transition: all 0.2s ease;
  }
  
  .nav-toggle span::before,
  .nav-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
  }
  
  .nav-toggle span::before { top: -6px; }
  .nav-toggle span::after  { top:  6px; }
  
  .nav-open .nav-toggle span { background: transparent; }
  .nav-open .nav-toggle span::before {
    top: 0;
    transform: rotate(45deg);
  }
  .nav-open .nav-toggle span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  
  .nav-open .main-nav {
    max-height: 18.5rem;
    opacity: 1;
    pointer-events: auto;
  }
  
  @media (max-width: 768px) {
    .main-nav {
      position: absolute;
      inset-inline: 0;
      top: 100%;
      flex-direction: column;
      align-items: flex-start;
      padding: 0.75rem 1.25rem 1rem;
      background: rgba(252, 250, 247, 0.97);
      border-bottom: 1px solid rgba(217, 196, 168, 0.6);
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
      transition: all 0.22s ease;
    }
  
    .nav-toggle {
      display: block;
    }
  }
  
  /* LAYOUT */
  
  .page {
    max-width: 1080px;
    margin: 0 auto;
    padding: 1.75rem 1.25rem 3.5rem;
  }
  
  section {
    margin-bottom: 3.5rem;
  }
  
  .section-title {
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(1.7rem, 3vw, 2rem);
    color: var(--heading);
    margin-bottom: 1.25rem;
  }
  
  /* HERO */
  
  .hero {
    display: grid;
    gap: 2rem;
    align-items: center;
    margin-top: 0.75rem;
  }
  
  @media (min-width: 840px) {
    .hero {
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    }
  }
  
  .hero-kicker {
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(74, 51, 37, 0.7);
    margin-bottom: 0.75rem;
  }
  
  .hero-title {
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: var(--heading);
    line-height: 1.1;
    margin-bottom: 0.85rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(74, 51, 37, 0.7);
    margin-bottom: 1.75rem;
  }
  
  .hero-text {
    max-width: 32rem;
    font-size: 0.97rem;
    margin-bottom: 1.75rem;
  }
  
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.5rem;
    border-radius: 999px;
    border: none;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    white-space: nowrap;
  }
  
  .btn-primary {
    background: var(--accent);
    color: #FCFAF7;
    box-shadow: 0 10px 22px rgba(176, 74, 58, 0.35);
  }
  
  .btn-primary:hover {
    background: var(--heading);
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(176, 74, 58, 0.45);
  }
  
  .btn-ghost {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
  }
  
  .btn-ghost:hover {
    background: rgba(176, 74, 58, 0.06);
  }

  .hero-image-wrapper {
    background: var(--bg-section);
    border-radius: 22px;
    padding: 1.2rem 1.2rem 1rem;
    border: 1px solid rgba(217, 196, 168, 0.9);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.04);
  }
  
  .hero-image-placeholder {
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #e2d5c2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.3rem;
    color: rgba(74, 51, 37, 0.7);
  }

  /* WEEKLY MENU */
  .weekly-menu-intro {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: 40rem;
  }
  
  /* Card grid */
  .weekly-menu-grid {
    display: grid;
    gap: 1.25rem;
  }
  
  /* Tablet & up: 2 columns */
  @media (min-width: 720px) {
    .weekly-menu-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  /* Desktop & up: 3 columns (optional – can keep at 2) */
  @media (min-width: 1024px) {
    .weekly-menu-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  
  .weekly-day-card {
    background: var(--bg-section);
    border-radius: 14px;
    padding: 1rem 1rem 1.1rem;
    border: 1px solid rgba(217, 196, 168, 0.9);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.03);
  }
  
  .weekly-day-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
  }
  
  .weekly-day-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.65rem;
    color: var(--heading);
  }
  
  .weekly-day-date {
    font-size: 0.82rem;
    color: rgba(74, 51, 37, 0.75);
  }
  
  .weekly-day-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
  }
  
  .weekly-day-item + .weekly-day-item {
    margin-top: 0.2rem;
  }

  .weekly-day-card.is-today {
    border: 2px solid var(--accent); /* your bordo accent */
    background: rgba(124, 40, 39, 0.06); /* very soft tint */
    transform: translateY(-2px);
    transition: all 0.25s ease;
    position: relative;
  }
    
  .weekly-day-card.is-today::before {    
    position: absolute;
    top: -0.6rem;
    right: 0.75rem;
    background: var(--accent);
    color: white;
    padding: 0.1rem 0.45rem;
    font-size: 0.7rem;
    border-radius: 4px;
    letter-spacing: 0.02em;
    box-shadow: 0 3px 6px rgba(0,0,0,0.08);
  }  

  /* MENU */
  .menu-layout {
    display: grid;
    gap: 2.5rem;    
  }

  @media (min-width: 900px) {
    .menu-layout {
      grid-template-columns: 1fr 1fr;
      align-items: flex-start;
    }
  }

  .menu-group + .menu-group {
    /* margin-top: 1.9rem; */
    padding-top: 1.5rem;
    /* border-top: 1px solid rgba(217, 196, 168, 0.7); */
  }

  .menu-group-title {
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--heading);
    margin-bottom: 0.6rem;
  }

  .menu-page-title {
    color: var(--heading);
    text-align: center;
    width: 100%;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
  }

  .menu-items {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .menu-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.2rem 0;
    border-bottom: 1px dotted rgba(217, 196, 168, 0.9);
  }

  /* .menu-item:last-child {
    border-bottom: none;
  } */

  .menu-item-name {
    font-size: 0.96rem;
  }

  .menu-item-note {
    display: block;
    font-size: 0.82rem;
    color: rgba(74, 51, 37, 0.75);
    margin-top: 0.1rem;
  }

  .menu-item-price {
    white-space: nowrap;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--heading);
  }

  /* --- GALLERY GRID --- */

.gallery-grid {
    display: grid;
    gap: 1.25rem;
  }
  
  /* Same breakpoints as weekly menu */
  @media (min-width: 720px) {
    .gallery-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  @media (min-width: 1024px) {
    .gallery-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  
  /* Reuse card style from weekly-day-card */
  .weekly-day-card,
  .gallery-card {
    background: var(--bg-section);
    border-radius: 14px;
    padding: 0.4rem 0.4rem 0.6rem;
    border: 1px solid rgba(217, 196, 168, 0.9);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.03);
  }
  
  /* In gallery, card is just an image frame */
  .gallery-card img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    cursor: pointer;
  }
  
  /* Lightbox overlay */
  .lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }
  
  .lightbox.is-open {
    display: flex;
  }
  
  .lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
  }
  
  .lightbox-content {
    position: relative;
    background: #fff;
    padding: 0.4rem;
    border-radius: 12px;
    max-width: 90vw;
    max-height: 85vh;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    z-index: 1;
  }
  
  #lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    border-radius: 8px;
  }
  
  .lightbox-close {
    position: absolute;
    top: -0.6rem;
    right: -0.6rem;
    border: none;
    border-radius: 999px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    background: var(--accent);
    color: #fff;
    font-size: 1.1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lightbox-loader {
    width: 38px;
    height: 38px;
    border: 4px solid rgba(255,255,255,0.5);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    position: absolute;
    inset: 0;
    margin: auto;
    z-index: 3;
    display: none; /* hidden by default */
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* image hidden until loaded */
.lightbox img.loading {
    opacity: 0;
}  
  
  /* FEATURES */
  
  .features {
    display: grid;
    gap: 1.25rem;
  }
  
  @media (min-width: 840px) {
    .features {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  
  .feature-card {
    background: var(--bg-section);
    border-radius: 18px;
    padding: 1.3rem 1.2rem 1.35rem;
    border: 1px solid rgba(217, 196, 168, 0.8);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.03);
  }
  
  .feature-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.1rem;
    color: var(--heading);
    margin-bottom: 0.4rem;
  }
  
  .feature-text {
    font-size: 0.9rem;
  }
  
  /* HAKKIMIZDA */
  
  .about-layout {
    display: grid;
    gap: 2rem;
    align-items: center;
  }
  
  @media (min-width: 840px) {
    .about-layout {
      grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    }
  }
  
  .about-text {
    font-size: 0.97rem;
    max-width: 34rem;
  }
  
  .about-image-wrapper {
    background: var(--bg-section);
    border-radius: 18px;
    padding: 1rem;
    border: 1px solid rgba(217, 196, 168, 0.9);
  }
  
  .about-image-placeholder {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #e1d2c0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.15rem;
    color: rgba(74, 51, 37, 0.7);
  }
  
  /* GÜNLÜK YEMEKLER */
  
  .daily-layout {
    background: var(--bg-section);
    border-radius: 20px;
    padding: 1.6rem 1.4rem 1.8rem;    
    border: 1px solid rgba(217, 196, 168, 0.9);
  }
  
  .day-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
  }
  
  .day-tab {
    border-radius: 999px;
    border: 1px solid rgba(217, 196, 168, 0.9);
    background: #FDFBF7;
    padding: 0.45rem 0.9rem;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.15s ease;
    color: var(--text-main);          /* 👈 important: no more blue */
    -webkit-appearance: none;         /* iOS Safari reset */
    appearance: none;
  }
  
  .day-tab.active {
    background: var(--accent);
    color: #FCFAF7;
    border-color: var(--accent);
  }

  .day-tab:focus {
    outline: none;
  }
  
  .day-tab:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
  }
  
  .daily-list {
    list-style: none;
    padding-left: 0.1rem;
    margin-bottom: 1rem;    
  }
  
  .daily-list li + li {
    margin-top: 0.25rem;
  }

  @media (min-width: 720px) {
    .daily-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      column-gap: 0.2px;
      width: 65%;
    }
  }

  .daily-list li {
    break-inside: avoid;
    white-space: nowrap;
  }
  
  .daily-note {
    font-size: 0.82rem;
    color: rgba(74, 51, 37, 0.75);
    display: flex;
    align-items: center;
    gap: 0.45rem;
  }
  
  .daily-note-qr {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: #e2d6c7;
  }
  
  /* GALERİ */
  
  .gallery-grid {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  @media (min-width: 720px) {
    .gallery-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }
  
  .gallery-item {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #e1d2c0;
  }
  
  /* İLETİŞİM */
  
  .contact-layout {
    display: grid;
    gap: 1.75rem;
  }
  
  @media (min-width: 840px) {
    .contact-layout {
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    }
  }
  
  .map-placeholder {
    border-radius: 16px;
    overflow: hidden;
    background: #e3d7c8;
    aspect-ratio: 4 / 3;
    position: relative;
  }

  .map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }
  
  .map-pin {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--accent);
    top: 45%;
    left: 52%;
    transform: translate(-50%, -50%);
  }
  
  .contact-info p {
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
  }
  
  .contact-label {
    font-weight: 500;
    color: var(--heading);
  }
  
  .contact-actions {
    margin-top: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .btn-whats {
    border-radius: 999px;
    padding: 0.8rem 1.35rem;
    background: #1f9d55;
    color: #fdfdfd;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
  }
  
  .footer {
    margin-top: 1.5rem;
    border-top: 1px solid rgba(217, 196, 168, 0.8);
    padding-top: 0.9rem;
    font-size: 0.82rem;
    color: rgba(74, 51, 37, 0.7);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
  }
  
  .footer-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
  }
  
  /* SMALL SCREEN TWEAKS */
  
  @media (max-width: 600px) {
    .page {
      padding-inline: 1rem;
    }
  
    .hero-actions {
      flex-direction: column;
      align-items: stretch;
    }
  
    .feature-card {
      padding-inline: 1rem;
    }
  
    .about-image-wrapper,
    .daily-layout {
      padding-inline: 1.2rem;
    }
  }
  