/* ==========================================================================
   HALLENVERMIETUNG SEITEN-STYLING
   ========================================================================== */

.halle-container {
  padding: 60px 40px 20px 40px;
  color: #2c523e; /* Vereinsgrün */
  line-height: 1.6;
}

/* Titel - Exakt analog zu Datenschutz & Satzung */
.halle-container h1 {
  font-family: 'Garamond', serif;
  font-size: 3rem;
  margin-bottom: 40px;
  border-bottom: 2px solid rgba(44, 82, 62, 0.2);
  padding-bottom: 10px;
  line-height: 1.2;
}

.halle-container h1 .subtitle {
  font-size: 2.2rem;
  font-weight: normal;
  display: block;
  margin-top: 5px;
}

/* Einleitungstext */
.einleitung {
  font-size: 1.15rem;
  margin-bottom: 40px;
  text-align: justify;
}

/* Sektionen */
.halle-section {
  margin-bottom: 45px;
  font-size: 1.05rem;
}

.halle-section h3 {
  font-family: 'Garamond', serif;
  font-size: 1.6rem;
  margin-top: 0;
  margin-bottom: 15px;
  border-left: 4px solid #2c523e;
  padding-left: 12px;
}

.icon-space {
  margin-right: 8px;
  color: #c9a054; /* Edles Gold für die Icons */
}

.halle-container p {
  margin-bottom: 15px;
  text-align: justify;
}

/* Listen-Formatierung */
.halle-container ul {
  margin: 15px 0 25px 20px;
  padding: 0;
}

.halle-container li {
  margin-bottom: 10px;
  list-style-type: square;
}

/* Highlight-Box (z.B. für die Ausstattung) */
.highlight-box {
  background: rgba(44, 82, 62, 0.02);
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #c9a054; /* Goldener Akzentstreifen */
}

/* Visueller Ansprechpartner-Block */
.ansprechpartner {
  background: rgba(44, 82, 62, 0.05);
  padding: 20px;
  border-radius: 6px;
  border: 1px solid rgba(44, 82, 62, 0.1);
  display: inline-block;
  min-width: 340px;
  margin-top: 15px;
}

.ansprechpartner p {
  margin-bottom: 8px;
  text-align: left;
}

.ansprechpartner p i {
  width: 24px;
  color: #2c523e;
}

.ansprechpartner a {
  color: #c9a054;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

.ansprechpartner a:hover {
  color: #2c523e;
  border-bottom-color: #2c523e;
}

/* ==========================================================================
   RESPONSIVE ANPASSUNGEN (MOBILGERÄTE)
   ========================================================================== */
@media screen and (max-width: 900px) {
  .halle-container {
    padding: 30px 20px 10px 20px;
  }
  
  .halle-container h1 {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }

  .halle-container h1 .subtitle {
    font-size: 1.5rem;
  }
  
  .halle-section h3 {
    font-size: 1.3rem;
  }

  .halle-container p {
    text-align: left;
  }
  
  .ansprechpartner {
    width: 100%;
    box-sizing: border-box;
    min-width: auto;
  }
}