@charset "UTF-8";

/* ======================
   RESET & BASICS
====================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
  background: #fff;
  color: #000;
  font-family: Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img, video {
  display: block;
  max-width: 100%;
}

/* ======================
   HERO
====================== */

.hero {
  position: relative;
  height: 100vh;
  padding: 0 4vw;
}

.hero-left,
.hero-right {
  position: absolute;
  display: flex;
  flex-direction: column;
}

.hero-left {
  top: 1rem;
  left: 1rem;
  align-items: flex-start;
}

.hero-right {
  bottom: 1rem;
  right: 1rem;
  align-items: flex-end;
  text-align: right;
}

h1 {
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  font-size: min(14vh, 12vw);
}

.syl {
  display: block;
  transition: transform .3s ease, color .3s ease;
}

.hero-left .syl:hover {
  transform: translateX(0.3em);
  color: #666;
}

.hero-right .syl:hover {
  transform: translateX(-0.3em);
  color: #666;
}


/* ======================
   GALLERY (fixed size)
====================== */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  max-width: 1400px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.gallery img,
.gallery video {
  width: 100%;
  height: 300px;        /* <- feste Höhe */
  object-fit: cover;    /* schneidet sauber */
  border-radius: 6px;
}

/* ======================
   DIVIDER
====================== */

.divider-text {
  text-align: center;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 600;
  margin: 5rem auto;
  padding: 0 1rem;
}

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

section {
  max-width: 1100px;
  margin: 5rem auto;
  padding: 0 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

p {
  font-size: 1.125rem;
  line-height: 1.65;
  margin: 0;
}

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

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-media img {
  border-radius: 6px;
  object-fit: cover;
}

.about-text p + p {
  margin-top: 1.2rem;
}

/* ======================
   TWO COLUMN TEXT
====================== */

.two-col {
  text-align: center;
}

.two-col .columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  text-align: left;
}

/* ======================
   PRICING
====================== */

.offer-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.offer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.offer h3 {
  margin: 0;
  font-size: 1.25rem;
}

.offer p {
  margin-top: 0.4rem;
  font-size: 1rem;
  color: #555;
}

.price {
  font-weight: 600;
  font-size: 1.2rem;
  white-space: nowrap;
}

.price-note {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #777;
}

/* ======================
   FOOTER (clean & light)
====================== */

.site-footer {
  margin-top: 8rem;
  padding: 3rem 1rem;
  border-top: 1px solid #eee;
  text-align: center;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
}

.footer-contact p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-contact a,
.footer-legal a {
  color: #000;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity .3s ease;
}

.footer-contact a:hover,
.footer-legal a:hover {
  opacity: 1;
}

.footer-legal {
  margin-top: 2rem;
  font-size: 0.85rem;
}

.footer-legal span {
  margin: 0 0.5rem;
  opacity: 0.4;
}

.footer-copy {
  margin-top: 2rem;
  font-size: 0.75rem;
  opacity: 0.4;
  letter-spacing: 0.05em;
}

/* ======================
   RESPONSIVE
====================== */

@media (max-width: 900px) {

  .about {
    grid-template-columns: 1fr;
  }

  .two-col .columns {
    grid-template-columns: 1fr;
  }

  .offer {
    flex-direction: column;
  }

  .price {
    margin-top: 0.5rem;
  }
}