 @font-face {
  font-family: 'Inter';
  src: url('./fonts/inter/inter-v20-latin-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/inter/inter-v20-latin-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/inter/inter-v20-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/inter/inter-v20-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('./fonts/playfair/playfair-display-v40-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('./fonts/playfair/playfair-display-v40-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}
 
 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
    }

    :root {
      --bg: #070707;
      --card: rgba(255,255,255,0.04);
      --gold: #c9a15d;
      --white: #ffffff;
      --muted: #cfcfcf;
    }

	body {
	  font-family: 'Inter', sans-serif;
	  background: var(--bg);
	  color: var(--white);
	  overflow-x: hidden;
	  font-weight: 300;
	  letter-spacing: -0.01em;
	  text-rendering: optimizeLegibility;
	  -webkit-font-smoothing: antialiased;
	  position: relative;
	}

	body::before {
	  content: '';
	  position: fixed;
	  inset: 0;
	  background-image:
		radial-gradient(rgba(255,255,255,0.015) 1px, transparent 1px);
	  background-size: 3px 3px;
	  opacity: 0.25;
	  pointer-events: none;
	  z-index: 9999;
	}

    img {
      width: 100%;
      display: block;
    }

	section {
	  padding: 160px 8%;
	  position: relative;
	}

    h1, h2, h3 {
      font-family: 'Playfair Display', serif;
    }
	
	  .family-link {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);

  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.family-link a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.family-link a:hover {
  color: rgba(201,161,93,0.8);
}

	.navbar {
	  position: fixed;
	  width: 100%;
	  top: 0;
	  left: 0;
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	  padding: 28px 8%;
	  z-index: 1000;
	  transition: all 0.45s cubic-bezier(.16,1,.3,1);
	  background: rgba(5,5,5,0.12);
	  backdrop-filter: blur(14px);
	  border-bottom: 1px solid rgba(255,255,255,0.03);
	}

	.navbar.scrolled {
	  background: rgba(5,5,5,0.82);
	  padding: 18px 8%;
	  box-shadow:
		0 10px 40px rgba(0,0,0,0.28);
	}

    .logo {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 1px;
	text-decoration: none;
    }

	.nav-links {
	  display: flex;
	  gap: 42px;
	}

    .burger-menu {
      display: none;
      position: fixed;
      right: 20px;
      bottom: 20px;
      width: 62px;
      height: 62px;
      border-radius: 50%;
      background: rgba(10,10,10,0.95);
      border: 1px solid rgba(201,161,93,0.35);
      backdrop-filter: blur(14px);
      z-index: 1200;
      cursor: pointer;
      align-items: center;
      justify-content: center;
        padding-top: 0;
      box-shadow: 0 10px 35px rgba(0,0,0,0.45);
      transition: transform 0.3s ease, background 0.3s ease;
    }

    .burger-menu:hover {
      transform: scale(1.06);
      background: rgba(18,18,18,0.98);
    }

    .burger-lines {
      width: 24px;
      height: 24px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .burger-lines span {
      position: absolute;
      display: block;
      height: 2px;
      width: 100%;
      background: white;
      border-radius: 999px;
      transition: all 0.3s ease;
    }

    .burger-lines span:nth-child(1) {
      top: 4px;
    }

    .burger-lines span:nth-child(2) {
      top: 11px;
    }

    .burger-lines span:nth-child(3) {
      top: 18px;
    }

    .mobile-nav-active .burger-lines span:nth-child(1) {
      top: 11px;
      transform: rotate(45deg);
    }

    .mobile-nav-active .burger-lines span:nth-child(2) {
      opacity: 0;
    }

    .mobile-nav-active .burger-lines span:nth-child(3) {
      top: 11px;
      transform: rotate(-45deg);
    }

    .nav-links a {
      color: var(--white);
      text-decoration: none;
      font-size: 0.95rem;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: var(--gold);
    }

    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      overflow: hidden;
	  background-attachment: fixed;
      background: linear-gradient(rgba(0,0,0,0.78), rgba(0,0,0,0.88)),
      url('images/casa_nostra_tafel.png') center/cover no-repeat;
    }
	
	.hero-tagline {
	  max-width: 900px;
	  margin: 28px auto 48px;
	  color: rgba(255,255,255,0.88);
	  font-size: clamp(1.1rem, 1.4vw, 1.45rem);
	  line-height: 1.8;
	  font-weight: 300;
	  letter-spacing: 0.03em;
	  text-align: center;
	  text-shadow: 0 8px 30px rgba(0,0,0,0.45);
	}

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
      background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(7,7,7,0.95));
      z-index: 1;
    }

	.hero::after {
	  content: '';
	  position: absolute;
	  inset: 0;
	  background:
		radial-gradient(circle at center,
		rgba(201,161,93,0.06),
		transparent 72%);
	  pointer-events: none;
	}

    @keyframes pulse {
      0%,100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.1); opacity: 0.6; }
    }

    .hero-content {
      backdrop-filter: blur(2px);
      position: relative;
      z-index: 2;
      max-width: 850px;
      animation: fadeUp 1.3s ease forwards;
    }

    .hero-logo-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 20px;
      animation: fadeUp 1.2s ease forwards;
    }

    .hero-logo-image {
      width: min(900px, 92vw);
      height: auto;
      object-fit: contain;
	  animation: floatLogo 6s ease-in-out infinite;
      filter: drop-shadow(0 20px 40px rgba(0,0,0,0.55));
    }
	
	.hero-claim {
	  max-width: 860px;

	  margin: -36px auto 42px;

	  padding: 0 30px;

	  font-family: 'Playfair Display', serif;

	  font-size: clamp(1.15rem, 1.3vw, 1.8rem);

	  line-height: 1.6;

	  font-weight: 400;

	  font-style: italic;

	  letter-spacing: 0.01em;

	  color: rgba(201,161,93,0.92);

	  text-align: center;

	  text-shadow:
		0 8px 30px rgba(0,0,0,0.45);
	}
	
		@keyframes floatLogo {
	  0%,100% {
		transform: translateY(0);
	  }

	  50% {
		transform: translateY(-10px);
	  }
	}


    .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 18px;
      flex-wrap: wrap;
    }
	
.social-links {
  color: inherit;          /* übernimmt die Textfarbe */
  text-decoration: none;   /* kein Unterstrich */
}

.social-links:visited {
  color: inherit;
}

.social-links:hover {
  color: inherit;
  text-decoration: none;
}
.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.instagram-link svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.instagram-link span {
  line-height: 1;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.contact-item i {
  color: #c9a25d; /* Gold */
}

    .btn {
      padding: 14px 28px;
      border-radius: 999px;
      border: none;
      text-decoration: none;
      font-weight: 600;
      transition:
	  transform 0.35s cubic-bezier(.16,1,.3,1),
	  box-shadow 0.35s ease,
	  background 0.35s ease,
	  border 0.35s ease;
      cursor: pointer;
    }
	
	.btn:hover {
	transform: translateY(-4px) scale(1.02);
	}

    .btn-primary {
      background: var(--gold);
      color: #111;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(212,167,98,0.4);
    }

    .btn-secondary {
      background: transparent;
      border: 1px solid rgba(255,255,255,0.3);
      color: white;
    }

    .btn-secondary:hover {
      background: rgba(255,255,255,0.08);
    }

    .section-title {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-title h2 {
      font-size: 2.7rem;
      margin-bottom: 12px;
    }

    .section-title p {
      color: var(--muted);
      max-width: 650px;
      margin: auto;
      line-height: 1.7;
    }

    .about {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 50px;
      align-items: center;
    }

    .about-image {
      border-radius: 28px;
      overflow: hidden;
      transform: translateY(40px);
      opacity: 0;
      transition: all 0.8s ease;
    }

    .about-image.visible {
      transform: translateY(0);
      opacity: 1;
    }

    .about-text h3 {
      font-size: 2rem;
      margin-bottom: 20px;
    }

    .about-text p {
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 18px;
    }

    .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 28px;
    }

	.menu-card {
	  background: rgba(255,255,255,0.03);
	  border: 1px solid rgba(255,255,255,0.04);
	  border-radius: 32px;
	  overflow: hidden;
	  transition:
		transform 0.5s cubic-bezier(.16,1,.3,1),
		border 0.5s ease,
		box-shadow 0.5s ease;
	  backdrop-filter: blur(20px);
	  opacity: 0;
	  transform: translateY(30px);
	  box-shadow:
		0 20px 60px rgba(0,0,0,0.22);
	}

    .menu-card.visible {
      opacity: 1;
      transform: translateY(0);
    }
	
	.menu-card:nth-child(1) {
		transition-delay: 0.08s;
	}

	.menu-card:nth-child(2) {
	  transition-delay: 0.18s;
	}

	.menu-card:nth-child(3) {
	  transition-delay: 0.28s;
	}

	.menu-card:hover {
	  transform: translateY(-12px) scale(1.02);
	  border-color: rgba(212,167,98,0.22);
	  box-shadow:
		0 30px 80px rgba(0,0,0,0.32);
	}

    .menu-card img {
      height: 220px;
      object-fit: cover;
    }

    .menu-content {
      padding: 24px;
    }

    .menu-content h3 {
      margin-bottom: 10px;
      font-size: 1.3rem;
    }

    .menu-content p {
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 14px;
    }

    .price {
      color: var(--gold);
      font-weight: 700;
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

	.gallery img {
	  height: 420px;
	  object-fit: cover;
	  border-radius: 28px;
	  transition:
		transform 0.6s cubic-bezier(.16,1,.3,1),
		filter 0.6s ease;
	  filter: brightness(0.92);
	}

	.gallery img:hover {
	  transform: scale(1.04);
	  filter: brightness(1);
	}

	.contact-box {
	  background: rgba(255,255,255,0.025);
	  backdrop-filter: blur(24px);
	  padding: 70px;
	  border-radius: 40px;
	  text-align: center;
	  border: 1px solid rgba(255,255,255,0.05);
	  box-shadow:
		0 20px 60px rgba(0,0,0,0.22);
	}

    .contact-box h2 {
      margin-bottom: 20px;
      font-size: 2.4rem;
    }

    .contact-box p {
      color: var(--muted);
      margin-bottom: 16px;
      line-height: 1.7;
    }

    footer {
      text-align: center;
      padding: 30px;
      color: rgba(255,255,255,0.5);
      border-top: 1px solid rgba(255,255,255,0.08);
    }
	
	.footer-links {
	  display: flex;
	  justify-content: center;
	  gap: 20px;
	  margin-top: 14px;
	}

	.footer-links a {
	  color: rgba(255,255,255,0.6);
	  text-decoration: none;
	  transition: color 0.3s ease;
	}

	.footer-links a:hover {
	  color: var(--gold);
	}

	.fade-in {
	  opacity: 0;
	  transform: translateY(80px) scale(0.98);
	  transition:
		opacity 1.2s ease,
		transform 1.2s cubic-bezier(.16,1,.3,1);
	  will-change: transform, opacity;
	}

	.fade-in.visible {
	  opacity: 1;
	  transform: translateY(0) scale(1);
	}

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 980px) {
      .hero h1 {
        font-size: 3rem;
      }

      .about {
        grid-template-columns: 1fr;
      }

      .gallery {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .navbar {
        justify-content: center;
        padding: 18px 6%;
      }

      .burger-menu {
        display: flex;
      }

      .nav-links {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100dvh;
        background: rgba(3,3,3,0.92);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 34px;
        z-index: 1100;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(20px);
        transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
      }

      .nav-links a {
        font-size: 1.5rem;
        letter-spacing: 1px;
      }

      body.mobile-nav-active {
        overflow: hidden;
      }

      body.mobile-nav-active .nav-links {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
      }

      section {
        padding: 80px 6%;
      }

    .hero h1 {
      font-size: 4rem;
      margin-bottom: 20px;
      line-height: 1.1;
    }

      .hero p {
        font-size: 1rem;
      }

      .hero-logo-image {
        width: 95vw;
      }

      .section-title h2 {
        font-size: 2rem;
      }

      .gallery {
        grid-template-columns: 1fr;
      }

      .contact-box {
        padding: 35px 24px;
      }
    }
	
.chalkboard-menu {

  position: relative;

  padding: 90px;

  border-radius: 42px;

  overflow: hidden;

  background:
    radial-gradient(circle at top,
      rgba(201,161,93,0.08),
      transparent 35%),

    linear-gradient(
      145deg,
      rgba(20,20,20,0.98),
      rgba(8,8,8,1)
    );

  border:
    1px solid rgba(255,255,255,0.05);

  box-shadow:
    0 40px 120px rgba(0,0,0,0.45),
    inset 0 0 80px rgba(255,255,255,0.015);
}

.chalkboard-menu::before {

  content: '';

  position: absolute;

  inset: 0;

  background-image:
    radial-gradient(rgba(255,255,255,0.015) 1px, transparent 1px);

  background-size: 3px 3px;

  opacity: 0.15;

  pointer-events: none;
}

.chalkboard-surface {

  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 90px;
}

.chalk-category {
  position: relative;
}

.chalk-category::after {

  content: '';

  position: absolute;

  top: 24px;
  left: 0;

  width: 60px;
  height: 1px;

  background:
    linear-gradient(to right,
    rgba(201,161,93,0.7),
    transparent);
}

.chalk-label {

  display: inline-block;

  margin-bottom: 34px;
  padding-left: 80px;

  font-family: 'Cormorant Garamond', serif;

  font-size: 3.2rem;

  font-weight: 500;

  font-style: italic;

  color: var(--gold);

  line-height: 1;
}

.chalk-item {
  margin-bottom: 42px;
}

.chalk-item h3 {

  margin-bottom: 12px;

  font-family: 'Playfair Display', serif;

  font-size: 1.9rem;

  font-weight: 600;

  color: rgba(255,255,255,0.97);
}

.chalk-item p {

  max-width: 95%;

  color: rgba(255,255,255,0.68);

  line-height: 1.8;

  font-size: 1.02rem;

  font-style: italic;
}

@media (max-width: 980px) {

  .chalkboard-menu {
    padding: 45px 28px;
  }

  .chalkboard-surface {

    grid-template-columns: 1fr;

    gap: 40px;
  }

  .chalk-label {

    font-size: 2.5rem;

    padding-left: 60px;
  }

  .chalk-item h3 {
    font-size: 1.5rem;
  }
}
.chalk-column {
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.scroll-top-btn {

  position: fixed;

  bottom: 10px;
  left: 50%;

  transform:
    translateX(-50%)
    translateY(20px);

  width: 58px;
  height: 58px;

  border-radius: 50%;

  border:
    1px solid rgba(255,255,255,0.08);

  background:
    rgba(10,10,10,0.75);

  backdrop-filter: blur(16px);

  color: white;

  font-size: 1.4rem;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    background 0.35s ease,
    border 0.35s ease;

  z-index: 1300;
}

.scroll-top-btn.visible {

  opacity: 1;
  visibility: visible;

}

.scroll-top-btn:hover {

  background:
    rgba(201,161,93,0.16);

  border-color:
    rgba(201,161,93,0.4);

  transform:
    translateX(-50%)
    translateY(-4px);
}

.legal-page {

  min-height: 100vh;

  padding:
    180px
    8%
    100px;

  background:
    radial-gradient(circle at top,
    rgba(201,161,93,0.06),
    transparent 30%);
}

.legal-container {

  max-width: 950px;

  margin: 0 auto;

  padding: 70px;

  border-radius: 42px;

  background:
    rgba(255,255,255,0.025);

  border:
    1px solid rgba(255,255,255,0.05);

  backdrop-filter: blur(24px);

  box-shadow:
    0 30px 100px rgba(0,0,0,0.28);
}

.legal-container h1 {

  margin-bottom: 50px;

  font-size: clamp(1.8rem, 2.6vw, 2.6rem);

  font-family: 'Playfair Display', serif;
  text-align: left
}

.legal-container h2 {

  margin-top: 55px;
  margin-bottom: 16px;

  color: var(--gold);

  font-size: 1.5rem;

  font-family: 'Playfair Display', serif;
}

.legal-container p {

  color: var(--muted);

  line-height: 1.9;

  margin-bottom: 18px;
}

.legal-back {

  display: inline-flex;

  margin-top: 50px;
}

@media (max-width: 768px) {

  .legal-page {
    padding:
      130px
      6%
      70px;
  }

  .legal-container {

    padding: 38px 24px;

    border-radius: 28px;
  }
}
.legal-intro {

  max-width: 700px;

  margin-bottom: 50px;

  color: rgba(255,255,255,0.72);

  font-size: 1.08rem;

  line-height: 1.8;
}
.legal-container {

  position: relative;

  overflow: hidden;
}

.legal-container::before {

  content: '';

  position: absolute;

  inset: 0;

  background:
    radial-gradient(circle at top right,
    rgba(201,161,93,0.06),
    transparent 30%);

  pointer-events: none;
}

.legal-container h1 {

  position: relative;

  margin-bottom: 18px;

  text-align: left;

  letter-spacing: -0.03em;
}

.legal-intro {

  position: relative;

  max-width: 720px;

  margin:
    0 auto
    70px;

  text-align: left;

  color:
    rgba(255,255,255,0.68);

  font-size: 1.08rem;

  line-height: 1.9;
}

.legal-container h3 {

  position: relative;

  margin-top: 65px;
  margin-bottom: 22px;

  padding-bottom: 14px;

  font-size: 1.5rem;

  font-family: 'Playfair Display', serif;

  color: var(--gold);

  border-bottom:
    1px solid rgba(255,255,255,0.06);
}

.legal-container p {

  position: relative;

  color:
    rgba(255,255,255,0.72);

  line-height: 1.95;

  font-size: 1.02rem;
}

.legal-container strong {

  color:
    rgba(255,255,255,0.96);

  font-weight: 600;
}

.legal-container ul {

  margin:
    24px 0 34px 24px;

  color:
    rgba(255,255,255,0.7);
}

.legal-container li {

  margin-bottom: 14px;

  line-height: 1.8;
}

.legal-back {

  margin-top: 70px;
}

@media (max-width: 768px) {

  .legal-container h1 {

    font-size: 2rem;
  }

  .legal-intro {

    margin-bottom: 50px;

    font-size: 1rem;
  }

  .legal-container h3 {

    margin-top: 50px;

    font-size: 1.25rem;
  }

  .legal-container p,
  .legal-container li {

    font-size: 0.98rem;

    line-height: 1.85;
  }
 
}