/* ===================================== */
/* Café Dörrenbach – Stable Clean 2026  */
/* ===================================== */


/* ========== RESET ========== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f6f5f3;
  color: #111;
  line-height: 1.6;
  overflow-x: hidden;
}


/* ========== NAVIGATION ========== */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background: white;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  z-index: 1000;
}

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

.logo-small {
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: #111;
  font-size: 0.9rem;
}


/* ========== BURGER ========== */

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 24px;
  height: 2px;
  background: #111;
}


/* ================= HERO CLEAN GOLD ================= */

.hero {
  margin-top: 70px;
  min-height: 85vh;
  background: url("hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: white;
}

.hero-content img {
  width: 120px;
  margin-bottom: 30px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 15px;
  color: white;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 35px;
}

/* ================= BUTTONS CLEAN ================= */

.hero-content > div {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s ease;
}

/* GOLD PRIMARY */
.btn-primary {
  background: linear-gradient(135deg, #d4af37, #b8860b);
  color: white;
  border: none;
  box-shadow: 0 8px 25px rgba(184,134,11,0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(184,134,11,0.45);
}

/* CLEAN SECONDARY */
.btn-secondary {
  border: 1px solid white;
  color: white;
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
}

/* ========== MAIN ========== */

main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 20px;
}

.section {
  margin-bottom: 120px;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 40px;
}


/* ========== CARD BOX ========== */

.card-box {
  background: white;
  padding: 40px;
  border-radius: 18px;
}


/* ========== EVENTS ========== */
.event-card {
  background: white;
  padding: 18px 22px;
  border-radius: 16px;
  margin-bottom: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
  cursor: pointer;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}
#eventList {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.event-card {
  background: white;
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.05);
}


/* ========== TABLE ========== */

.opening-table {
  width: 100%;
  border-collapse: collapse;
}

.opening-table td {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.opening-table td:last-child {
  text-align: right;
}


/* ========== FORM (STABIL & SIMPLE) ========== */

form {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

form input,
form select {
  flex: 1 1 180px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 0.9rem;
}

form button {
  flex: 1 1 200px;
}


/* ========== MAP ========== */

.map-container {
  margin-top: 20px;
}

.map-img {
  width: 100%;
  border-radius: 18px;
  display: block;
}


/* ========== FOOTER ========== */

footer {
  background: #111;
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 60px 20px;
  font-size: 0.85rem;
}


/* ========== MOBILE MENU ========== */

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 768px) {

  /* HERO */
  .hero {
    min-height: 75vh;
  }

  .hero-content img {
    width: 90px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  /* NAVIGATION MOBILE */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 240px;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: 0.3s;
  }

  .nav-links.active {
    right: 0;
  }

  .burger {
    display: flex;
  }

  main {
    padding: 70px 20px;
  }

}
/* ================= WELCOME SECTION ================= */

.welcome-card {
  padding: 50px;
  border-radius: 28px;
  background: linear-gradient(145deg, #ffffff, #f7f2ea);
}

.welcome-intro {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 30px;
}

.welcome-intro span {
  color: #caa16a;
  font-weight: 600;
}

.welcome-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  font-size: 16px;
  margin-bottom: 30px;
}

.welcome-features div {
  padding: 12px 18px;
  background: white;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.welcome-features div:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.welcome-outro {
  font-size: 18px;
  font-style: italic;
  text-align: center;
  color: #666;
}
/* ================= LOGO NAV ================= */

.logo-small {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  position: relative;
  transition: 0.3s ease;
}

.logo-small::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #caa16a;
  transition: 0.3s ease;
}

.logo-small:hover::after {
  width: 100%;
}