/* ===== Fonts ===== */
@font-face {
  font-family: "Amatic SC";
  src: url("../fonts/AmaticSC-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

/* ===== Custom Properties ===== */
:root {
  --primary: #4C6270;
  --primary-dark: #3a4f5b;
  --gold: #C2AB77;
  --gold-light: #d4c49a;
  --bg: #fcfcff;
  --bg-alt: #f3f5f7;
  --text: #191c1e;
  --text-muted: #5a5f63;
  --white: #ffffff;
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  --max-width: 720px;
  --section-padding: 5rem 1.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Verdana, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--gold-light);
}

/* ===== Typography ===== */
.lokali-wordmark {
  font-family: "Amatic SC", cursive;
  font-size: 3.5rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-top: 0.5rem;
  border-radius: 2px;
}

h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

/* ===== Layout ===== */
.section {
  padding: var(--section-padding);
}

.section-content {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section--alt {
  background: var(--bg-alt);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--primary);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/nuremberg-wide.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

.hero__logo {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.hero__title {
  font-family: "Amatic SC", cursive;
  font-size: 5rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.hero__tagline {
  font-size: 1.25rem;
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.hero__badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--gold);
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: fadeInUp 1s ease-out 0.3s both;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}

.hero__badge:hover {
  background: var(--gold);
  color: var(--primary-dark);
}

/* ===== Vision Cards ===== */
.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.vision-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.vision-card:hover {
  transform: translateY(-4px);
}

.vision-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ===== Callout ===== */
.callout {
  border-left: 4px solid var(--gold);
  padding: 1.25rem 1.5rem;
  background: var(--bg-alt);
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
}

.callout p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-style: italic;
}

/* ===== List ===== */
.styled-list {
  list-style: none;
  padding: 0;
}

.styled-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.styled-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* ===== Contact Section ===== */
.contact {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: var(--section-padding);
}

.contact h2 {
  color: var(--white);
}

.contact h2::after {
  margin-left: auto;
  margin-right: auto;
}

.contact p {
  opacity: 0.9;
}

.contact-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.85rem 2.5rem;
  background: var(--gold);
  color: var(--primary-dark);
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s;
}

.contact-btn:hover {
  background: var(--gold-light);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.contact-email {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  opacity: 0.6;
}

.contact-email a {
  color: var(--white);
  opacity: 0.8;
}

.contact-email a:hover {
  opacity: 1;
  color: var(--gold-light);
}

/* ===== Impressum Page ===== */
.impressum-header {
  background: var(--white);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.impressum-header__brand {
  font-family: "Amatic SC", cursive;
  font-size: 2rem;
  color: var(--gold);
}

.impressum-page {
  background: var(--white);
  padding: 3rem 1.5rem;
  min-height: calc(100vh - 160px);
}

.impressum-page h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.impressum-page h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-top: 0.5rem;
  border-radius: 2px;
}

.impressum-page h3 {
  margin-top: 1.5rem;
}

.impressum-page p {
  margin-bottom: 0.75rem;
}

.impressum-page img {
  display: block;
  margin-top: 0.25rem;
}

/* ===== Footer ===== */
.footer {
  background: #2e3538;
  color: var(--white);
  text-align: center;
  padding: 2rem 1.5rem;
}

.footer__brand {
  font-family: "Amatic SC", cursive;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer__copy {
  font-size: 0.8rem;
  opacity: 0.6;
}

.footer__links {
  margin-top: 0.75rem;
  font-size: 0.85rem;
}

.footer__links a {
  color: var(--gold);
  opacity: 0.8;
}

.footer__links a:hover {
  opacity: 1;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
  }

  .hero__title {
    font-size: 3.5rem;
  }

  .hero__tagline {
    font-size: 1.1rem;
  }

  .hero__logo {
    width: 80px;
    height: 80px;
  }

  .vision-grid {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 1.5rem;
  }

  :root {
    --section-padding: 3.5rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.8rem;
  }

  .hero__tagline {
    font-size: 1rem;
  }

  :root {
    --section-padding: 3rem 1rem;
  }
}
