/*
 * Unsere Idee - Page-spezifische Styles
 *
 * Basis-Styles (Hero, Fonts, Responsive) kommen aus hybrid-pages.css.
 * Hier nur Unsere-Idee-spezifische Formatierung.
 *
 * Strategie: #primary bleibt full-width (Astra page-builder Modus).
 * Zentrierung ueber den inneren .unsere-idee-content Wrapper,
 * der von Astra nicht angefasst wird.
 *
 * @package Natur-Luftballons
 * @since 1.0
 */

/* ===================================================================
   BAUMI IM HERO
   Baumi vertikal mittig, rechts im Hero positioniert.
   =================================================================== */

.baumi-image {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 250px;
}

.baumi-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}


/* ===================================================================
   CONTENT-WRAPPER (Zentrierung)
   #primary bleibt full-width (Astra page-builder).
   .unsere-idee-content uebernimmt max-width + Zentrierung.
   =================================================================== */

.unsere-idee-content {
    font-family: "Nunito", sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}


/* ===================================================================
   SEKTIONEN
   =================================================================== */

.unsere-idee-section {
    margin-bottom: 2rem;
}

.unsere-idee-section:last-child {
    margin-bottom: 0;
}

.unsere-idee-section h2 {
    font-family: "Nunito", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333333;
    margin-top: 0;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #62BC66;
}

.unsere-idee-section p,
.unsere-idee-section li {
    font-family: "Nunito", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #374151;
    line-height: 1.8;
}

.unsere-idee-section p {
    margin: 0 0 0.75rem 0;
}

.unsere-idee-section p:last-child {
    margin-bottom: 0;
}

.unsere-idee-section ul {
    margin: 0.5rem 0 1rem 1.5rem;
    padding: 0;
}

.unsere-idee-section li {
    margin-bottom: 0.75rem;
}

.unsere-idee-section li:last-child {
    margin-bottom: 0;
}


/* ===================================================================
   LINKS
   =================================================================== */

.unsere-idee-content a {
    color: #62BC66;
    text-decoration: none;
    transition: color 0.2s ease;
}

.unsere-idee-content a:hover {
    color: #4a9a4e;
    text-decoration: underline;
}


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

@media (max-width: 768px) {
    .unsere-idee-content {
        padding: 1.5rem 1rem;
    }

    .unsere-idee-section h2 {
        font-size: 1.3rem;
    }

    .baumi-image {
        display: none;
    }
}

@media (max-width: 480px) {
    .unsere-idee-content {
        padding: 1rem 0.75rem;
    }

    .unsere-idee-section h2 {
        font-size: 1.2rem;
    }
}
