:root {
  --color-bg: #f5f7f4;
  --color-bg-alt: #ffffff;
  --color-primary: #2f5532;
  --color-primary-soft: #4d7a52;
  --color-accent: #f1c453;
  --color-text: #1f2933;
  --color-text-soft: #6b7280;
  --color-border: #d1d5db;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.12);
  --shadow-subtle: 0 10px 30px rgba(15, 23, 42, 0.08);
  --transition-fast: 200ms ease;
  --max-width: 1120px;
}

/* RESET & BASE */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #e8f0e6 0, #f5f7f4 36%, #ffffff 80%);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* LAYOUT */
.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 4.5rem 0;
}

@media (min-width: 1024px) {
  section {
    padding: 6rem 0;
  }
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary-soft);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.2;
  margin: 0 0 1rem;
}

.section-desc {
  max-width: 640px;
  font-size: 0.98rem;
  color: var(--color-text-soft);
  margin-bottom: 2.25rem;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  padding: 0.65rem 1.3rem;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    color var(--transition-fast);
  white-space: nowrap;
}

.btn-icon {
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-soft));
  color: #f9fafb;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.16);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: var(--color-primary);
}

.btn-outline:hover {
  background: #ffffff;
  box-shadow: var(--shadow-subtle);
}

/* ---------------------------------- */
/* HEADER: CENTERED LOGO + PILL NAV   */
/* ---------------------------------- */
.new-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 1.5rem 1.5rem;
  gap: 1.5rem;
  background: transparent;
  border: none;
  position: relative;
  z-index: 20;
}

.header-logo img {
  width: 150px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.75rem 1rem;
  background: #ffffff;
  border-radius: 80px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(209, 213, 219, 0.6);
}

.header-nav a {
  font-family: "Poppins", system-ui;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.45rem 0.75rem;
  color: #1f2933;
}

.header-nav a:hover {
  color: var(--color-primary);
}

/* header CTA yeşil */
.header-cta-btn {
  background: var(--color-primary);
  color: #ffffff !important;
  padding: 0.55rem 1.2rem;
  border-radius: 60px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.header-cta-btn:hover {
  background: var(--color-primary-soft);
  box-shadow: 0 6px 20px rgba(47, 85, 50, 0.35);
}

/* ---------------------------------- */
/* MOBILE NAV                         */
/* ---------------------------------- */
.mobile-nav-toggle {
  display: none;
  border: 1px solid rgba(148, 163, 184, 0.7);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
  background: #ffffff;
  cursor: pointer;
}

/* full-screen overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 40;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-inner {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: #ffffff;
  border-radius: 24px 24px 0 0;
  padding: 1.5rem 1.5rem 2rem;
  box-shadow: 0 -10px 40px rgba(15, 23, 42, 0.45);
}

.mobile-nav-inner a {
  display: block;
  padding: 0.9rem 0;
  font-size: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

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

.mobile-nav-close {
  position: absolute;
  right: 1.2rem;
  top: 1rem;
  border: none;
  background: transparent;
  font-size: 1.2rem;
  cursor: pointer;
}

/* mobile header davranışı */
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }

  .header-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .header-logo img {
    width: 120px;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
  }
}

/* ---------------------------------- */
/* HERO SECTION                       */
/* ---------------------------------- */
.hero {
  padding-top: 3.5rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 4.5rem;
    padding-bottom: 5rem;
  }
}

.hero-inner {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: center;
    gap: 3.5rem;
  }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.65rem 0.25rem 0.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  margin-bottom: 1.25rem;
}

.hero-pill-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #fef3c7 0, #facc15 32%, #f97316 80%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hero-highlight {
  color: var(--color-primary);
}

.hero-text {
  font-size: 0.98rem;
  color: var(--color-text-soft);
  max-width: 560px;
  margin-bottom: 1.75rem;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.1rem;
}

.hero-meta-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-meta-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--color-text-soft);
}

.hero-media {
  position: relative;
}

/* HERO CARD */
.hero-card {
  background: radial-gradient(circle at top left, #eaf5e7 0, #ffffff 52%, #fefaf3 100%);
  padding: 1.7rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.hero-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  margin-bottom: 0.85rem;
  color: #4b5563;
}

.hero-card-main {
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.85)),
    url("https://images.pexels.com/photos/3731474/pexels-photo-3731474.jpeg?auto=compress&cs=tinysrgb&w=1200")
      center / cover;
  min-height: 260px;
  padding: 1.5rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
}

.hero-card-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #4ade80;
}

.hero-card-title {
  margin: 0.75rem 0 0.25rem;
  font-family: "Poppins", system-ui;
  font-size: 1.4rem;
}

.hero-card-sub {
  font-size: 0.9rem;
  opacity: 0.9;
  max-width: 280px;
}

.hero-card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 1rem;
}

.hero-card-meta-label {
  font-size: 0.75rem;
  opacity: 0.75;
}

.hero-card-meta-value {
  font-size: 0.9rem;
}

.hero-floating-card {
  position: absolute;
  bottom: -1rem;
  right: 0.75rem;
  background: #ffffff;
  padding: 0.7rem 0.9rem;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-floating-icon {
  font-size: 1.2rem;
}

.hero-floating-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-floating-sub {
  font-size: 0.8rem;
  color: var(--color-text-soft);
}

/* ---------------------------------- */
/* STORY SECTION                      */
/* ---------------------------------- */
.story {
  background: radial-gradient(circle at top, #e9f3e7 0, #f5f7f4 40%, #ffffff 90%);
}

.story-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .story-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 3rem;
  }
}

.story-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: var(--shadow-subtle);
}

.story-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: "Poppins", system-ui;
}

.story-card p {
  font-size: 0.95rem;
  color: var(--color-text-soft);
}

.story-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.story-meta-item {
  display: flex;
  gap: 0.6rem;
}

.story-meta-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.story-meta-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
}

.story-meta-value {
  font-size: 0.9rem;
}

/* ---------------------------------- */
/* MENU SECTION                       */
/* ---------------------------------- */
.menu-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .menu-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}

.menu-category {
  margin-bottom: 2.25rem;
}

.menu-category-title {
  font-weight: 600;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.menu-category-desc {
  font-size: 0.9rem;
  color: var(--color-text-soft);
  margin-bottom: 0.9rem;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.menu-item {
  padding-bottom: 0.8rem;
  border-bottom: 1px dashed rgba(209, 213, 219, 0.7);
}

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

.menu-item-title {
  font-weight: 500;
  font-size: 0.96rem;
}

.menu-item-desc {
  font-size: 0.86rem;
  color: var(--color-text-soft);
  margin-top: 0.25rem;
}

/* Vegan side card */
.menu-side-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(209, 213, 219, 0.9);
  position: sticky;
  top: 5.5rem;
  max-width: 420px;      /* desktop'ta daha kompakt */
  align-self: flex-start;
}

.menu-side-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary-soft);
  margin-bottom: 0.3rem;
}

.menu-side-title {
  font-family: "Poppins", system-ui;
  font-size: 1.1rem;
  margin: 0 0 0.6rem;
}

.menu-side-desc {
  font-size: 0.9rem;
  color: var(--color-text-soft);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.menu-side-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
}

/* ---------------------------------- */
/* COMMUNITY SECTION                  */
/* ---------------------------------- */
.community {
  background: #ffffff;
}

.community-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .community-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
    gap: 3rem;
  }
}

.community-card {
  background: radial-gradient(circle at top left, #fef3c7 0, #ffffff 50%, #f5f7f4 100%);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.5rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: var(--shadow-subtle);
  font-size: 0.95rem;
}

.community-badges {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.community-badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.community-side-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}

.community-icon {
  font-size: 1.4rem;
}

/* ---------------------------------- */
/* VISIT US SECTION                   */
/* ---------------------------------- */
.visit {
  background: radial-gradient(circle at top, #e9f3e7 0, #f5f7f4 45%, #ffffff 100%);
}

.visit-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .visit-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2.5rem;
  }
}

.visit-card {
  background: #ffffff;
  padding: 1.7rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: var(--shadow-subtle);
}

.visit-row {
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 0.6rem;
  column-gap: 1rem;
  font-size: 0.95rem;
  margin-bottom: 1.3rem;
}

.visit-label {
  font-weight: 500;
}

.visit-value a {
  text-decoration: underline;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.visit-map-placeholder {
  width: 100%;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(
    45deg,
    #f3f4f6,
    #f3f4f6 6px,
    #e5e7eb 6px,
    #e5e7eb 12px
  );
  color: var(--color-text-soft);
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(148, 163, 184, 0.7);
}

.visit-map {
  width: 100%;
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}

@media (min-width: 900px) {
  .visit-map {
    height: 420px;
  }
}


/* ---------------------------------- */
/* FOOTER                             */
/* ---------------------------------- */
.site-footer {
  background: #0f172a;
  color: rgba(249, 250, 251, 0.92);
  padding: 2.5rem 0 2rem;
  margin-top: 1rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-links a {
  background: rgba(15, 23, 42, 0.7);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.85rem;
}

/* ---------------------------------- */
/* ANIMATIONS                         */
/* ---------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------- */
/* SCROLL TO TOP BUTTON               */
/* ---------------------------------- */
.scroll-top-btn {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--color-primary);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0,0,0,0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity .25s ease, transform .25s ease;
  z-index: 90;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--color-primary-soft);
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
}

/* ---------------------------------- */
/* ORDER ONLINE BADGES                */
/* ---------------------------------- */
.order-online-group {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.order-online-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text);
}

.order-badge {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid rgba(148,163,184,0.4);
  background: #fff;
  transition: all .2s ease;
}

.order-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.order-badge.deliveroo {
  border-color: #00ccbc;
  color: #009f91;
}

.order-badge.uber {
  border-color: #000;
  color: #000;
}

/* ---------------------------------- */
/* ORDER ONLINE SECTION               */
/* ---------------------------------- */
.order-section {
  background: #ffffff;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.order-cards {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 700px) {
  .order-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.order-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.4rem 1.6rem;
  border-radius: 20px;
  border: 2px solid #e5e7eb;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: all .25s ease;
}

.order-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.order-card-icon {
  font-size: 2rem;
}

/* Deliveroo style */
.deliveroo-card {
  border-color: #00ccbc;
}
.deliveroo-card h3 {
  color: #00a89d;
}

/* Uber style */
.uber-card {
  border-color: #000;
}
.uber-card h3 {
  color: #000;
}

.order-card p {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  color: var(--color-text-soft);
}

.order-menu-link {
  color: var(--color-primary);
  font-weight: 500;
}
.order-menu-link:hover {
  color: var(--color-primary-soft);
}

.mobile-nav-inner a[href="#order"] {
  margin-top: 0.3rem;
  padding: 1rem;
  border-radius: 12px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  text-align: center;
  border: none !important;
}

/* ---------------------------------- */
/* GALLERY                            */
/* ---------------------------------- */
.gallery {
  background: #ffffff;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.gallery-grid {
  column-count: 1;
  column-gap: 1rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    column-count: 2;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    column-count: 3;
  }
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}

.gallery-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform .25s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

/* Desktop gallery optimisation */
@media (min-width: 1024px) {
  .gallery-grid {
    column-count: 4;               /* 3 yerine 4 kolon → daha küçük görseller */
    column-gap: 1.2rem;            /* biraz daha sıkı aralık */
    max-width: 1000px;             /* çok geniş yayılmayı engeller */
    margin-left: auto;
    margin-right: auto;
  }

  .gallery-item {
    margin-bottom: 1.2rem;         /* aralıkları hafif büyüt */
    border-radius: 18px;           /* daha kompakt */
  }
}

/* ---------------------------------- */
/* GALLERY LIGHTBOX                   */
/* ---------------------------------- */
.gallery-item {
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 80;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-inner {
  position: relative;
  max-width: min(1000px, 90vw);
  max-height: 90vh;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-inner img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;   /* cover yerine contain → fotoğraf tam görünür */
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: rgba(15, 23, 42, 0.75);
  color: #f9fafb;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

