* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #0d0d0d;
  --dark: #171717;
  --white: #ffffff;
  --cream: #f8f1e7;
  --gold: #c9a45c;
  --red: #9b1c1c;
  --green: #1f5c3a;
  --text: #2b2b2b;
  --gray: #777;
}

body {
  font-family: "Lato", sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

/* HEADER */
.site-header {
  background: var(--black);
  color: var(--white);
  padding: 20px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  border-bottom: 2px solid var(--gold);
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo-image1 {
  width: 120px;
  height: auto;
}

.logo-image2 {
  width: 500px;
  height: auto;
}


.logo-text h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  letter-spacing: 1px;
  color: var(--gold);
}

.logo-text span {
  font-family: "Great Vibes", cursive;
  font-size: 26px;
  display: block;
  margin-top: -8px;
}

.logo-text p {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #ddd;
}

/* NAV */
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.nav-btn,
.page-link {
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--white);
  padding: 10px 18px;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.3s;
}

.nav-btn:hover,
.nav-btn.active,
.page-link:hover {
  background: var(--gold);
  color: var(--black);
}

/* SEITEN */
.page {
  display: none;
  padding: 70px 7%;
  min-height: 70vh;
}

.page.active {
  display: block;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 50px;
}

.hero-small,
.section-small {
  font-family: "Great Vibes", cursive;
  font-size: 34px;
  color: var(--red);
}

.hero h2,
.section-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 58px;
  line-height: 1.1;
  color: var(--black);
  margin: 10px 0 20px;
}

.hero-text {
  font-size: 20px;
  max-width: 650px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-link {
  background: var(--black);
  text-decoration: none;
}

.page-link.secondary {
  background: transparent;
  color: var(--black);
}

.page-link.secondary:hover {
  color: var(--black);
}

.hero-image-box {
  text-align: center;
}

.hero-logo {
  max-width: 360px;
  width: 100%;
}

/* SECTION */
.section-header {
  text-align: center;
  margin-bottom: 45px;
}

.section-header p {
  max-width: 750px;
  margin: 0 auto;
}

.text-box {
  max-width: 850px;
  margin: 0 auto;
  background: var(--white);
  padding: 35px;
  border-left: 5px solid var(--gold);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.text-box p {
  margin-bottom: 18px;
  font-size: 18px;
}

/* SPEISEKARTE */
.menu-category {
  max-width: 1050px;
  margin: 0 auto 45px;
  background: var(--white);
  padding: 30px;
  border-radius: 4px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.menu-category h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  color: var(--red);
  margin-bottom: 20px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 10px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  color: var(--black);
}

.menu-item p {
  color: var(--gray);
  margin-top: 4px;
}

.menu-item small {
  display: block;
  margin-top: 6px;
  color: var(--green);
  font-size: 13px;
}

.menu-item span {
  white-space: nowrap;
  font-weight: 700;
  color: var(--red);
  font-size: 18px;
}

.menu-note {
  max-width: 1050px;
  margin: -20px auto 45px;
  padding: 18px 25px;
  background: var(--dark);
  color: var(--white);
  border-left: 5px solid var(--gold);
}


/* ALLERGENE */
.allergene-box {
  max-width: 1050px;
  margin: 50px auto;
  background: var(--black);
  color: var(--white);
  padding: 35px;
  border-top: 4px solid var(--gold);
}

.allergene-box h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--gold);
  font-size: 32px;
  margin: 20px 0 15px;
}

.allergene-box ul {
  list-style: none;
  columns: 2;
  margin-bottom: 20px;
}

.allergene-box li {
  margin-bottom: 8px;
}

.allergene-box p {
  color: #ddd;
  margin-top: 20px;
}

/* BESTELLUNG */
.contact-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin: 25px 0;
}

.contact-btn {
  background: var(--black);
  color: var(--white);
  padding: 12px 22px;
  text-decoration: none;
  border: 1px solid var(--gold);
  transition: 0.3s;
}

.contact-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.contact-btn.secondary {
  background: var(--green);
}

.notice {
  color: var(--red);
  font-size: 14px;
}

/* UBER EATS BUTTON */

.uber-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-top: 20px;

  padding: 14px 24px;

  background: #06c167;

  color: white;

  text-decoration: none;

  font-weight: bold;

  border-radius: 6px;

  transition: 0.3s;
}

.uber-btn:hover {
  transform: translateY(-2px);

  background: #04a85a;
}

.uber-btn i {
  font-size: 18px;
}

/* GALERIE */


.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;

  border: 2px solid var(--gold);
  background: #000;
}

.gallery-item img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.05);
  transition: 0.4s;
}

/* Tablet */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Handy */
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* DUNKLER OVERLAY */

.gallery-item::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.05)
  );

  opacity: 0;

  transition: 0.4s;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* MOBILE */

@media (max-width: 700px) {

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 260px;
  }

}

/* KONTAKT */
.contact-grid {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.contact-card {
  background: var(--white);
  padding: 28px;
  border-top: 4px solid var(--gold);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  color: var(--red);
  margin-bottom: 12px;
}

.contact-card a {
  color: var(--red);
  text-decoration: none;
}

.map-box {
  max-width: 1050px;
  margin: 35px auto 0;
  height: 300px;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
}

/* FOOTER */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 45px 7% 20px;
  border-top: 2px solid var(--gold);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 35px;
  margin-bottom: 30px;
}

.footer-brand h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--gold);
  font-size: 34px;
}

.footer-brand p {
  font-family: "Great Vibes", cursive;
  font-size: 26px;
}

.footer-brand span {
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 13px;
}

.footer-info p {
  margin-bottom: 7px;
}

.footer-info a,
.footer-links a {
  color: var(--gold);
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #bbb;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    text-align: center;
  }

  .logo-box {
    flex-direction: column;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h2,
  .section-header h2 {
    font-size: 42px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .contact-grid,
  .footer-content,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .allergene-box ul {
    columns: 1;
  }
}

@media (max-width: 600px) {
  .page {
    padding: 45px 5%;
  }

  .logo-text h1 {
    font-size: 28px;
  }

  .main-nav {
    width: 100%;
  }

  .nav-btn {
    width: 100%;
  }

  .hero h2,
  .section-header h2 {
    font-size: 34px;
  }

  .hero-text {
    font-size: 17px;
  }

  .menu-category {
    padding: 22px;
  }

  .menu-item {
    flex-direction: column;
    gap: 8px;
  }

  .menu-item span {
    font-size: 17px;
  }
}

/* SOCIAL BUTTONS */

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 18px;

  background: #111;
  color: white;

  text-decoration: none;

  border: 1px solid var(--gold);

  transition: 0.3s;

  margin-top: 10px;
}

.social-btn:hover {
  background: var(--gold);
  color: black;
}

.social-btn i {
  font-size: 18px;
}

/* IMPRESSUM & DATENSCHUTZ */

.legal-page {
  max-width: 950px;
  margin: 70px auto;
  padding: 50px;
  background: #ffffff;
  color: var(--text);
  border-top: 5px solid var(--gold);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.10);
}

.legal-page h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  color: var(--black);
  margin-bottom: 35px;
}

.legal-page h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  color: var(--red);
  margin-top: 35px;
  margin-bottom: 12px;
}

.legal-page p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.legal-page a {
  display: inline-block;
  margin-top: 30px;
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--red);
}

.legal-page a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* MOBILE */

@media (max-width: 700px) {
  .legal-page {
    margin: 30px 15px;
    padding: 30px 22px;
  }

  .legal-page h1 {
    font-size: 38px;
  }

  .legal-page h2 {
    font-size: 25px;
  }

  .legal-page p {
    font-size: 16px;
  }
}