/*
  Edessa die Döneria – Sankt Wendel
  
  Design inspiration: The ancient city of Edessa (modern Şanlıurfa),
  Southeastern Anatolian spice markets, terracotta architecture,
  and kilim textile patterns. Warm, earthy, and direct.
  
  Color palette:
  - Paprika:      hsl(12, 65%, 38%)   – deep spice red, primary
  - Saffron:      hsl(38, 80%, 52%)   – golden warmth, accent
  - Flatbread:    hsl(35, 28%, 94%)   – warm off-white, background
  - Cumin:        hsl(30, 15%, 25%)   – dark warm brown, text
  - Sumac:        hsl(350, 40%, 30%)  – deep berry, decorative
  - Herb:         hsl(90, 20%, 40%)   – muted olive, subtle accent
  - Yogurt:       hsl(40, 25%, 97%)   – near-white, card backgrounds
*/

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

:root {
  --paprika: hsl(12, 65%, 38%);
  --paprika-light: hsl(12, 50%, 50%);
  --saffron: hsl(38, 80%, 52%);
  --saffron-muted: hsl(38, 50%, 70%);
  --flatbread: hsl(35, 28%, 94%);
  --cumin: hsl(30, 15%, 25%);
  --cumin-light: hsl(30, 10%, 45%);
  --sumac: hsl(350, 40%, 30%);
  --herb: hsl(90, 20%, 40%);
  --yogurt: hsl(40, 25%, 97%);
  --charcoal: hsl(20, 8%, 18%);
  --border-warm: hsl(30, 20%, 82%);
}

html {
  font-size: 17px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Palatino Linotype', 'Book Antiqua', 'Palatino', serif;
  background-color: var(--flatbread);
  color: var(--cumin);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ---- NAVIGATION ---- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--charcoal);
  border-bottom: 3px solid var(--saffron);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.nav-brand {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--saffron);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 1.6rem;
  list-style: none;
}

.nav-links a {
  color: hsl(35, 20%, 75%);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: 'Trebuchet MS', 'Lucida Sans', 'Lucida Grande', sans-serif;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--saffron);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--saffron);
  margin: 5px 0;
  transition: transform 0.25s, opacity 0.2s;
}

/* ---- HERO ---- */

.hero {
  margin-top: 56px;
  padding: 5rem 1.5rem 4rem;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -60px;
  width: 320px;
  height: 320px;
  border: 50px solid hsl(38, 80%, 52%, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 10%;
  width: 200px;
  height: 200px;
  background: repeating-conic-gradient(
    hsl(12, 65%, 38%, 0.04) 0deg 30deg,
    transparent 30deg 60deg
  );
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-tagline {
  font-family: 'Trebuchet MS', 'Lucida Sans', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--saffron);
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  color: var(--yogurt);
  line-height: 1.15;
  font-weight: 700;
  max-width: 600px;
}

.hero h1 em {
  font-style: normal;
  color: var(--saffron);
  display: inline;
}

.hero-desc {
  margin-top: 1.2rem;
  font-size: 1.05rem;
  color: hsl(30, 12%, 65%);
  max-width: 520px;
  line-height: 1.7;
}

.hero-meta {
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
}

.hero-meta-label {
  font-family: 'Trebuchet MS', 'Lucida Sans', sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: hsl(30, 10%, 50%);
}

.hero-meta-value {
  font-size: 0.95rem;
  color: var(--yogurt);
  margin-top: 0.15rem;
}

.hero-cta {
  margin-top: 2.5rem;
  display: inline-block;
  background: var(--paprika);
  color: var(--yogurt);
  padding: 0.75rem 2rem;
  text-decoration: none;
  font-family: 'Trebuchet MS', 'Lucida Sans', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--paprika);
  transition: background 0.25s, color 0.25s;
}

.hero-cta:hover {
  background: transparent;
  color: var(--paprika-light);
}

/* ---- SECTION SHARED ---- */

section {
  padding: 4.5rem 1.5rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Trebuchet MS', 'Lucida Sans', sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--paprika);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

/* Decorative line under section titles */
.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--saffron);
  margin-top: 0.7rem;
}

/* ---- SPEISEKARTE (MENU) ---- */

.menu-section {
  background: var(--yogurt);
  border-top: 1px solid var(--border-warm);
  border-bottom: 1px solid var(--border-warm);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.menu-card {
  background: var(--flatbread);
  border-left: 4px solid var(--saffron);
  padding: 1.5rem 1.5rem 1.3rem;
  position: relative;
}

.menu-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.menu-card-desc {
  font-size: 0.88rem;
  color: var(--cumin-light);
  line-height: 1.55;
  margin-bottom: 0.6rem;
}

.menu-card-price {
  font-family: 'Trebuchet MS', 'Lucida Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--paprika);
  letter-spacing: 0.02em;
}

.menu-note {
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  background: hsl(38, 40%, 92%);
  border-left: 4px solid var(--saffron);
  font-size: 0.9rem;
  color: var(--cumin-light);
  font-style: italic;
}

/* ---- ÜBER UNS (ABOUT) ---- */

.about-section {
  background: var(--flatbread);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--cumin);
}

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

.about-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-highlights li {
  padding: 1.1rem 1.3rem;
  background: var(--yogurt);
  border-left: 3px solid var(--paprika);
  font-size: 0.9rem;
  line-height: 1.5;
}

.about-highlights li strong {
  display: block;
  font-size: 0.95rem;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}

/* ---- ÖFFNUNGSZEITEN (HOURS) ---- */

.hours-section {
  background: var(--charcoal);
  color: var(--yogurt);
}

.hours-section .section-label {
  color: var(--saffron);
}

.hours-section .section-title {
  color: var(--yogurt);
}

.hours-section .section-title::after {
  background: var(--paprika);
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  margin-top: 1rem;
  border: 1px solid hsl(30, 10%, 30%);
}

.hours-day {
  padding: 1.3rem 0.8rem;
  text-align: center;
  border-right: 1px solid hsl(30, 10%, 30%);
  transition: background 0.2s;
}

.hours-day:last-child {
  border-right: none;
}

.hours-day:hover {
  background: hsl(30, 8%, 22%);
}

.hours-day-name {
  font-family: 'Trebuchet MS', 'Lucida Sans', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--saffron-muted);
  margin-bottom: 0.6rem;
}

.hours-day-time {
  font-size: 0.88rem;
  line-height: 1.6;
  color: hsl(35, 15%, 75%);
}

.hours-day-time.closed {
  color: var(--paprika-light);
  font-style: italic;
}

.hours-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: hsl(30, 10%, 55%);
  font-style: italic;
}

/* ---- KONTAKT (CONTACT) ---- */

.contact-section {
  background: var(--yogurt);
  border-top: 1px solid var(--border-warm);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 0.5rem;
}

.contact-block {
  margin-bottom: 1.8rem;
}

.contact-block-label {
  font-family: 'Trebuchet MS', 'Lucida Sans', sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--paprika);
  margin-bottom: 0.3rem;
}

.contact-block-value {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.contact-block-value a {
  color: var(--paprika);
  text-decoration: none;
  border-bottom: 1px solid hsl(12, 65%, 38%, 0.3);
  transition: border-color 0.2s;
}

.contact-block-value a:hover {
  border-color: var(--paprika);
}

.contact-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-cta-box {
  background: var(--charcoal);
  padding: 2rem 2rem;
  color: var(--yogurt);
}

.contact-cta-box h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--saffron);
}

.contact-cta-box p {
  font-size: 0.9rem;
  color: hsl(30, 10%, 65%);
  margin-bottom: 1.2rem;
  line-height: 1.55;
}

.contact-cta-link {
  display: inline-block;
  background: var(--saffron);
  color: var(--charcoal);
  padding: 0.6rem 1.5rem;
  text-decoration: none;
  font-family: 'Trebuchet MS', 'Lucida Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  transition: background 0.25s;
}

.contact-cta-link:hover {
  background: var(--saffron-muted);
}

/* ---- FOOTER ---- */

.footer {
  background: var(--charcoal);
  border-top: 3px solid var(--saffron);
  padding: 2rem 1.5rem;
  text-align: center;
}

.footer p {
  font-family: 'Trebuchet MS', 'Lucida Sans', sans-serif;
  font-size: 0.72rem;
  color: hsl(30, 8%, 45%);
  letter-spacing: 0.06em;
}

.footer a {
  color: hsl(30, 8%, 55%);
  text-decoration: none;
}

/* ---- RESPONSIVE ---- */

@media (max-width: 900px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hours-grid {
    grid-template-columns: 1fr;
    border: none;
  }
  
  .hours-day {
    border-right: none;
    border-bottom: 1px solid hsl(30, 10%, 30%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 1.2rem;
    text-align: left;
  }
  
  .hours-day:last-child {
    border-bottom: none;
  }
  
  .hours-day-name {
    margin-bottom: 0;
  }
}

@media (max-width: 680px) {
  html {
    font-size: 16px;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--charcoal);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 1rem;
    border-bottom: 3px solid var(--saffron);
  }
  
  .nav-links.open {
    display: flex;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .hero {
    padding: 3.5rem 1.2rem 3rem;
  }
  
  .hero-meta {
    gap: 1.2rem;
  }
  
  section {
    padding: 3rem 1.2rem;
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-cta-box {
    padding: 1.5rem;
  }
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--saffron);
  outline-offset: 2px;
}
