/* ================================================================
   rhmedia. – Single-Hero Landingpage
   --color-bg:     #1F2A37  (dunkelblau)
   --color-accent: #B4B4B4  (grau aus Logo)
   ================================================================ */

:root {
  --color-bg: #1F2A37;
  --color-accent: #B4B4B4;
  --color-text: #ffffff;
  --color-muted: #a8b0bb;
  --color-line: rgba(180, 180, 180, 0.25);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { height: 100%; }

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color 0.2s ease; }


/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: clamp(24px, 3vw, 40px) clamp(24px, 5vw, 64px);
}

.brand { display: inline-block; }

.brand-logo {
  display: block;
  height: clamp(24px, 2.8vw, 36px);
  width: auto;
}


/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: clamp(110px, 14vh, 160px) clamp(24px, 5vw, 64px) clamp(40px, 6vh, 72px);
  display: grid;
  grid-template-columns: minmax(320px, 560px) 1fr;
  align-items: end;
  gap: clamp(32px, 5vw, 80px);
  overflow: hidden;
  isolation: isolate;
}

/* Sanfter Lichtkegel hinter dem Portrait */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  background:
    radial-gradient(ellipse at 65% 45%, rgba(180, 180, 180, 0.22), transparent 55%),
    radial-gradient(ellipse at 65% 30%, rgba(180, 180, 180, 0.10), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Portrait — als großes visuelles Element rechts */
.hero-portrait {
  position: absolute;
  right: clamp(-40px, -3vw, 0px);
  bottom: 0;
  top: 0;
  width: clamp(420px, 55vw, 820px);
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.hero-portrait img {
  height: 100%;
  width: auto;
  max-height: 100vh;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.55));
}

/* Inhalt links */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vh, 32px);
  max-width: 620px;
}

.hero-headline {
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-tagline {
  display: block;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
  color: var(--color-accent);
}

.hero-description {
  font-size: clamp(14px, 1.05vw, 15.5px);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-muted);
  max-width: 58ch;
}

.hero-contact-block {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero-contact-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.hero-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  list-style: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  padding-top: 22px;
  border-top: 1px solid var(--color-line);
}

.hero-socials a {
  position: relative;
  padding-bottom: 2px;
}

.hero-socials a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.hero-socials a:hover {
  color: #fff;
}

.hero-socials a:hover::after {
  transform: scaleX(1);
}

.hero-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-style: normal;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-muted);
}

.hero-contact a:hover { color: #fff; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: clamp(90px, 12vh, 130px);
    padding-bottom: clamp(40px, 6vh, 60px);
    min-height: auto;
  }

  .hero::before {
    width: 100%;
    height: 60%;
    top: auto;
    bottom: 0;
  }

  .hero-portrait {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: min(80%, 420px);
    height: auto;
    margin: 16px auto 0;
    order: 2;
  }

  .hero-portrait img {
    height: auto;
    width: 100%;
    max-height: 60vh;
  }

  .hero-content {
    order: 1;
    max-width: none;
  }

}

@media (max-width: 480px) {
  .hero { padding-left: 20px; padding-right: 20px; }
  .hero-socials { gap: 18px; }
}
