/* System font stack only: Geneva / Verdana */

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

body {
  background: #000;
  color: white;
  font-family: Geneva, Verdana, Tahoma, sans-serif;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

/* NAVBAR */

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 28px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  display: block;
  width: auto;
  height: 60px;
  object-fit: contain;
}

.menu {
  display: flex;
  gap: 70px;
}

.menu a {
  color: white;
  text-decoration: none;
  font-family: Geneva, Verdana, Tahoma, sans-serif;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.6);
  padding-bottom: 6px;
}

/* HERO */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('0272_Vogelperspektive_gross.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.subtitle {
  font-family: Geneva, Verdana, Tahoma, sans-serif;
  font-size: 2rem;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: Geneva, Verdana, Tahoma, sans-serif;
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.location {
  font-family: Geneva, Verdana, Tahoma, sans-serif;
  font-size: 2rem;
}

/* INTRO GRID */

.intro-grid {
  padding: 120px 50px;
  display: grid;
  grid-template-columns: 2.6fr 1fr;
  gap: 36px;
  align-items: start;
}

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

.collage img {
  height: 260px;
}

.collage .big {
  grid-column: span 3;
  height: 470px;
}

.intro-text-box {
  background: #111;
  padding: 28px;
  border-radius: 20px;
  line-height: 1.75;
  font-size: 1.15rem;
  position: sticky;
  top: 120px;
}

.intro-text-box p {
  margin-bottom: 18px;
}

/* INFO SECTION */

.info-section {
  padding: 100px 70px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.meta-column {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.meta-block h4 {
  font-family: Geneva, Verdana, Tahoma, sans-serif;
  color: #dbba72;
  letter-spacing: 2px;
  font-size: 0.95rem;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 12px;
}

.meta-block p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 10px;
}

.text-column h2 {
  font-family: Geneva, Verdana, Tahoma, sans-serif;
  font-size: 3.4rem;
  margin-bottom: 30px;
}

.text-column p {
  font-size: 1.5rem;
  line-height: 2.0;
  margin-bottom: 28px;
}

/* WIDE GALLERY */

.wide-gallery {
  padding: 60px 80px 180px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wide-gallery img {
  height: 360px;
  width: 760px;
  margin: 10px auto;
  object-fit: cover;
}

.wide-gallery-row {
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 24px;
}

.wide-gallery-row img {
  height: 320px;
}

/* SECTION TITLE */

.section-title {
  text-align: center;
  padding: 40px 20px 90px;
}

.small-title {
  color: #e6bf6b;
  letter-spacing: 3px;
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.section-title h2 {
  font-family: Geneva, Verdana, Tahoma, sans-serif;
  font-size: 4.5rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: #caa24b;
  margin: 18px auto 0;
}

/* PERSPECTIVE BLOCK */

.perspective-block {
  padding: 40px 80px 90px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: start;
}

.perspective-block.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.perspective-image img {
  width: 100%;
  max-height: 620px;
  height: auto;
  object-fit: contain;
}

.perspective-text h3 {
  font-family: Geneva, Verdana, Tahoma, sans-serif;
  font-size: 2.4rem;
  margin-bottom: 18px;
}

.perspective-text p {
  font-size: 1.15rem;
  line-height: 1.85;
  margin-bottom: 22px;
}

.perspective-text span {
  color: #caa24b;
  letter-spacing: 2px;
  font-size: 0.95rem;
  border-bottom: 1px solid #caa24b;
  padding-bottom: 8px;
}

/* REVERSE ORDER */

.perspective-block.reverse .perspective-text {
  order: 1;
}

.perspective-block.reverse .perspective-image {
  order: 2;
}

/* IMAGE HOVER ZOOM */

.collage img:hover,
.wide-gallery img:hover,
.wide-gallery-row img:hover,
.perspective-image img:hover {
  transform: scale(1.12);
  position: relative;
  z-index: 20;
}

/* LIGHT SECTIONS: PLÄNE */

.plans-section {
  background: #ececec;
  color: #1b1b1b;
  padding: 120px 70px 140px;
}

.light-section-title .small-title {
  color: #caa24b;
}

.light-section-title h2 {
  color: #111;
}

.plan-block {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 70px;
  align-items: start;
  margin-bottom: 120px;
}

.reverse-plan {
  grid-template-columns: 1.6fr 1fr;
}

.plan-text h3 {
  font-family: Geneva, Verdana, Tahoma, sans-serif;
  font-size: 2.5rem;
  margin-bottom: 26px;
  line-height: 1.2;
}

.plan-text h3 span {
  color: #caa24b;
  margin-right: 10px;
}

.plan-text p {
  font-size: 1.25rem;
  line-height: 1.9;
  color: #3e4655;
  max-width: 520px;
}

.plan-images {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.main-plan-image {
  background: #f7f7f7;
  padding: 22px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.main-plan-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.plan-thumbnails {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.plan-thumbnails img {
  background: #f7f7f7;
  padding: 14px;
  border: 1px solid #ddd;
  height: 220px;
  object-fit: contain;
}

.stacked-plans {
  gap: 36px;
}

/* Adjust second volumetry image size */
.stacked-plans .main-plan-image:nth-child(2) img {
  max-height: 320px;
  object-fit: contain;
}

.plan-full-block {
  margin-bottom: 120px;
}

.full-width-text {
  margin-bottom: 40px;
}

.full-width-text p {
  max-width: 980px;
}

.double-plan-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.plan-card {
  background: #f7f7f7;
  padding: 28px;
  border: 1px solid #ddd;
  text-align: center;
}

.plan-card img {
  width: 100%;
  height: 520px;
  object-fit: contain;
  margin-bottom: 28px;
}

.plan-card p {
  font-family: Geneva, Verdana, Tahoma, sans-serif;
  letter-spacing: 2px;
  font-size: 1rem;
  color: #98a0b3;
  border-bottom: 1px solid #d7d7d7;
  display: inline-block;
  padding-bottom: 10px;
}

.single-large-plan {
  background: #f7f7f7;
  padding: 28px;
  border: 1px solid #ddd;
}

.single-large-plan img {
  width: 100%;
  height: 640px;
  object-fit: contain;
}

/* AWARDS SECTION */

.awards-section {
  background: #000;
  color: white;
  padding: 130px 70px 140px;
}

.awards-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 50px;
}

.awards-image img {
  width: 100%;
  max-width: 800px;
  height: 640px;
  object-fit: cover;
  border-radius: 6px;
}

.awards-list {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.award-item {
  position: relative;
  padding-left: 28px;
}

.award-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 2px;
  height: 64px;
  background: #caa24b;
}

.award-year {
  display: block;
  color: #caa24b;
  font-size: 1rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.award-item h3 {
  font-family: Geneva, Verdana, Tahoma, sans-serif;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 600;
}

.award-item p {
  margin-top: 8px;
  color: #bcbcbc;
  font-size: 1.1rem;
}

/* HOVER FOR NEW IMAGES */

.plan-thumbnails img:hover,
.plan-card img:hover,
.single-large-plan img:hover,
.main-plan-image img:hover,
.awards-image img:hover {
  transform: scale(1.04);
  position: relative;
  z-index: 10;
}

/* ABOUT US */

.about-section {
  background: #111;
  color: white;
  padding: 120px 70px;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: 1.3rem;
  line-height: 2;
  margin-bottom: 28px;
}

/* RESPONSIVE */

@media (max-width: 1000px) {
  .intro-grid,
  .info-section,
  .perspective-block,
  .perspective-block.reverse,
  .plan-block,
  .reverse-plan,
  .awards-content {
    grid-template-columns: 1fr;
  }

  .text-column h2 {
    font-size: 2.5rem;
  }

  .section-title h2 {
    font-size: 3rem;
  }

  .hero h1 {
    font-size: 3.4rem;
  }

  .subtitle,
  .location {
    font-size: 1.4rem;
  }

  .double-plan-gallery {
    grid-template-columns: 1fr;
  }

  .plan-text h3 {
    font-size: 2rem;
  }

  .award-item h3 {
    font-size: 1.6rem;
  }

  .single-large-plan img {
    height: 420px;
  }

  .plan-card img {
    height: 420px;
  }
}

@media (max-width: 700px) {
  .navbar {
    padding: 24px 24px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }

  .menu {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .intro-grid,
  .info-section,
  .wide-gallery,
  .perspective-block,
  .plans-section,
  .awards-section,
  .about-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .collage {
    grid-template-columns: 2fr 2fr;
  }

  .collage .big {
    grid-column: span 2;
    height: 260px;
  }

  .collage img {
    height: 190px;
  }

  .wide-gallery-row {
    grid-template-columns: 1fr;
  }

  .wide-gallery img,
  .wide-gallery-row img,
  .perspective-image img {
    height: auto;
    max-height: none;
  }

  .intro-text-box {
    position: static;
  }

  .text-column p,
  .perspective-text p,
  .meta-block p {
    font-size: 1.1rem;
  }

  .plan-block {
    gap: 36px;
    margin-bottom: 80px;
  }

  .plan-thumbnails {
    grid-template-columns: 1fr;
  }

  .plan-text h3 {
    font-size: 1.7rem;
  }

  .plan-text p {
    font-size: 1.05rem;
  }

  .plan-card img,
  .single-large-plan img,
  .awards-image img {
    height: auto;
  }

  .about-content p {
    font-size: 1.05rem;
  }
}

/* FOOTER */

.site-footer {
  background: #000;
  color: #8f8f8f;
  text-align: center;
  padding: 0 40px 110px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 110px;
}

.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.footer-logo img {
  width: auto;
  height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-address {
  margin-bottom: 60px;
}

.footer-address p {
  font-family: Geneva, Verdana, Tahoma, sans-serif;
  font-size: 1.1rem;
  line-height: 1.9;
  color: #9d9d9d;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 90px;
}

.footer-links a {
  color: #8f8f8f;
  text-decoration: none;
  font-family: Geneva, Verdana, Tahoma, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.footer-copy {
  font-size: 0.95rem;
  color: #4f4f4f;
}

@media (max-width: 700px) {
  .site-footer {
    padding: 0 24px 80px;
  }

  .footer-divider {
    margin-bottom: 80px;
  }

  .footer-links {
    gap: 20px;
    margin-bottom: 60px;
  }

  .footer-address p {
    font-size: 1rem;
  }
}