/* ===========================
   TWOBEACHES.DE
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }

/* ─── NAVIGATION ─── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
}

.nav-logo {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  display: block;
  padding: 6px 14px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #555;
  transition: color 0.2s;
}

.nav-links a:hover { color: #111; }

.nav-links a.active {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: #555;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 1;
}

/* subtle text-readability gradient */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.32) 45%,
    rgba(0,0,0,0.15) 100%
  );
  z-index: 0;
}

.hero-text {
  position: relative;
  z-index: 1;
}

.hero-text {
  text-align: center;
  padding: 0 48px;
  max-width: 900px;
}

.hero-text h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.hero-text .author {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.85);
  text-transform: none;
}

/* ─── PAGE TITLE ─── */
.page-title {
  text-align: center;
  padding: 80px 24px 60px;
}

.page-title h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 300;
  font-style: italic;
  color: #333;
  letter-spacing: 0.02em;
}

/* ─── MAIN ─── */
main {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 40px 100px;
}

/* ─── BLOCKS ─── */
.block {
  padding: 64px 0;
  text-align: center;
}

.block h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: #333;
  max-width: 720px;
  margin: 0 auto 24px;
}

.block h3 {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.8;
  color: #444;
  max-width: 640px;
  margin: 0 auto 14px;
  letter-spacing: 0.02em;
}

.block p {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: #555;
  max-width: 640px;
  margin: 0 auto 14px;
}

.block p:last-child { margin-bottom: 0; }

.block p a {
  color: #333;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.block p a:hover { border-color: #333; }

/* ─── IMAGES ─── */
/* full-bleed: break out of max-width container */
.img-full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: 3px;
}

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

/* ─── IMAGE PAIR (2-column) ─── */
.img-pair {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: 3px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

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

/* ─── AMENITIES ─── */
.amenities {
  list-style: none;
  text-align: center;
  max-width: 480px;
  margin: 28px auto 0;
}

.amenities li {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: #555;
  padding: 10px 0;
  border-bottom: 1px solid #ebebeb;
  letter-spacing: 0.04em;
}

.amenities li:last-child { border-bottom: none; }

/* ─── MAP LINK ─── */
.map-link {
  display: inline-block;
  margin-top: 20px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #555;
  border-bottom: 1px solid #aaa;
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.map-link:hover { opacity: 0.5; }

/* ─── TIPP ─── */
.tipp {
  font-size: 14px;
  color: #888;
  max-width: 600px;
  margin: 12px auto;
  font-style: italic;
  line-height: 1.9;
}

/* ─── GALLERY ─── */
.gallery {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  margin: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.gallery img {
  height: 180px;
  object-fit: cover;
  width: 100%;
}

/* ─── BACK TO TOP ─── */
.back-top {
  text-align: center;
  padding: 60px 0 20px;
}

.back-top a {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #aaa;
  transition: color 0.2s;
}

.back-top a:hover { color: #333; }

/* ─── CONTACT ─── */
.contact-block {
  text-align: center;
  padding: 100px 24px;
}

.contact-block p {
  font-size: 14px;
  font-weight: 300;
  color: #999;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-block .email {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: #333;
  border-bottom: 1px solid #ccc;
  padding-bottom: 3px;
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid #ebebeb;
  padding: 48px 24px 40px;
  text-align: center;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-links a {
  display: block;
  padding: 4px 10px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #bbb;
  transition: color 0.2s;
}

.footer-links a:hover { color: #333; }

.footer-copy {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #ccc;
  text-transform: uppercase;
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .nav-inner { padding: 0 24px; height: 56px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 56px; left: 0; right: 0;
    background: #fff;
    border-top: 1px solid #ebebeb;
    flex-direction: column;
    padding: 8px 0 20px;
  }

  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 24px; }
  .nav-toggle { display: flex; }

  .hero { height: 70vh; }
  .hero-text { padding: 0 24px; }

  main { padding: 0 20px 60px; }

  .gallery { grid-template-columns: repeat(3, 1fr); }
  .gallery img { height: 110px; }

  .img-pair { grid-template-columns: 1fr; }
  .img-pair img { height: 280px; }
}
