/* ================================================
   Café Aurora – Stylesheet v2
   ================================================
   Design: Warm & Editorial — Magazin-Stil
   Farben: Elfenbein, Espresso, Terrakotta
   Schriften: Cormorant Garamond + Outfit
   ================================================ */


/* ================================================
   1. CSS VARIABLEN
   ================================================ */

:root {
  --clr-ivory:        #faf7f1;
  --clr-ivory-dark:   #f0e9dc;
  --clr-ivory-mid:    #e8ddd0;
  --clr-espresso:     #1e1108;
  --clr-brown:        #2e1a0a;
  --clr-brown-mid:    #6b3d1e;
  --clr-brown-light:  #9c6840;
  --clr-terra:        #bf5a25;
  --clr-terra-light:  #d07040;
  --clr-white:        #ffffff;
  --clr-border:       #ddd0bc;
  --clr-border-light: #ede5d8;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;

  --radius:     10px;
  --radius-lg:  20px;
  --shadow:     0 2px 20px rgba(30, 17, 8, 0.07);
  --shadow-lg:  0 8px 40px rgba(30, 17, 8, 0.13);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ================================================
   2. RESET & BASIS
   ================================================ */

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--clr-ivory);
  color: var(--clr-brown);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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


/* ================================================
   3. HILFSKLASSEN
   ================================================ */

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 110px 0;
}

.section.soft {
  background: var(--clr-ivory-dark);
}

.section-head {
  margin-bottom: 60px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 300;
  color: var(--clr-brown);
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.section-head p {
  font-size: 1rem;
  color: var(--clr-brown-light);
  max-width: 520px;
  line-height: 1.8;
}


/* ================================================
   4. BUTTONS
   ================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  letter-spacing: 0.02em;
}

.btn.primary {
  background: var(--clr-terra);
  color: var(--clr-white);
  padding: 13px 28px;
}

.btn.primary:hover {
  background: var(--clr-terra-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(191, 90, 37, 0.28);
}

.btn.ghost {
  background: transparent;
  color: var(--clr-brown);
  padding: 12px 28px;
  border: 1.5px solid var(--clr-border);
}

.btn.ghost:hover {
  border-color: var(--clr-brown-mid);
  background: var(--clr-ivory-dark);
}

.btn.small {
  background: var(--clr-terra);
  color: var(--clr-white);
  padding: 8px 18px;
  font-size: 0.82rem;
}

.btn.small:hover {
  background: var(--clr-terra-light);
}

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


/* ================================================
   5. HEADER & NAVIGATION
   ================================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 241, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
  padding: 18px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 38px;
  height: 38px;
  background: var(--clr-terra);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(191, 90, 37, 0.25);
}

.brand-mark::after {
  content: '☕';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--clr-brown);
  letter-spacing: -0.01em;
}

.menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.menu a {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--clr-brown-light);
  text-decoration: none;
  transition: color var(--transition);
}

.menu a:hover {
  color: var(--clr-brown);
}


/* ================================================
   6. HERO
   ================================================ */

.hero {
  padding: 90px 0 110px;
  background: var(--clr-ivory);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(191, 90, 37, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168, 138, 98, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-terra);
  margin-bottom: 24px;
}

.kicker::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--clr-terra);
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 300;
  color: var(--clr-brown);
  line-height: 1.07;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.lead {
  font-size: 1.05rem;
  color: var(--clr-brown-light);
  max-width: 460px;
  line-height: 1.85;
  margin-bottom: 40px;
}

.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.badges span {
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--clr-brown-mid);
  background: var(--clr-ivory-dark);
  border: 1px solid var(--clr-border);
  padding: 5px 14px;
  border-radius: 50px;
}

/* Hero-Karte rechts */
.hero-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-card-top {
  background: linear-gradient(135deg, var(--clr-terra) 0%, var(--clr-terra-light) 100%);
  padding: 26px 30px;
}

.hero-card-top h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--clr-white);
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}

.hero-card-top p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-card-list {
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.dot {
  width: 8px;
  height: 8px;
  background: var(--clr-terra);
  border-radius: 50%;
  flex-shrink: 0;
}

.item-title {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--clr-brown);
  line-height: 1.2;
}

.item-sub {
  font-size: 0.78rem;
  color: var(--clr-brown-light);
}

.item-price {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--clr-terra);
  flex-shrink: 0;
}

.mini-info {
  padding: 16px 30px 22px;
  border-top: 1px solid var(--clr-border-light);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mini-info p {
  font-size: 0.82rem;
  color: var(--clr-brown-light);
}

.mini-info strong {
  color: var(--clr-brown-mid);
}


/* ================================================
   7. MENÜ-SEKTION
   ================================================ */

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.menu-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-terra), var(--clr-terra-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-card:hover::before {
  transform: scaleX(1);
}

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

.menu-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--clr-terra);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--clr-border-light);
  letter-spacing: -0.01em;
}

.menu-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.menu-card ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  color: var(--clr-brown);
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--clr-border-light);
}

.menu-card ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.menu-card ul li span:last-child {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--clr-terra);
}

.note {
  background: var(--clr-ivory-dark);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 18px 22px;
  border-left: 3px solid var(--clr-terra);
}

.note p {
  font-size: 0.88rem;
  color: var(--clr-brown-light);
}

.note strong {
  color: var(--clr-brown-mid);
}


/* ================================================
   8. ÜBER UNS
   ================================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 72px;
  align-items: start;
}

.about-grid h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--clr-brown);
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

.about-grid > div > p {
  font-size: 1rem;
  color: var(--clr-brown-light);
  line-height: 1.85;
  margin-bottom: 16px;
}

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.pill {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--clr-terra);
  background: rgba(191, 90, 37, 0.07);
  border: 1px solid rgba(191, 90, 37, 0.18);
  padding: 5px 16px;
  border-radius: 50px;
}

.about-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow);
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--clr-brown);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.about-card > p {
  font-size: 0.9rem;
  color: var(--clr-brown-light);
  margin-bottom: 26px;
  line-height: 1.75;
}

.about-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--clr-border-light);
  padding-top: 22px;
}

.stat {
  flex: 1;
  text-align: center;
  padding: 0 12px;
  border-right: 1px solid var(--clr-border-light);
}

.stat:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--clr-terra);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.73rem;
  color: var(--clr-brown-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}


/* ================================================
   9. GALERIE
   ================================================ */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 210px 210px;
  gap: 14px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ================================================
   10. ÖFFNUNGSZEITEN
   ================================================ */

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: start;
}

.hours-grid h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--clr-brown);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.hours-grid > div > p {
  font-size: 1rem;
  color: var(--clr-brown-light);
  line-height: 1.8;
}

.hours-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 26px;
  border-bottom: 1px solid var(--clr-border-light);
  font-size: 0.95rem;
  transition: background var(--transition);
}

.row:hover { background: var(--clr-ivory-dark); }
.row:last-child { border-bottom: none; }

.row span:first-child {
  font-weight: 600;
  color: var(--clr-brown);
}

.row span:last-child {
  color: var(--clr-brown-mid);
}

.row.subtle span {
  color: var(--clr-brown-light);
  font-style: italic;
}


/* ================================================
   11. KONTAKT
   ================================================ */

.contact-simple {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.contact-simple .section-head {
  margin-bottom: 44px;
}

.contact-cards.simple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}

.mini-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.mini-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(191, 90, 37, 0.2);
}

.mini-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-terra);
  margin-bottom: 9px;
}

.mini-text {
  font-size: 0.92rem;
  color: var(--clr-brown);
  line-height: 1.55;
}

.contact-simple .actions {
  justify-content: center;
}


/* ================================================
   12. FOOTER
   ================================================ */

.footer {
  background: var(--clr-espresso);
  color: rgba(250, 247, 241, 0.6);
  padding: 64px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(250, 247, 241, 0.08);
  margin-bottom: 32px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--clr-ivory);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.footer-text {
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 260px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(250, 247, 241, 0.5);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--clr-ivory);
}

.footer-note {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-note p {
  font-size: 0.82rem;
  color: rgba(250, 247, 241, 0.35);
}


/* ================================================
   13. RESPONSIVE
   ================================================ */

@media (max-width: 900px) {
  .section { padding: 80px 0; }

  .hero-grid { grid-template-columns: 1fr; gap: 52px; }
  .hero-card { max-width: 480px; }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .hours-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }

  .menu a:not(.btn) { display: none; }
  .hero-text h1 { font-size: 2.8rem; }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .ph-1, .ph-6 { grid-column: span 1; }

  .contact-cards.simple { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
}
