@font-face {
  font-family: "Rochester";
  src: url("../fonts/Rochester-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --coffee: #2a211c;
  --coffee-soft: #49372c;
  --caramel: #aa7652;
  --beige: #d3b18f;
  --cream: #f2e8dc;
  --paper: #fbf8f4;
  --white: #ffffff;
  --border: rgba(42, 33, 28, .16);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  color: var(--coffee);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
}

html,
body {
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.03;
}

h1 {
  font-size: clamp(3rem, 6vw, 6.4rem);
}

h1 em {
  color: var(--caramel);
  font-weight: 400;
}

h2 {
  margin-bottom: 1.75rem;
  font-size: clamp(2.5rem, 4.5vw, 4.8rem);
}

.section {
  padding: clamp(5rem, 9vw, 9rem) 0;
}

.section-light {
  background: var(--paper);
}

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

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

.eyebrow {
  margin-bottom: 1rem;
  color: var(--caramel);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #e0b991;
}

.lead-copy,
.section-intro {
  font-size: clamp(1.2rem, 1.55vw, 1.45rem);
  line-height: 1.6;
}

.text-white-75 {
  color: rgba(255, 255, 255, .75);
}



/* Navigation */

.site-header {
  background: rgba(251, 248, 244, .94);
  border-bottom: 1px solid rgba(42, 33, 28, .08);
  backdrop-filter: blur(12px);
}

.navbar {
  min-height: 78px;
}

.navbar-brand {
  display: inline-flex;
  align-items: baseline;
  gap: .55rem;
  color: var(--coffee);
  text-decoration: none;
}

.brand-name {
  font-family: "Rochester", cursive;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1;
  color: var(--coffee);
  white-space: nowrap;
}

.nav-link {
  margin: 0 .35rem;
  color: var(--coffee);
  font-size: .93rem;
  font-weight: 600;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--caramel);
}

.btn-coffee {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--coffee);
  --bs-btn-border-color: var(--coffee);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--caramel);
  --bs-btn-hover-border-color: var(--caramel);
  --bs-btn-active-bg: var(--caramel);
  --bs-btn-active-border-color: var(--caramel);
  border-radius: 0;
  padding: .8rem 1.4rem;
}

/* Hero */

.hero {
  position: relative;
  height: clamp(650px, 75vh, 850px);
  padding-top: 78px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 78px 0 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
}

.hero-box {
  width: min(100%, 500px);
  padding: 2rem 2.5rem;
  background: rgba(211, 177, 143, .92);
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 5.25rem);
  line-height: .95;
}

.hero-box .eyebrow {
  margin-bottom: 1rem;
}

/* Bilder / Story */

#ueber-uns {
  padding-top: 4.5rem;
}

.image-frame {
  position: relative;
}

.image-frame::before {
  content: "";
  position: absolute;
  inset: 1rem -1rem -1rem 1rem;
  z-index: 0;
  background: var(--beige);
}

.image-frame img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-frame-tall img {
  aspect-ratio: 5 / 4;
}

/* Dark section */

.fact-row {
  display: flex;
  gap: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.fact {
  display: flex;
  flex-direction: column;
}

.fact-number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  color: #fff;
}

.fact-label {
  max-width: 180px;
  color: rgba(255, 255, 255, .6);
  font-size: .83rem;
  line-height: 1.4;
}

.dark-image-main {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Getränke */

.drink-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 260px;
  gap: 1rem;
}

.drink-card {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  background: var(--coffee);
}

.drink-card-large {
  grid-column: span 8;
  grid-row: span 2;
}

.drink-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.drink-card:hover img {
  transform: scale(1.025);
}

.drink-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 20, 16, .6), transparent 50%);
}

.drink-card-caption {
  position: absolute;
  left: 1.5rem;
  bottom: 1.25rem;
  z-index: 2;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.espresso-martini-img {
  object-position: center 65%;
}

.roastery-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem 2rem;
}

.roastery-links a {
  color: var(--coffee);
  font-weight: 700;
  text-underline-offset: .35rem;
}

.roastery-links a:hover {
  color: var(--caramel);
}

/* Events */

.event-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 720px;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 9rem) 0;
}

.event-bg,
.event-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.event-bg {
  object-fit: cover;
  object-position: center;
}

.event-overlay {
  background: linear-gradient(90deg, rgba(26, 19, 15, .92) 0%, rgba(26, 19, 15, .78) 45%, rgba(26, 19, 15, .25) 100%);
}

.event-copy {
  max-width: 720px;
  color: rgba(255, 255, 255, .82);
  font-size: 1.25rem;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 2rem;
}

.event-tags span {
  padding: .55rem .9rem;
  border: 1px solid rgba(255, 255, 255, .38);
  color: #fff;
  font-size: .85rem;
}

/* Kontakt */

.section-contact {
  background: var(--beige);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.contact-details a {
  width: fit-content;
  color: var(--coffee);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: .28rem;
}

.form-panel {
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background: var(--paper);
}

.form-success {
  padding: 0;
  background: transparent;
}

.form-control {
  min-height: 50px;
  padding-left: 0;
  padding-right: 0;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
}

textarea.form-control {
  min-height: 150px;
}

.form-control:focus {
  border-color: var(--coffee);
  box-shadow: none;
  background: transparent;
}

.form-label {
  margin-bottom: .15rem;
  font-size: .82rem;
  font-weight: 700;
}

.form-privacy {
  margin-bottom: 0;
  font-size: .75rem;
  line-height: 1.5;
}

.form-privacy a {
  color: var(--coffee);
  text-underline-offset: .2rem;
}

/* Honeypot: aus dem sichtbaren Bereich verschieben, nicht display:none */
.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Footer */

.site-footer {
  padding: 2rem 0;
  background: var(--coffee);
  color: rgba(255, 255, 255, .7);
  font-size: .9rem;
}

.site-footer a {
  margin-left: 1.5rem;
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  color: #e0b991;
}


@media (max-width: 767.98px) {

  .site-footer .col-md-6:first-child {
    display: none;
  }

  .site-footer .col-md-6:last-child {
    text-align: center;
  }

}

/* Rechtliche Seiten */

.legal-page {
  min-height: calc(100vh - 78px);
  padding-top: 78px;
  background: var(--paper);
}

.legal-page .section {
  padding-top: clamp(4rem, 8vw, 7rem);
}

.legal-header {
  padding: 3rem 0;
  background: var(--coffee);
}

.legal-header .eyebrow {
  margin-bottom: .75rem;
  color: var(--beige);
}

.legal-header h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1;
}

.legal-content {
  max-width: 760px;
}

.legal-content h2 {
  margin-top: 2.75rem;
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  line-height: 1.8;
}

.legal-content a {
  color: var(--coffee);
  text-underline-offset: .2rem;
}

.legal-content a:hover {
  color: var(--caramel);
}

/* Logo im Impressum */

.legal-logo {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.legal-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.legal-logo-desktop {
  max-width: 320px;
}

.legal-logo-mobile {
  display: none !important;
}

/* Responsive */

@media (min-width: 992px) {
  #ueber-uns .col-lg-6:last-child {
    padding-left: 3rem;
  }
}

@media (max-width: 991.98px) {
  .site-header {
    background: var(--paper);
  }

  .navbar-collapse {
    padding: 1rem 0 1.5rem;
  }

  .nav-link {
    margin: 0;
    padding: .65rem 0;
  }

  .navbar-nav .btn {
    margin-top: .75rem;
  }

  .drink-grid {
    grid-auto-rows: 240px;
  }

  .drink-card,
  .drink-card-large {
    grid-column: span 6;
  }

  .drink-card-large {
    grid-row: span 2;
  }

  .legal-logo {
    justify-content: center;
    margin-top: 2rem;
  }

  .legal-logo-desktop {
    display: none !important;
  }

  .legal-logo-mobile {
    display: block !important;
    max-width: 160px;
  }
}

@media (max-width: 767.98px) {
  body {
    font-size: 1rem;
  }

  .navbar {
    min-height: 60px;
    padding-top: .25rem;
    padding-bottom: .25rem;
  }

  .navbar-toggler {
    padding: .35rem .5rem;
  }

  .brand-name {
    display: inline-block;
    font-size: clamp(1.25rem, 5.5vw, 1.5rem);
  }

  .hero {
    height: 720px;
    padding-top: 60px;
  }

  .hero-background {
    inset: 60px 0 0;
  }

  .hero-background img {
    object-position: 58% center;
  }

  .hero-container {
    align-items: center;
  }

  .hero-box {
    width: calc(100% - 2rem);
    padding: 1.5rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 12vw, 4rem);
    line-height: .95;
  }

  .hero-box .eyebrow {
    font-size: .7rem;
  }

  .image-frame::before {
    inset: .85rem -.85rem -.85rem .85rem;
  }

  .fact-row {
    gap: 1.5rem;
  }

  .drink-grid {
    display: block;
  }

  .drink-card {
    height: 280px;
    margin-bottom: 1rem;
  }

  .drink-card-large {
    height: 380px;
  }

  .event-section {
    min-height: 620px;
  }

  .event-overlay {
    background: rgba(26, 19, 15, .76);
  }

  .site-footer a {
    margin-left: 0;
    margin-right: 1.25rem;
  }
}
