

/* ===== token.css ===== */

/* Typography */
@font-face {
  font-family: "Outfit";
  src: url("../../assets/fonts/Outfit/Outfit-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Corinthia";
  src: url("../../assets/fonts/Corinthia/Corinthia-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Typography */
  /* FONT HIER EINFACH TAUSCHEN */
  --font-body: "Outfit", system-ui, sans-serif;
  --font-head: "Outfit", system-ui, sans-serif;
  --font-accent: "Corinthia", cursive;
  --font-weight-regular: 400;
  --font-weight-medium: 600;
  --font-weight-bold: 700;

  /* Colors */
  --color-bg: #fefefe;
  --color-bg-fallback: #ffffff;
  --color-bg-light-dark: #e3e3e3;
  --color-bg-dark: #333333;
  --color-text: #333333;
  --color-text-placeholder: #757575;
  --color-muted: #5f6368;
  --color-accent: #d45097;
  --color-accent-2: #c24486;
  --color-accent-contrast: #ffffff;
  --color-border: #e8eaed;
  --color-textmarker: #3ac2b8;
  --color-textmarker-2: #696969;
}

html,
body {
  font-family: var(--font-body);
}

h1,
h2,
h3 {
  font-family: var(--font-head);
}

.c-button,
input,
select,
textarea,
.c-nav,
.c-nav a,
.c-nav-overlay,
.c-nav-overlay a {
  font-family: var(--font-body);
}

/* ===== sections.css ===== */
.s-hero{
  position: relative;
  background-image: url(/assets/img/Website-Wallpaper-friseur.png);
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.s-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  pointer-events: none;
  z-index: 1;
}

.s-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.s-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.s-hero h1 {
  color: var(--color-bg);
  font-size: clamp(2.2rem, 6vw, 5rem);
  max-width: 16ch;
  margin-inline: auto;
  text-wrap: balance;
}


@media (max-width: 600px) {
  .s-hero h1 {
    max-width: 18ch;
    margin-inline: auto;
    font-size: 3rem;
    line-height: 1.1;
    overflow-wrap: break-word;
    hyphens: auto;
  }
}

.s-hero p {
  color: var(--color-bg);
  font-size: 1.6rem;
}

/* ============================= */
/* Transparent Header over Hero */
/* ============================= */
.c-site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  z-index: 1000;
}

.c-site-header .c-nav a {
  color: #ffffff;
}

.c-site-header .c-nav a:hover,
.c-site-header .c-nav a:focus-visible {
  opacity: 0.85;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.c-site-header .c-button--primary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  box-shadow: none;
}

.c-site-header .c-nav-toggle {
  color: #ffffff;
}

.c-site-header .c-nav-toggle__icon,
.c-site-header .c-nav-toggle__icon::before,
.c-site-header .c-nav-toggle__icon::after {
  background: #ffffff;
}

.c-brand__logo {
  width: 30%;
  height: auto;
  display: block;
}

.c-brand__logo--dark {
  display: none;
}

/* ============================= */
/* Scrolled Header State */
/* ============================= */
.c-site-header.is-scrolled,
.c-site-header.is-menu-open {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-bottom-color: var(--color-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: none;
}

.c-site-header.is-scrolled .c-nav a,
.c-site-header.is-menu-open .c-nav a {
  color: var(--color-text);
}

.c-site-header.is-scrolled .c-nav a:hover,
.c-site-header.is-scrolled .c-nav a:focus-visible,
.c-site-header.is-menu-open .c-nav a:hover,
.c-site-header.is-menu-open .c-nav a:focus-visible {
  opacity: 1;
}

.c-site-header.is-scrolled .c-button--primary,
.c-site-header.is-menu-open .c-button--primary {
  background: var(--color-accent);
  color: var(--color-accent-contrast);
  border: 2px solid var(--color-accent);
  box-shadow: var(--shadow-soft);
}

.c-site-header.is-scrolled .c-nav-toggle,
.c-site-header.is-menu-open .c-nav-toggle {
  color: var(--color-text);
}

.c-site-header.is-scrolled .c-nav-toggle__icon,
.c-site-header.is-scrolled .c-nav-toggle__icon::before,
.c-site-header.is-scrolled .c-nav-toggle__icon::after,
.c-site-header.is-menu-open .c-nav-toggle__icon,
.c-site-header.is-menu-open .c-nav-toggle__icon::before,
.c-site-header.is-menu-open .c-nav-toggle__icon::after {
  background: var(--color-text);
}

/* Burger -> Close: hide only the middle line, keep the X visible */
.c-site-header.is-menu-open .c-nav-toggle.is-active .c-nav-toggle__icon {
  background: transparent;
}

.c-site-header.is-menu-open .c-nav-toggle.is-active .c-nav-toggle__icon::before {
  background: var(--color-text);
  transform: translateY(7px) rotate(45deg);
}

.c-site-header.is-menu-open .c-nav-toggle.is-active .c-nav-toggle__icon::after {
  background: var(--color-text);
  transform: translateY(-7px) rotate(-45deg);
}

.c-site-header.is-scrolled .c-brand__logo--light,
.c-site-header.is-menu-open .c-brand__logo--light {
  display: none;
}

.c-site-header.is-scrolled .c-brand__logo--dark,
.c-site-header.is-menu-open .c-brand__logo--dark {
  display: block;
}

/* ===== components.css ===== */

.c-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.c-button--secondary {
    background: transparent;
    color: var(--color-bg);
    border: 2px solid currentColor;
    transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.c-button--secondary:hover{
  opacity: 0.85;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  background: transparent;
}

@media (min-width: 900px) {
  #über .s-ablauf__media {
    order: 1;
  }

  #über .s-ablauf__copy {
    order: 2;
  }
}

.c-site-footer__brand {
  max-width: 200px;
}

.c-site-footer__brand img {
  width: 100%;
  height: auto;
  display: block;
}

.s-ablauf__copy {
  position: relative;
}

.s-ablauf__step {
  font-family: "Corinthia", cursive;
  font-weight: 700;
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--color-accent);
  pointer-events: none;
  text-transform: none;
  letter-spacing: 0;

}

.s-highlight {
  position: relative;
}

.s-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15em;
  width: 100%;
  height: 1px;
  background-color: var(--color-accent);
}


.accent-script {
  font-family: "Corinthia", cursive;
  font-weight: 700;
  font-size: clamp(3.2rem, 7.2rem, 7.2rem);
  color: var(--color-accent);

  white-space: normal;
  max-width: 100%;
  display: inline-block;
  text-align: center;
}
