/* ========================================
   HOBEGE Hausverwaltung Über uns - Styles
   ======================================== */

/* ========================================
   Hero Section
   ======================================== */
.hv-about-hero {
    height: 711px;
}

.hv-about-hero .hero-content {
    max-width: 800px;
    margin-left: auto;
    padding-left: 80px;
    padding-right: 100px;
}

.hv-about-hero .hero-content h1 {
    font-size: 60px;
    line-height: 70px;
}

.hv-about-hero .hero-subtitle {
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 40px;
}

/* ========================================
   Intro Section
   ======================================== */
.hv-about-intro {
    background-color: var(--color-dark);
    padding: 80px 0;
}

.hv-about-intro h2 {
    font-size: 45px;
    font-weight: 600;
    line-height: 60px;
    color: var(--color-white);
    text-shadow: var(--shadow);
    margin-bottom: 30px;
}

.hv-about-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-white);
    max-width: 1360px;
    margin-bottom: 20px;
}

.hv-about-intro p:last-child {
    margin-bottom: 0;
}

/* ========================================
   Values Section
   ======================================== */
.hv-values-section {
    background-color: var(--color-dark);
    padding: 60px 0 100px;
}

.hv-values-section h2 {
    font-size: 45px;
    font-weight: 600;
    line-height: 60px;
    color: var(--color-white);
    text-shadow: var(--shadow);
    margin-bottom: 20px;
}

.values-subtitle {
    font-size: 18px;
    color: var(--color-white);
    margin-bottom: 60px;
}

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

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 42px;
}

.value-icon {
    width: 164px;
    height: 164px;
    background-color: rgba(71, 186, 178, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon svg {
    max-width: 90px;
    max-height: 70px;
}

.value-content {
    flex: 1;
}

.value-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-white);
    display: inline;
}

.value-content p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-white);
    display: inline;
    margin: 0;
}

/* ========================================
   Story Section
   ======================================== */
.hv-story-section {
    background-color: var(--color-dark);
    display: flex;
    align-items: stretch;
    padding-bottom: 0;
}

.story-image {
    width: 695px;
    flex-shrink: 0;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    flex: 1;
    padding: 80px 280px 100px 44px;
}

.story-content h2 {
    font-size: 45px;
    font-weight: 600;
    line-height: 60px;
    color: var(--color-white);
    text-shadow: var(--shadow);
    margin-bottom: 30px;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-white);
    margin-bottom: 20px;
}

.story-content p:last-child {
    margin-bottom: 0;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1400px) {
    .story-content {
        padding: 60px 100px 80px 44px;
    }
}

@media (max-width: 1200px) {
    .hv-about-hero .hero-content {
        max-width: 600px;
        padding-left: 40px;
        padding-right: 60px;
    }
    
    .hv-about-hero .hero-content h1 {
        font-size: 48px;
        line-height: 60px;
    }
    
    .story-image {
        width: 400px;
    }
    
    .story-content {
        padding: 50px 60px 60px 30px;
    }
}

@media (max-width: 992px) {
    .value-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .value-content h3,
    .value-content p {
        display: block;
    }
    
    .value-content h3 {
        margin-bottom: 12px;
    }
    
    .hv-story-section {
        flex-direction: column;
    }
    
    .story-image {
        width: 100%;
        height: 400px;
    }
    
    .story-content {
        padding: 50px 60px;
    }
}

@media (max-width: 768px) {
    .hv-about-hero .hero-content {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hv-about-hero .hero-content h1 {
        font-size: 36px;
        line-height: 48px;
    }
    
    .hv-about-intro h2,
    .hv-values-section h2,
    .story-content h2 {
        font-size: 32px;
        line-height: 44px;
    }
    
    .value-icon {
        width: 120px;
        height: 120px;
    }
    
    .value-icon svg {
        max-width: 60px;
        max-height: 50px;
    }
    
    .story-content {
        padding: 40px 20px;
    }
}




