:root {
  --black: #0a0a0a;
  --black-soft: #141414;
  --black-card: #1a1a1a;
  --green: #1db09a;
  --green-light: #2dd4b8;
  --green-dark: #158f7d;
  --white: #ffffff;
  --gray: #a0a0a0;
  --gray-dark: #666;
  --border: rgba(29, 176, 154, 0.25);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --radius: 12px;
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  touch-action: manipulation;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  touch-action: manipulation;
}

body.is-loading {
  overflow: hidden;
}

/* Page loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-loader.loader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.page-loader-logo {
  width: min(140px, 36vw);
  height: auto;
  animation: loader-pulse 1.6s ease-in-out infinite;
  filter: drop-shadow(0 8px 32px rgba(29, 176, 154, 0.35));
}

.page-loader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(29, 176, 154, 0.15);
  border-top-color: var(--green-light);
  border-radius: 50%;
  animation: loader-spin 0.85s linear infinite;
}

.page-loader-text {
  font-size: 0.85rem;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

@keyframes loader-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(0.97); }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader-logo,
  .page-loader-spinner {
    animation: none;
  }
}

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

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

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-img {
  height: 56px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--green-light);
  background: rgba(29, 176, 154, 0.1);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(29, 176, 154, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(29, 176, 154, 0.08) 0%, transparent 40%),
    var(--black);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231db09a' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-logo {
  width: min(280px, 70vw);
  margin: 0 auto 2rem;
  filter: drop-shadow(0 12px 40px rgba(29, 176, 154, 0.3));
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero h1 span {
  color: var(--green-light);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray);
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(29, 176, 154, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(29, 176, 154, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--green-light);
  border: 2px solid var(--green);
}

.btn-outline:hover {
  background: rgba(29, 176, 154, 0.1);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.75rem;
}

.section-header h2 span {
  color: var(--green-light);
}

.section-header p {
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
}

.section-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  margin: 1.25rem auto 0;
  border-radius: 2px;
}

/* Features */
.features {
  background: var(--black-soft);
}

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

.feature-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  background: rgba(29, 176, 154, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--green-light);
}

.feature-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Page hero (inner pages) */
.page-hero {
  padding: 8rem 0 3rem;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(29, 176, 154, 0.12) 0%, transparent 60%),
    var(--black);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 0.75rem;
}

.page-hero h1 span {
  color: var(--green-light);
}

.page-hero p {
  color: var(--gray);
  font-size: 1.1rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--gray-dark);
}

.breadcrumb a {
  color: var(--green);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--green-light);
}

/* About */
.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content p {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-highlight {
  background: var(--black-card);
  border-left: 4px solid var(--green);
  padding: 1.5rem 2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}

.about-highlight p {
  margin-bottom: 0;
  color: var(--white);
  font-style: italic;
}

/* Menu */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.menu-tab {
  padding: 0.625rem 1.5rem;
  border-radius: 50px;
  background: var(--black-card);
  border: 1px solid var(--border);
  color: var(--gray);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.menu-tab:hover,
.menu-tab.active {
  background: rgba(29, 176, 154, 0.15);
  border-color: var(--green);
  color: var(--green-light);
}

.menu-category {
  display: none;
}

.menu-category.active {
  display: block;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.menu-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  min-width: 0;
}

.menu-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.menu-card-image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--black-soft);
}

.menu-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.menu-card:hover .menu-card-image {
  transform: scale(1.05);
}

.menu-card-body {
  padding: 0.875rem 1rem;
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.menu-card-header h3 {
  font-size: 1rem;
  line-height: 1.25;
  word-break: break-word;
  color: var(--white);
}

.menu-card-title-wrap {
  flex: 1;
}

.menu-card-price-inline {
  color: var(--green-light);
  font-weight: 700;
}

.menu-card-serving {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.menu-card-serving-name {
  color: var(--white);
}

.menu-card-sizes--solo {
  margin-top: 0;
  gap: 0.2rem;
}

.menu-card-atom {
  color: inherit;
}

.menu-card-atom-label {
  color: #fff;
}

.menu-card-sizes {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 0.35rem;
}

.menu-card-price {
  font-weight: 700;
  color: var(--green-light);
  white-space: nowrap;
  font-size: 0.95rem;
}

.menu-card-desc {
  font-size: 0.75rem;
  color: var(--gray-dark);
  line-height: 1.35;
}

.menu-card-varieties {
  margin-top: 0.35rem;
  font-size: 0.72rem;
  color: var(--green);
  line-height: 1.3;
}

.menu-card-varieties::before {
  content: 'Çeşitler: ';
  color: var(--gray-dark);
}

.menu-note {
  text-align: center;
  color: var(--gray-dark);
  font-size: 0.875rem;
  margin-top: 2rem;
  font-style: italic;
}

.menu-category-note,
.menu-section-note {
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.menu-category-note {
  color: var(--white);
  font-weight: 700;
  font-style: normal;
}

.menu-section-note {
  color: var(--gray-dark);
  font-style: italic;
}

.menu-note-price {
  color: var(--green-light);
  font-style: normal;
  font-weight: 700;
}

.menu-subcategory {
  font-size: 1.15rem;
  color: var(--green-light);
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.menu-subcategory:first-child {
  margin-top: 0;
}

.menu-category > .menu-grid:first-of-type,
.menu-category > .menu-featured:first-of-type {
  margin-top: 0;
}

.menu-category .menu-grid + .menu-subcategory,
.menu-category .menu-featured + .menu-subcategory,
.menu-category .menu-list-only + .menu-subcategory {
  margin-top: 2.5rem;
}

.menu-list-only {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  list-style: none;
  margin: 0 0 0.5rem;
}

.menu-featured {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 2rem;
  align-items: start;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 0.5rem;
}

.menu-featured-image-wrap {
  aspect-ratio: 4 / 3;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  background: var(--black-soft);
}

.menu-featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-featured-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.menu-featured-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(29, 176, 154, 0.12);
}

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

.menu-featured-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.menu-featured-name {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--white);
}

.menu-featured-desc {
  font-size: 0.78rem;
  color: var(--gray-dark);
  line-height: 1.35;
}

.menu-featured-price {
  font-weight: 700;
  color: var(--green-light);
  white-space: nowrap;
  font-size: 1rem;
}

.menu-note code {
  color: var(--green);
  font-size: 0.8rem;
}

/* Contact */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--green);
}

.contact-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(29, 176, 154, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.contact-card h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green);
  margin-bottom: 0.25rem;
}

.contact-card p,
.contact-card a {
  color: var(--gray);
  font-size: 1rem;
  transition: var(--transition);
}

.contact-card a:hover {
  color: var(--green-light);
}

.map-container {
  margin-top: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 350px;
  background: var(--black-card);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, rgba(29, 176, 154, 0.15) 0%, rgba(10, 10, 10, 0) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.cta h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.cta p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

/* Footer */
.footer {
  margin-top: auto;
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.25fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--gray);
  transition: var(--transition);
}

.social-link:hover {
  color: var(--green-light);
  border-color: var(--green);
  background: rgba(29, 176, 154, 0.12);
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-logo {
  height: 48px;
  width: auto;
}

.footer h4 {
  color: var(--green-light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--gray);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--green-light);
}

.footer-contact li {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-contact .social-links {
  margin-top: 1rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
  color: var(--gray-dark);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .header-inner .nav {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    width: 100%;
    text-align: center;
    padding: 0.875rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-logo {
    margin: 0 auto;
  }

  .social-links {
    justify-content: center;
  }

  .footer-contact .social-links {
    justify-content: center;
  }

  .hero {
    padding: 6rem 1rem 3rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 3.5rem 0;
  }

  .page-hero {
    padding: 6rem 1rem 2rem;
  }

  .menu-grid {
    gap: 0.65rem;
  }

  .menu-card {
    min-width: 0;
  }

  .menu-card-body {
    padding: 0.5rem 0.5rem;
  }

  .menu-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }

  .menu-card-header h3 {
    font-size: 0.8rem;
  }

  .menu-card-price {
    font-size: 0.82rem;
  }

  .menu-card-desc,
  .menu-card-varieties {
    font-size: 0.65rem;
  }

  .menu-card-serving {
    font-size: 0.72rem;
  }

  .menu-card-sizes {
    gap: 0.1rem;
  }

  .menu-featured {
    grid-template-columns: minmax(110px, 42%) 1fr;
    gap: 0.75rem;
    padding: 0.75rem;
  }

  .menu-featured-image-wrap {
    aspect-ratio: 1;
  }

  .menu-featured-name {
    font-size: 0.85rem;
  }

  .menu-featured-desc {
    font-size: 0.68rem;
  }

  .menu-featured-price {
    font-size: 0.85rem;
  }

  .menu-featured-item {
    gap: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
