html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #24303a;
  color: #f4f1eb;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 30, 38, 0.42);
}

.hero-text {
  position: absolute;
  left: 60px;
  bottom: 110px;
  z-index: 2;
  max-width: 800px;
}

.hero-text h1 {
  margin: 0 0 14px 0;
  font-size: 88px; /* deutlich größer */
  line-height: 1.05;
}

.hero-text p {
  font-size: clamp(18px, 2vw, 24px);
}

/* scroll hint */
.scroll-hint {
  position: absolute;
  left: 60px;
  bottom: 40px;
  z-index: 2;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 241, 235, 0.78);
}

/* MAIN 2-COLUMN LAYOUT */
.main-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

/* LEFT MENU */
.sidebar {
  background: #2d3a46;
  padding: 36px 26px;
  position: sticky;
  top: 0;
  height: 100vh;
  box-sizing: border-box;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}

.sidebar a {
  color: #e4ddd2;
  text-decoration: none;
  font-size: 17px;
}

.sidebar a:hover {
  color: white;
}

/* RIGHT CONTENT */
.content {
  background: #3a4a59;
  padding: 44px 50px;
}

.content-section {
  min-height: 60vh;
  padding: 0 0 36px 0;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.content-section h2 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 38px;
}

.content-section p {
  font-size: 19px;
  line-height: 1.65;
  max-width: 820px;
}
.profile-pic {
  float: right;   
  width: 200px;       
  margin-left: 30px;   
  border-radius: 12px; /
}

.content-section::after {
  content: "";
  display: table;
  clear: both;
}

/* MOBILE */
@media (max-width: 900px) {
  .hero-text {
    left: 28px;
    right: 28px;
    bottom: 95px;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .hero-text p {
    font-size: 18px;
  }

  .scroll-hint {
    left: 28px;
    bottom: 30px;
    font-size: 13px;
  }

  .main-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: relative;
    height: auto;
    padding: 22px 20px;
  }

  .content {
    padding: 28px 20px;
  }

  .content-section {
    min-height: auto;
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
}
.email-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #f4f1eb;
  color: #24303a;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  font-weight: bold;
  font-size: 16px;
  font-family: inherit; 
  transition: background 0.3s ease;
}

.email-button:hover {
  background-color: #e4ddd2;
}