/* inter-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/inter-v20-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/inter-v20-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* cormorant-garamond-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/cormorant-garamond-v21-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* cormorant-garamond-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/cormorant-garamond-v21-latin-regular.woff2")
    format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
  --pink: #f2ddea;
  --blue: #ddeaf3;
  --white: #faf9f7;
  --text: #2f2f2f;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.75;
}

/* ======================
     TYPO
  ====================== */

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
}

h1 {
  font-size: 2.2rem;
  letter-spacing: 1px;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 24px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

p {
  margin-bottom: 18px;
  max-width: 100%;
}

.mleft {
  margin-left: 20px;
}

/* ======================
     HERO (mobile optimiert)
  ====================== */

.hero {
  position: relative;
  height: 55vh; /* weniger dominant */
  min-height: 420px;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end; /* Text unten ruhiger */
  justify-content: center;
  padding-bottom: 60px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(2px);
}

/* ======================
     SECTIONS
  ====================== */

.section {
  padding: 80px 22px; /* deutlich kompakter */
}

.blue {
  background: var(--blue);
}

.pink {
  background: var(--pink);
}

.inner {
  max-width: 620px; /* ideal für mobile */
  margin: 0 auto;
}

/* ======================
     FEATURES
  ====================== */

.grid-3 {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 40px 0;
}

/* ======================
     ABOUT
  ====================== */

.about {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-img img {
  width: 50%;
  border-radius: 18px;
}

/* ======================
     FOOTER
  ====================== */

footer {
  padding: 60px 20px;
  text-align: center;
  font-size: 0.9rem;
  background: #f4f4f4;
}

footer a {
  text-decoration: none;
  color: inherit;
}

/* ======================
     DESKTOP AB 768px
  ====================== */

@media (min-width: 768px) {
  .hero {
    height: 75vh;
  }

  h1 {
    font-size: 3.5rem;
  }

  .section {
    padding: 140px 40px;
  }

  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
  }

  .about {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
  }

  .inner {
    max-width: 1000px;
  }
}
