/*
Theme Name: Petra Palmgren Lindwall
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400&family=Inter:wght@300;400&display=swap');

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

body {
  font-family: 'Inter', sans-serif;
  background: #f5f3ef;
  color: #2c2c2c;
  -webkit-font-smoothing: antialiased;
}

/* ==============================
   HERO
============================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

/* media querie 775px down */
@media (max-width: 775px) {
  .hero .hero__image {
    position: relative !important;
  }
  .eyebrow {
    margin-top: 20px;
  }
  h1 {
    font-size: 48px !important;
    line-height: 48px !important;
  }
}

.hero .hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(245,243,239,0) 30%,
    rgba(245,243,239,0.6) 55%,
    rgba(245,243,239,0.95) 70%,
    rgba(245,243,239,1) 78%
  );
}

.hero__content {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ==============================
   EYEBROW – sitter ovanpå gradienten
============================== */
.eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgb(43, 48, 59);
  padding: 0 0 10px;
  text-align: center;
}

/* ==============================
   VIT YTA – allt innehåll under eyebrow
============================== */
.hero__white {
  background: linear-gradient(to bottom, transparent 0px, #f5f3ef 60px);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0 24px 30px;
  text-align: center;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 600;
  line-height: 72px;
  color: rgb(43, 48, 59);
}

.roles {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgb(72, 75, 80);
  line-height: 25px;
  max-width: 775px;
}

.roles span { padding: 0 20px; }

p {
  font-size: 23px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 28px;
  color: rgb(72, 75, 80);
  max-width: 660px;
}

/* ==============================
   KONTAKT
============================== */
.contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 32px;
  font-size: 0.875rem;
  color: rgb(43, 48, 59);
}

.contact a {
  color: inherit;
  text-decoration: none;
}

.contact a:hover { color: #2c2c2c; }

/* ==============================
   KNAPP
============================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: #2c2c2c;
  color: #f5f3ef;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}

.btn:hover { background: #8a7e6e; }

/* ==============================
   FOOTER
============================== */
footer {
  padding: 28px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 300;
  color: #6b6b6b;
  letter-spacing: 0.04em;
  border-top: 1px solid #d4cfc8;
  background: #f5f3ef;
}