/** Styles for zh_brp.html */

.hero-section {
    background-image: url('/asset/kran.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-color:#0F172A
}

/* ========== Layout-Grundstruktur ========== */

.main-content {
  flex-grow: 1;
}

.hero-section {
  min-height: 100vh; /* min-h-screen */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20rem 1rem 8rem;
}

.hero-container {
  max-width: 80rem; /* max-w-7xl */
  margin: 0 auto;
  width: 100%;
}

/* ========== Überschriften & Texte ========== */

.hero-heading {
  font-size: 2.7rem; /* text-5xl */
  font-weight: 300; /* font-bold */
  margin-bottom: 5rem;
  color: #A855F7;
  text-align:right;
  line-height: 1.25;
}

@media (min-width: 640px) {
  .hero-heading {
    font-size: 6rem; /* sm:text-8xl */
  }
}

.hero-subheading {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  margin-left: auto;
  margin-right: 0;
  max-width: 80rem;
  color: #22d3ee;
  text-align: left;
}

.hero-textblock {
  text-align: left;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: 0;
  max-width: 80rem;
}

.hero-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.hero-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 1.3rem;   /* Größere Schriftgröße */
  line-height: 1.6;    /* Verbesserte Zeilenhöhe */
}

.hero-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #22d3ee; /* Farbe anpassen */
  font-size: 1.2 rem;
  top: -0.2rem;       /* Feinjustierung der vertikalen Position */
}

.hero-paragraph {
  font-size: 1.7rem;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .hero-paragraph {
    font-size: 1.875rem; /* sm:text-3xl */
  }
}

.highlight {
  font-weight: 700;
}

/* ==========> Dropdown <========== */
/* ==========> Navigation Dropdown <========== */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown .dropdown-toggle {
    cursor: pointer;
    user-select: none;
}

.nav-dropdown .nav-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1E293B;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    z-index: 1000;
    min-width: 200px;
    border: 1px solid #334155;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown .nav-dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: #E2E8F0;
    text-decoration: none;
    transition: background-color 0.2s ease;
    font-size: inherit;
}

.nav-dropdown .nav-dropdown-content a:hover {
    background-color: #334155;
    color: #06B6D4;
}

.nav-dropdown .nav-dropdown-content .label {
    display: block;
    font-weight: 700;
    color: #22d3ee;
    padding: 10px 15px 5px 15px;
    text-align: left;
    font-size: 0.875rem;
}

/* Click-Aktivierung - Dropdown bleibt offen */
.nav-dropdown.active .nav-dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Optional: Hover für Desktop (zusätzlich zum Click) */
@media (min-width: 769px) {
    .nav-dropdown:hover .nav-dropdown-content {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }
}


/* ========Click-Aktivierung (für mobile Geräte) */
.nav-dropdown.active .nav-dropdown-content {
    display: block;
}

/* Original Dropdown Container Styles (für main-content) */
.dropdown-container {
    display: flex;
    margin-top: 1rem;
    text-align: left;
}

.dropdown {
    position: relative;
    display: inline-block;
    text-align: center;
    margin: 1rem 0;
}

.dropdown-button {
    background-color: #06B6D4;
    color: #0F172A;
    border: none;
    padding: 1rem 3.5rem;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background-color 0.3s ease;
    font-weight: 300;
    display: block;
    width: 100%;
}

.dropdown-button:hover {
    background-color: #0891B2;
    color: #F8FAFC;
    transform: scale(1.02);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #1E293B;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    z-index: 1;
    min-width: 160px;
    overflow: hidden;
    border: 1px solid #334155;
}

.dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: #E2E8F0;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.dropdown-content a:hover {
    background-color: #334155;
    color: #06B6D4;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.label {
    font-weight: 700;
    color: #22d3ee;
    text-align: left;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .nav-dropdown .nav-dropdown-content {
        position: absolute;
        z-index: 1000;
    }
    
    .dropdown-content {
        display: none;
        position: absolute;
        z-index: 1000;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
}


/* ==================> Überschrift und Bild<======= */

.Ueberschrift-Bild {
  padding-top: 9rem;
  padding-bottom: 5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  background-color: #0F172A;
}

/* Container*/
.section-container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

/* Heading Container*/
.section-heading {
  text-align: center;
  margin-bottom: 4rem;
}

.bild-subheading {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 42rem;
  color: #22d3ee;
  text-align:center;
}

/* Heading Text */
.section-heading h2 {
  font-size: 3.0rem;
  font-weight: 700;
  color: #F8FAFC;
}
/* Container */
.consequence-image {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}

.consequence-image img {
  max-width: 56rem;
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.consequence-image img:hover {
  transform: scale(1.04);
}

.baurechtpilot {
  font-weight: 300;
  color: #06B6D4;
}

/* ======= Fullscreen Modal ========== */

.image-modal {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background:#0F172A;
  justify-content: center;
  align-items: center;
}

.image-modal img {
  max-width: 100vw;
  max-height: 100vh;
  object-fit: contain;
  border-radius: 0.5rem;
}

