@import "tailwindcss";

@theme {
  --color-primary: #8a041f;
  --color-dark: #2e2e2e;

  --font-family-base: "Montserrat", sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 600;
  --font-weight-semibold: 800;
}
@layer base {
  html {
    font-family: theme(
      "fontFamily.sans"
    ); /* Nutzt Montserrat, wenn in tailwind.config.js gesetzt */
    font-size: 16px;
    color: var(--color-dark);
    background-color: #fff;
  }
}

@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Dauphin";
  src: url("../fonts/Dauphin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

.custom-list {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.custom-list li {
  margin-bottom: 0.5rem;
}

.font-dauphin {
  font-family: "Dauphin", sans-serif;
}

#mobileMenu {
  transition: transform 0.3s ease-in-out;
}

.hero {
  position: relative;
}

.hero-right {
  display: flex;
  justify-content: center;
}

.hero-inner {
  margin-left: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-inner {
    align-items: flex-start;
  }
}

.badge {
  background-color: white;
  color: black;
  border-radius: 50%;
  height: 250px;
  width: 250px;
  align-items: center;
  align-content: center;
}

.jubilaeum-circle {
  background: white;
  color: #8a041f;
  border-radius: 50%;
  width: clamp(120px, 18vw, 220px);
  height: clamp(120px, 18vw, 220px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 700;
  line-height: 1.1;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.jubilaeum-circle span {
  display: block;
  transform: translateY(2px);
}

/* Buttons */
.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--primary, #8a041f);
  color: #fff;
}

.btn-primary:hover {
  filter: brightness(0.9);
}

.btn-ghost {
  border: 1px solid var(--primary, #8a041f);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
}

.btn-ghost:hover {
  background: var(--primary, #8a041f);
}

/* Responsive Verhalten */
@media (max-width: 639px) {
  .hero img {
    height: 65vh;
  }

  .hero-inner {
    margin-left: 0;
  }

  .cta-buttons {
    justify-content: center;
  }

  /* Kreis kleiner auf Mobile */
  .jubilaeum-circle {
    width: 120px;
    height: 120px;
    font-size: 1rem;
    line-height: 1.1;
  }
}

.bg-dark-light {
  background: #b4b0ad
}
/* Optional: ganz ausblenden bei sehr kleinen Geräten */
@media (max-width: 400px) {
  .jubilaeum-circle {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
  }
}