/* =============================
   VARIABLES
============================= */
:root {
  --navy: #10143a;
  --navy-soft: #171c4d;
  --navy-card: #1c2258;
  --navy-border: rgba(255, 255, 255, 0.08);

  --cream: #faf7f0;
  --cream-alt: #f2ecdf;
  --cream-border: rgba(28, 32, 56, 0.1);
  --card-light: #ffffff;

  --copper: #c48455;
  --copper-light: #dba475;
  --copper-dark: #9c6740;

  --white: #ffffff;
  --text-light: #f3efe6;
  --text-muted: #a9a8c9;
  --text-muted-2: #8788ab;

  --text-dark: #201c30;
  --text-dark-muted: #5c5a72;
  --text-dark-muted-2: #83809a;

  --font-heading: "Roboto", sans-serif;
  --font-body: "Open Sans", sans-serif;
  --font-ui: "Inter", sans-serif;

  --container: 1200px;
  --radius: 14px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

/* =============================
   RESET
============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-dark);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper-dark);
  margin-bottom: 16px;
}

.eyebrow-light {
  color: var(--copper-light);
}

/* =============================
   SECTION BACKGROUND VARIANTS
============================= */
.section-light {
  background: var(--cream);
  color: var(--text-dark);
}

.section-light-alt {
  background: var(--cream-alt);
  color: var(--text-dark);
  padding: 90px 0;
}

.section-dark {
  background: var(--navy);
  color: var(--text-light);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--text-light);
}

/* =============================
   BUTTONS
============================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--copper), var(--copper-dark));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(196, 132, 85, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(196, 132, 85, 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--copper);
  color: var(--copper-light);
}

.btn-ghost:hover {
  background: rgba(196, 132, 85, 0.14);
  border-color: var(--copper-light);
  color: var(--white);
}

.section-light .btn-ghost,
.section-light-alt .btn-ghost {
  background: rgba(28, 32, 56, 0.03);
  border: 1px solid var(--cream-border);
  color: var(--text-dark);
}

.section-light .btn-ghost:hover,
.section-light-alt .btn-ghost:hover {
  border-color: var(--copper);
  color: var(--copper-dark);
}

/* =============================
   HEADER
============================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 18px 0;
  transition: all var(--transition);
  background: transparent;
}

.site-header.scrolled {
  padding: 12px 0;
  background: rgba(16, 20, 58, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--navy-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-img {
  height: 60px;
  width: auto;
  transition: height var(--transition);
}

.site-header.scrolled .logo-img {
  height: 48px;
}

.main-nav {
  display: flex;
  gap: 34px;
}

.nav-link {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  position: relative;
  padding-bottom: 6px;
  transition: color var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--copper);
  transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--copper-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-cta {
  padding: 11px 24px;
  font-size: 12px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--text-light);
  font-size: 20px;
}

/* =============================
   HERO
============================= */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../img/hero-bg.jpg") center 30%/cover no-repeat;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 20, 58, 0.20) 0%, rgba(16, 20, 58, 0.40) 55%, rgba(16, 20, 58, 0.81) 100%),
    linear-gradient(100deg, rgba(16, 20, 58, 0.40) 0%, rgba(16, 20, 58, 0.05) 60%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding-top: 60px;
}

.hero-inner h1 {
  font-size: 69px;
  margin-bottom: 28px;
  letter-spacing: -1px;
  color: var(--text-light);
}

.hero-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.hero-tags .tag {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
}

.tag-sep {
  color: var(--text-light);
  font-weight: 700;
  opacity: 0.7;
}

.tag-dot {
  color: var(--copper);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--copper-light);
  font-size: 18px;
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* =============================
   PAGE HERO (Menü ve alt sayfalar)
============================= */
.page-hero {
  padding: 128px 0 44px;
}

.page-hero--center {
  text-align: center;
}

.page-hero--center .page-hero-desc {
  margin-left: auto;
  margin-right: auto;
}

.page-hero h1 {
  font-size: 33px;
  color: var(--text-light);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.page-hero-desc {
  max-width: 640px;
  color: var(--text-muted);
  font-size: 15.5px;
}

/* =============================
   SECTION HEAD (shared)
============================= */
.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head p {
  font-family: var(--font-body);
  color: var(--text-dark-muted);
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 400;
}

.section-dark .section-head p {
  color: var(--text-muted);
}

/* =============================
   FEATURES
============================= */
.features {
  padding: 110px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--card-light);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: 0 10px 30px rgba(28, 32, 56, 0.05);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--copper);
  box-shadow: 0 16px 36px rgba(28, 32, 56, 0.09);
}

.feature-highlight {
  background: linear-gradient(160deg, rgba(196, 132, 85, 0.12), var(--card-light) 60%);
  border-color: rgba(196, 132, 85, 0.4);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(196, 132, 85, 0.12);
  color: var(--copper-dark);
  font-size: 21px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-dark-muted);
  font-size: 14.5px;
}

/* =============================
   MENU LANDING (kategori kartları)
============================= */
.category-grid-section {
  padding: 80px 0 120px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.category-card {
  background: var(--card-light);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius);
  padding: 36px 26px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(28, 32, 56, 0.05);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: var(--copper);
  box-shadow: 0 16px 36px rgba(28, 32, 56, 0.09);
}

.category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(196, 132, 85, 0.12);
  color: var(--copper-dark);
  font-size: 24px;
  margin-bottom: 20px;
}

.category-card h3 {
  font-size: 18px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.category-link-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--copper-dark);
  text-transform: uppercase;
}

.category-link-label i {
  font-size: 11px;
  transition: transform var(--transition);
}

.category-card:hover .category-link-label i {
  transform: translateX(4px);
}

/* =============================
   MENU KATEGORİ SAYFASI
============================= */
.menu-category-section {
  padding: 60px 0 120px;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}

.menu-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card-light);
  border: 1px solid var(--cream-border);
  color: var(--text-dark-muted);
  padding: 11px 22px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all var(--transition);
}

.menu-tab i {
  font-size: 12px;
}

.menu-tab:hover {
  color: var(--text-dark);
  border-color: var(--copper);
}

.menu-tab.active {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--white);
}

.menu-panel {
  max-width: 900px;
  margin: 0 auto;
}

.menu-panel-note {
  text-align: center;
  font-style: italic;
  color: var(--text-dark-muted-2);
  margin-bottom: 32px;
  font-size: 14px;
}

.menu-item-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 40px;
}

.menu-item-list--grid {
  grid-template-columns: repeat(2, 1fr);
}

.menu-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--cream-border);
}

.menu-item-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.menu-item-head h4,
.menu-item-head h5 {
  font-size: 18px;
  color: var(--text-dark);
}

.menu-item-price {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 700;
  color: var(--copper-dark);
  white-space: nowrap;
  text-align: right;
}

.menu-item-price--variants {
  white-space: normal;
  max-width: none;
  width: 100%;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
  text-align: left;
  margin-top: 6px;
}

.menu-item p {
  margin-top: 6px;
  font-size: 13.5px;
  color: var(--text-dark-muted);
}

.menu-item-meta {
  margin-top: 8px;
  display: flex;
  gap: 12px;
}

.menu-item-kcal {
  font-family: var(--font-ui);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-dark-muted-2);
  text-transform: uppercase;
  background: var(--cream-alt);
  padding: 3px 10px;
  border-radius: 999px;
}

.menu-subgroup-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
}

.menu-subgroup .menu-item-list {
  grid-template-columns: 1fr;
  gap: 0;
}

.menu-item-head--stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.menu-subgroup h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--copper-dark);
  margin-bottom: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--copper-light);
}

.menu-item-allergen {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-top: 8px;
  font-size: 11.5px;
  font-style: italic;
  color: var(--text-dark-muted-2);
  line-height: 1.4;
}

.menu-item-allergen i {
  color: var(--copper);
  font-size: 11px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* =============================
   GALLERY
============================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 40px;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

/* =============================
   CONTACT
============================= */
.contact {
  padding: 110px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.contact-info h2 {
  font-size: 38px;
  margin-bottom: 18px;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 460px;
}

.contact-list {
  margin-bottom: 36px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--navy-border);
}

.contact-icon {
  font-size: 17px;
  width: 32px;
  flex-shrink: 0;
  color: var(--copper-light);
}

.contact-list strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 4px;
}

.contact-list p {
  color: var(--text-muted);
  font-size: 15px;
}

.contact-list a:hover {
  color: var(--copper-light);
}

.contact-btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--navy-border);
  min-height: 380px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}

/* =============================
   FOOTER
============================= */
.site-footer {
  background: #0b0e2c;
  padding: 60px 0 30px;
  border-top: 1px solid var(--navy-border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.logo-img-footer {
  height: 66px;
}

.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--copper-light);
}

.footer-social {
  display: flex;
  gap: 18px;
}

.footer-social a {
  width: 57px;
  height: 57px;
  border-radius: 50%;
  border: 1px solid var(--navy-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 24px;
  transition: all var(--transition);
}

.footer-social a:hover {
  border-color: var(--copper);
  color: var(--copper-light);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--navy-border);
  width: 100%;
}

.footer-bottom p {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-muted-2);
}

/* =============================
   WHATSAPP FAB
============================= */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1da851);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 27px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition);
}

.whatsapp-fab:hover {
  transform: scale(1.08);
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 992px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-item-list,
  .menu-item-list--grid,
  .menu-subgroup-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner h1 {
    font-size: 53px;
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: var(--navy-soft);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: right var(--transition);
    z-index: 998;
    border-left: 1px solid var(--navy-border);
  }

  .main-nav.open {
    right: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 0;
    height: auto;
    padding: 110px 0 72px;
    align-items: flex-start;
  }

  .hero-inner {
    padding-top: 12px;
  }

  .hero-inner h1 {
    font-size: 43px;
  }

  .section-head h2,
  .contact-info h2 {
    font-size: 28px;
  }

  .page-hero {
    padding: 118px 0 38px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .features,
  .contact,
  .section-light-alt {
    padding: 70px 0;
  }

  .category-grid-section,
  .menu-category-section {
    padding: 50px 0 80px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 0 64px;
  }

  .hero-inner h1 {
    font-size: 37px;
  }

  .hero-tags {
    gap: 8px;
  }

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

  .menu-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .menu-tab {
    flex-shrink: 0;
  }

  .contact-btn-group {
    flex-direction: column;
  }

  .contact-btn-group .btn {
    width: 100%;
  }
}

/* =============================
   SCROLL ANIMATION
============================= */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}
