/* Salkım Catering — shared styles */
:root {
  --cream: #f7f3ea;
  --cream-dark: #efe8da;
  --ink: #1f2a24;
  --green: #2f4a3a;
  --green-soft: #4a6b55;
  --green-deep: #24382c;
  --gold: #b8924a;
  --gold-soft: #d4b574;
  --gold-pale: rgba(184, 146, 74, 0.18);
  --muted: #5c6b62;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(31, 42, 36, 0.07);
  --radius: 1.25rem;
  --nav-h: 5rem;
  --max: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* —— Typography —— */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(47, 74, 58, 0.08);
  color: var(--green-soft);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 146, 74, 0.22);
}

h1, h2, h3, .serif {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  color: var(--green);
  line-height: 1.15;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 0.75rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.4rem; }

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 42ch;
}

.section-intro {
  max-width: 52ch;
  color: var(--muted);
  margin-bottom: 2rem;
}

/* —— Header / Nav —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 234, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(47, 74, 58, 0.08);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--cream);
  border: 1px solid rgba(47, 74, 58, 0.12);
}

.brand-text { display: flex; flex-direction: column; gap: 0.05rem; }
.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.02em;
}
.brand-tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 500;
}

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

.nav-links a {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--green-soft);
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(47, 74, 58, 0.08);
  color: var(--green);
}

.nav-cta {
  margin-left: 0.5rem !important;
  background: var(--green) !important;
  color: var(--cream) !important;
}
.nav-cta:hover {
  background: var(--green-deep) !important;
  color: var(--cream) !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(47, 74, 58, 0.15);
  border-radius: 0.75rem;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--green);
  color: var(--cream);
  box-shadow: 0 8px 24px rgba(47, 74, 58, 0.25);
}
.btn-primary:hover { background: var(--green-deep); }

.btn-secondary {
  background: transparent;
  color: var(--green);
  border: 1.5px solid rgba(47, 74, 58, 0.25);
}
.btn-secondary:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #c9a35e);
  color: #1f2a24;
  font-weight: 600;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: clamp(420px, 72vh, 640px);
  display: grid;
  align-items: end;
  background:
    linear-gradient(160deg, rgba(31, 42, 36, 0.72), rgba(47, 74, 58, 0.45)),
    url("../assets/hero.png") center / cover no-repeat;
  color: var(--cream);
  overflow: hidden;
}

.hero-inner {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  position: relative;
  z-index: 1;
}

.hero h1 { color: var(--cream); max-width: 16ch; }
.hero .lead { color: rgba(247, 243, 234, 0.88); max-width: 38ch; }
.hero .eyebrow {
  background: rgba(247, 243, 234, 0.12);
  color: var(--gold-soft);
  backdrop-filter: blur(6px);
}
.hero .eyebrow::before { background: var(--gold-soft); }

.hero-badge {
  display: inline-flex;
  margin-top: 2rem;
  background: rgba(247, 243, 234, 0.92);
  color: var(--green);
  border: 1px solid rgba(184, 146, 74, 0.35);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.page-hero {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 2rem;
  background:
    radial-gradient(circle at top right, rgba(212, 181, 116, 0.2), transparent 45%),
    var(--cream);
  border-bottom: 1px solid rgba(47, 74, 58, 0.06);
}

/* —— Sections —— */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-alt {
  background: var(--cream-dark);
}

.section-header {
  margin-bottom: 2.25rem;
}

.section-header .lead,
.section-header .section-intro {
  margin-top: 0.5rem;
}

/* —— Cards —— */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--white);
  border: 1px solid rgba(47, 74, 58, 0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(31, 42, 36, 0.1);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(47, 74, 58, 0.1), rgba(184, 146, 74, 0.15));
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--green);
}
.card-icon svg { width: 28px; height: 28px; }

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

.card-list {
  margin: 0.9rem 0 0;
  display: grid;
  gap: 0.4rem;
}
.card-list li {
  position: relative;
  padding-left: 1.05rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.kap-no {
  display: inline-block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 0.55rem;
}

.kap-grid .card h3 { margin-bottom: 0.35rem; }

.sector-block {
  margin-top: 2.5rem;
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(47, 74, 58, 0.1);
  box-shadow: var(--shadow);
}
.sector-block h3 { margin-bottom: 1rem; }
.sector-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.sector-pills li {
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(47, 74, 58, 0.08);
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 500;
}

.menu-note {
  color: var(--muted);
  max-width: 62ch;
  margin-bottom: 0.5rem;
}

.menu-list-simple {
  grid-template-columns: repeat(2, 1fr);
}
.menu-list-simple .menu-item {
  grid-template-columns: 1fr;
}
.menu-list-simple .menu-item h3 {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.logo-feature {
  display: grid;
  place-items: center;
}
.logo-feature img {
  width: min(100%, 420px);
  height: auto;
  border-radius: 50%;
  background: var(--cream-dark);
  border: 1px solid rgba(47, 74, 58, 0.1);
  box-shadow: var(--shadow);
}

.map-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(47, 74, 58, 0.1);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  text-align: center;
}
.map-card p {
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.site-footer .brand img {
  background: var(--cream);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  color: var(--gold);
  font-weight: 500;
  font-size: 0.9rem;
}
.card-link:hover { color: var(--green); }

/* —— Menu preview / featured —— */
.menu-card {
  overflow: hidden;
  padding: 0;
}
.menu-card-visual {
  height: 160px;
  background: linear-gradient(135deg, var(--green-soft), var(--green-deep));
  position: relative;
  display: grid;
  place-items: center;
}
.menu-card-visual svg { width: 72px; height: 72px; opacity: 0.9; }
.menu-card-body { padding: 1.25rem 1.4rem 1.5rem; }
.price-tag {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
}

/* —— Menu page —— */
.menu-category {
  margin-bottom: 2.5rem;
}
.menu-category-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 0.85rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(184, 146, 74, 0.35);
}
.menu-category-head h2 { margin-bottom: 0; font-size: 1.75rem; }
.menu-category-head span {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.menu-list { display: grid; gap: 0.85rem; }
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem 1.5rem;
  padding: 1rem 1.15rem;
  background: var(--white);
  border-radius: 1rem;
  border: 1px solid rgba(47, 74, 58, 0.08);
}
.menu-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}
.menu-item p {
  color: var(--muted);
  font-size: 0.9rem;
  grid-column: 1;
}
.menu-item .price {
  font-weight: 600;
  color: var(--gold);
  font-size: 0.95rem;
  white-space: nowrap;
}

.package-grid .card {
  display: flex;
  flex-direction: column;
}
.package-grid .card ul {
  margin: 1rem 0 1.25rem;
  flex: 1;
}
.package-grid .card li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.package-grid .card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.package-price {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.package-note { font-size: 0.8rem; color: var(--muted); margin-bottom: 1rem; }

/* —— About —— */
.values-list .card { text-align: left; }
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}
.story-panel {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(47, 74, 58, 0.1);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.story-panel::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 146, 74, 0.25), transparent 70%);
}
.story-panel p + p { margin-top: 1rem; }
.story-panel p { color: var(--muted); }
.motif {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

/* —— Contact —— */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.contact-info .info-block {
  margin-bottom: 1.5rem;
}
.contact-info h3 { margin-bottom: 0.35rem; }
.contact-info p, .contact-info a {
  color: var(--muted);
  font-size: 0.98rem;
}
.contact-info a:hover { color: var(--gold); }
.placeholder {
  display: inline-block;
  background: rgba(184, 146, 74, 0.15);
  color: var(--green);
  font-family: ui-monospace, monospace;
  font-size: 0.9em;
  padding: 0.1em 0.4em;
  border-radius: 0.35em;
  border: 1px dashed rgba(184, 146, 74, 0.5);
  font-weight: 600;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(47, 74, 58, 0.1);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.1rem;
}
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(47, 74, 58, 0.18);
  border-radius: 0.75rem;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 146, 74, 0.2);
  background: var(--white);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-hint {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.85rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  margin-bottom: 1.15rem;
  padding: 0.9rem 1rem;
  border-radius: 0.85rem;
  font-size: 0.92rem;
  line-height: 1.5;
}
.form-status a {
  color: inherit;
  text-decoration: underline;
}
.form-status.is-success {
  background: rgba(47, 74, 58, 0.1);
  color: var(--green);
  border: 1px solid rgba(47, 74, 58, 0.18);
}
.form-status.is-error {
  background: rgba(160, 50, 40, 0.08);
  color: #7a2e28;
  border: 1px solid rgba(160, 50, 40, 0.2);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

/* —— CTA band —— */
.cta-band {
  background:
    linear-gradient(135deg, var(--green-deep), var(--green)),
    var(--green);
  color: var(--cream);
  border-radius: calc(var(--radius) + 0.25rem);
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  box-shadow: var(--shadow);
}
.cta-band h2 { color: var(--cream); }
.cta-band p {
  color: rgba(247, 243, 234, 0.85);
  max-width: 42ch;
  margin: 0.75rem auto 1.5rem;
  font-weight: 300;
}
.cta-band .btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: none;
}
.cta-band .btn-primary:hover { background: var(--gold-soft); }

/* —— Footer —— */
.site-footer {
  margin-top: auto;
  background: var(--green-deep);
  color: rgba(247, 243, 234, 0.8);
  padding: 2.75rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand .brand-name { color: var(--cream); }
.footer-brand .brand-tag { color: var(--gold-soft); }
.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  max-width: 32ch;
  font-weight: 300;
}
.footer-col h3 {
  color: var(--gold-soft);
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.footer-col a {
  display: block;
  padding: 0.25rem 0;
  font-size: 0.92rem;
  color: rgba(247, 243, 234, 0.75);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom {
  border-top: 1px solid rgba(247, 243, 234, 0.12);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(247, 243, 234, 0.55);
}

/* —— Utilities —— */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* —— Responsive —— */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .story-grid,
  .contact-grid,
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(247, 243, 234, 0.98);
    border-bottom: 1px solid rgba(47, 74, 58, 0.1);
    padding: 0.75rem 1rem 1rem;
    gap: 0.25rem;
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 0.75rem 1rem; }
  .nav-cta { margin-left: 0 !important; text-align: center; }
  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }
  .menu-item {
    grid-template-columns: 1fr;
  }
  .menu-item .price { justify-self: start; }
  .menu-list-simple { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card, .btn { transition: none; }
}
