/* Self-hosted fonts (Cormorant Garamond + Inter, OFL licensed) */
@font-face{
  font-family:"Cormorant Garamond";
  font-style:normal;
  font-weight:400;
  font-display:swap;
  src:url("fonts/cormorant-garamond-latin-400-normal.woff2") format("woff2");
}
@font-face{
  font-family:"Cormorant Garamond";
  font-style:normal;
  font-weight:600;
  font-display:swap;
  src:url("fonts/cormorant-garamond-latin-600-normal.woff2") format("woff2");
}
@font-face{
  font-family:"Cormorant Garamond";
  font-style:italic;
  font-weight:400;
  font-display:swap;
  src:url("fonts/cormorant-garamond-latin-400-italic.woff2") format("woff2");
}
@font-face{
  font-family:"Cormorant Garamond";
  font-style:italic;
  font-weight:600;
  font-display:swap;
  src:url("fonts/cormorant-garamond-latin-600-italic.woff2") format("woff2");
}
@font-face{
  font-family:"Inter";
  font-style:normal;
  font-weight:300;
  font-display:swap;
  src:url("fonts/inter-latin-300-normal.woff2") format("woff2");
}
@font-face{
  font-family:"Inter";
  font-style:normal;
  font-weight:400;
  font-display:swap;
  src:url("fonts/inter-latin-400-normal.woff2") format("woff2");
}
@font-face{
  font-family:"Inter";
  font-style:normal;
  font-weight:500;
  font-display:swap;
  src:url("fonts/inter-latin-500-normal.woff2") format("woff2");
}

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

html, body{
  height:100%;
}

body{
  font-family:Inter, sans-serif;
  background:#faf8f5;
  color:#222;
  line-height:1.7;
  overflow:hidden;
}

/* Skip link for keyboard users */
.skip-link{
  position:absolute;
  top:-60px;
  left:10px;
  background:#222;
  color:white;
  padding:12px 20px;
  border-radius:4px;
  z-index:100;
  transition:top .2s;
}
.skip-link:focus{
  top:10px;
}

/* Three-part layout: top 2/3, bottom 1/3 split into two columns */
header{
  height:100vh;
  width:100%;
  display:grid;
  grid-template-rows:2fr 1fr;

  background-color:#1a1a1a; /* Fallback falls Bild nicht lädt */
  background-image:
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
    url("images/hero.jpg");
  background-size:cover;
  background-position:center;

  color:white;
}

/* Top 2/3: logo + tagline, centered */
.hero-top{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:40px;
}

.logo{
  max-width:420px;
  width:100%;
  height:auto;
  margin:0 auto 18px;
  display:block;
}

.divider{
  width:200px;
  border:none;
  border-top:1px solid rgba(255,255,255,0.6);
  margin:0 auto 18px;
}

.tagline{
  font-family:"Inter", sans-serif;
  font-style:italic;
  font-weight:400;
  font-size:1.2rem;
  letter-spacing:0.5px;
  color:white;
}

.tagline .dot{
  margin:0 12px;
  opacity:0.6;
  font-style:normal;
}

/* Bottom 1/3: two columns */
.hero-bottom{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  padding:0 60px 50px;
  gap:40px;
}

.bottom-left{
  display:flex;
  align-items:flex-end;
  gap:36px;
  text-align:left;
}

.lounge-heading{
  display:flex;
  flex-direction:column;
  align-items:center;
}

.keel-sketch{
  width:150px;
  height:auto;
  margin-bottom:8px;
}

.bottom-right{
  text-align:right;
}

.bottom-left h2{
  font-family:Inter, sans-serif;
  font-style:italic;
  font-weight:500;
  font-size:1.15rem;
  letter-spacing:0.5px;
  white-space:nowrap;
  color:white;
}

.bottom-right h2{
  font-family:Inter, sans-serif;
  font-style:italic;
  font-weight:500;
  font-size:1rem;
  letter-spacing:0.5px;
  white-space:nowrap;
  color:white;
}

.bottom-left p{
  font-family:Inter, sans-serif;
  font-style:italic;
  font-weight:300;
  font-size:0.9rem;
  line-height:1.6;
  color:white;
  max-width:340px;
}

.bottom-right p{
  font-family:Inter, sans-serif;
  font-style:italic;
  font-weight:300;
  font-size:0.9rem;
  margin-top:6px;
}

.bottom-right p a{
  display:inline-block;
  border:1px solid white;
  padding:8px 16px;
  border-radius:4px;
}

/* Links */
a{
  text-decoration:none;
  color:white;
  transition:opacity .3s;
}

a:hover{
  opacity:0.7;
}

a:focus-visible{
  outline:2px solid white;
  outline-offset:4px;
}

/* Mobile */
@media(max-width:800px){

  body{
    overflow:auto;
  }

  header{
    height:auto;
    min-height:100vh;
    grid-template-rows:auto auto;
  }

  .hero-top{
    padding:50px 24px 30px;
  }

  .logo{
    max-width:220px;
  }

  .tagline{
    font-size:1rem;
  }

  .tagline .dot{
    margin:0 8px;
  }

  .divider{
    width:160px;
  }

  .hero-bottom{
    flex-direction:column;
    align-items:center;
    text-align:center;
    padding:0 24px 40px;
    gap:28px;
  }

  .bottom-left{
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:8px;
  }

  .lounge-heading{
    align-items:center;
  }

  .bottom-right{
    text-align:center;
  }

  .bottom-left p{
    max-width:100%;
  }
}
