/* ===========================
   Local Font: Lato (WOFF2)
   Pfad: /assets/fonts/
   =========================== */

@font-face{
  font-family: "Lato";
  src: url("../assets/fonts/lato-v25-latin-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "Lato";
  src: url("../assets/fonts/lato-v25-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "Lato";
  src: url("../assets/fonts/lato-v25-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "Lato";
  src: url("../assets/fonts/lato-v25-latin-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ---------------------------
   Base / Tokens
---------------------------- */
:root{
  --bg: #181d24;
  --panel: #181d24;
  --text: #8e9094;
  --muted: rgba(231,237,242,.72);
  --muted2: rgba(231,237,242,.55);
  --line: rgba(231,237,242,.12);

  --max: 980px;
  --pad: clamp(18px, 3.5vw, 42px);
  --radius: 16px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }

html{
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body{
  margin: 0;
  color: var(--text);
  background: #0b0f14;
  font-family: "Lato", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.45;
  text-rendering: optimizeLegibility;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; text-decoration-color: rgba(231,237,242,.35); text-underline-offset: 4px; }
.etsy-link{
  color: #d76400;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.etsy-link:hover{
  color: #8E9094;
  text-decoration-color: #8E9094;
}

/* ---------------------------
   Hero
---------------------------- */
.hero{
  position: relative;
  min-height: 46vh;
  max-height: 560px;
  overflow: hidden;
  background: #222831;
}

.hero__media{
  position: absolute;
  inset: 0;
  display: block;
}

.hero__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: none;
}

.hero__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 520px at 70% 22%,
      rgba(0,0,0,.12),
      rgba(0,0,0,.38)
    ),
    linear-gradient(to bottom,
      rgba(0,0,0,.10),
      rgba(0,0,0,.45)
    );
}

.hero__brand{
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  padding: 0 var(--pad);
}

.brand__logo{
  max-width: min(520px, 80vw);
  width: 100%;
  height: auto;
  opacity: .28;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.35));
}

/* ---------------------------
   Panel / Typography
---------------------------- */
.panel{
  background: var(--panel);
  padding: clamp(26px, 4.5vw, 60px) var(--pad);
}

.panel__inner{
  max-width: var(--max);
  margin: 0 auto;
}

.claim{
  margin: 0 0 22px 0;
  text-transform: none;
  letter-spacing: .06em;
  font-weight: 900;
  font-size: clamp(18px, 2.2vw, 28px);
}

.copy{
  max-width: 74ch;
  color: var(--muted);
  font-size: clamp(16px, 1.55vw, 20px);
  letter-spacing: .04em;
  font-family: "Lato", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  font-weight: 300;
}

.copy p{ margin: 0 0 18px 0; }
.copy p:last-child{ margin-bottom: 0; }

.emphasis{
  color: var(--text);
  font-weight: 700;
  margin-top: 10px;
}

/* ---------------------------
   Links (Home)
---------------------------- */
.links{
  margin-top: clamp(28px, 4vw, 44px);
  display: grid;
  gap: 14px;
  max-width: 520px;
}

.linkrow{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 3px 12px;
  border-radius: 12px;
  background: transparent;
}

.linkrow:hover{
  background: rgba(255,255,255,.04);
  text-decoration: none;
}

.icon{
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: rgba(231,237,242,.82);
}

.icon img{
  width: 26px;
  height: 26px;
  display: block;
  opacity: .92;
}

.icon svg{
  width: 26px;
  height: 26px;
  display: block;
  opacity: .92;
}

.linktext{
  font-size: clamp(16px, 1.35vw, 18px);
  color: var(--muted);
  font-weight: 600;
}

/* ---------------------------
   Footer
---------------------------- */
.footer{
  background: #0b0f14;
  border-top: 1px solid rgba(231,237,242,.08);
  padding: 18px var(--pad);
}

.footer__inner{
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: space-between;
  align-items: center;
  color: var(--muted2);
  font-size: 14px;
}

/* Social icons: always small, never “blow up” */
.footer__social{
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto; /* pushes icons to the right */
}

.social{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;     /* click/tap target */
  line-height: 0;
}

.social__icon{
  width: 25px;
  height: 25px;
  display: block;
  opacity: .63;
}

.social:hover .social__icon{
  opacity: .9;
}

/* ===========================
   Kontakt-Seite (wie Screenshot)
   =========================== */

.copy.contact{
  max-width: 980px;
}

.contact-list{
  margin-top: 36px;
  display: grid;
  gap: clamp(18px, 2.4vw, 30px);
}

.contact-item{
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 34px);
}

.contact-icon{
  width: 22px;
  height: 22px;
  display: block;
  opacity: .63;
  flex: 0 0 auto;
}

.contact-text{
  /* gleiche Typo wie .copy */
  font-weight: 300;
  letter-spacing: .04em;
  color: var(--muted);
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.45;
  text-decoration: none;
}

.contact-text:hover{
  color: rgba(231,237,242,.72);
  text-decoration: none;
}

/* Mobile: etwas kompakter, damit es nicht sprengt */
@media (max-width: 520px){
  .contact-text{
    font-size: clamp(18px, 5.6vw, 28px);
    letter-spacing: .04em;
  }
  .contact-list{ margin-top: 28px; }
}









/* ---------------------------
   Responsive tweaks
---------------------------- */
@media (min-width: 980px){
  .hero{ min-height: 54vh; }
  .links{ margin-top: 46px; }
}

@media (max-width: 720px){
  .hero{
    min-height: 33vh;
    max-height: 33vh;
  }

  .social{ padding: 10px; }
  .social__icon{ width: 22px; height: 22px; }
}

/* Landscape phones / small-height */
@media (max-width: 980px) and (orientation: landscape) and (max-height: 520px){
  .brand__logo{
    max-width: min(156px, 24vw);
  }
}

/* ---------------------------
   Nav bar (under hero)
---------------------------- */
.sitebar{
  background: var(--panel);
  text-transform: uppercase;
}

.sitebar__inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Desktop Nav */
.nav{
  display: flex;
  gap: 12px;
  align-items: center;
  color: rgba(231,237,242,.55);
  font-weight: 600;
  letter-spacing: .02em;
}

.nav__link{
  color: rgba(231,237,242,.55);
  letter-spacing: .08em;
}

.nav__link:hover{
  color: rgba(231,237,242,.80);
  text-decoration: none;
}

.nav__sep{
  opacity: .35;
}

/* Active page */
.nav__link[aria-current="page"]{
  color: #575a5c;
  text-decoration: none;
}
.nav__link[aria-current="page"]:hover{
  color: #575a5c;
}

/* Hamburger button (single, clean definition) */
.navtoggle{
  position: absolute;
  right: var(--pad);
  left: auto;
  display: none;              /* enabled in mobile query */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;

  width: 46px;
  height: 42px;

  border: none;
  background: rgba(0,0,0,.18);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  backdrop-filter: blur(6px);
}

.navtoggle span{
  display: block;
  width: 25px;
  height: 2px;
  background: rgba(231,237,242,.85);
  border-radius: 999px;
  opacity: .95;
}


/* --- Burger -> X (wenn Menü offen) --- */
body.nav-open .navtoggle span:nth-child(1){
  transform: translateY(5px) rotate(45deg);
}
body.nav-open .navtoggle span:nth-child(2){
  opacity: 0;
}
body.nav-open .navtoggle span:nth-child(3){
  transform: translateY(-5px) rotate(-45deg);
}

/* schöner Übergang */
.navtoggle span{
  transition: transform .22s ease, opacity .18s ease;
}




/* Mobile nav dropdown */
@media (max-width: 720px){
  .sitebar__inner{ justify-content: flex-start; }

  .navtoggle{ display: inline-flex; }

  .nav{
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: var(--pad);
    right: var(--pad);
    flex-direction: column;
    gap: 0;
    background: rgba(24,29,36,.98);
    border: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,.35);
  }

  .nav__sep{ display:none; }

  .nav__link{
    padding: 14px 14px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .nav__link:last-child{ border-bottom: 0; }

  body.nav-open .nav{ display: flex; }
}

/* ---------------------------
   About portraits
---------------------------- */
.about-portraits{
  margin-top: 46px;
  display: flex;
  justify-content: center;
  gap: clamp(26px, 6vw, 70px);
  align-items: flex-start;
}

.about-portrait{
  margin: 0;
  width: clamp(150px, 18vw, 220px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* circle only for the image */
.about-portrait img{
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.02);
  opacity: .95;
  object-position: 50% 30%;
}

.about-name{
  font-size: 15px;
  letter-spacing: .06em;
  color: rgba(231,237,242,.55);
  text-align: center;
  margin: 0;
  height: 2.6em;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
}

#portrait-anna{ object-position: 50% 28%; }
#portrait-tillman{ object-position: 50% 20%; }

@media (max-width: 520px){
  .about-portraits{
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }
  .about-portrait{
    width: min(220px, 62vw);
  }
}