/**
 * erntehandel Custom Styles
 * Alle Original-Styles aus den HTML-Dateien
 */

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

:root {
    --brand-1: #BBCC2A;
    --brand-2: #A0AF23;
    --illustration: #3E5641;
    --background-1: #F7EAC8;
    --background-2: #B9A280;
    --text-1: #4A4A4A;
    --text-2: #FFFFFF;
}

body {
    font-family: 'Source Sans Pro', -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-1);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Slab', serif;
    font-weight: 500;
    letter-spacing: 0.02em;
}

html {
    scroll-behavior: smooth;
}

/* =Navigation
-------------------------------------------------------------- */
nav {
    background: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--brand-1);
    text-decoration: none;
    font-family: 'Roboto Slab', serif;
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-1);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--brand-1);
}

.nav-cta {
    background: var(--brand-1);
    color: var(--text-1);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--brand-2);
    color: white;
}

/* =Hero Section
-------------------------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--illustration) 0%, #2a3d2d 100%);
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.hero-content {
    text-align: center;
    color: var(--text-2);
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1.2s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.hero .tagline {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    font-weight: 300;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Roboto Slab', serif;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--brand-1);
    color: var(--text-1);
    box-shadow: 0 10px 40px rgba(187, 204, 42, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 60px rgba(187, 204, 42, 0.4);
    background: var(--brand-2);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--text-2);
    border: 2px solid var(--text-2);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-4px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* =Section Base
-------------------------------------------------------------- */
.section {
    padding: 8rem 2rem;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

h2 {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--illustration);
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.section-intro {
    text-align: center;
    font-size: 1.4rem;
    color: var(--text-1);
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* =Problem Section
-------------------------------------------------------------- */
.problem-section {
    background: var(--background-1);
}

.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem;
}

.content-text h3 {
    font-size: 2rem;
    color: var(--brand-1);
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.pain-list {
    list-style: none;
    margin-top: 2rem;
}

.pain-list li {
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 15px;
    border-left: 4px solid var(--brand-1);
    transition: all 0.3s ease;
}

.pain-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pain-list strong {
    color: var(--illustration);
    font-size: 1.2rem;
    font-family: 'Roboto Slab', serif;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.content-image {
    position: relative;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

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

/* =Solution Section
-------------------------------------------------------------- */
.solution-section {
    background: white;
}

.solutions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.solution-card {
    background: var(--background-1);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 100px rgba(187, 204, 42, 0.2);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--illustration);
}

.solution-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--illustration);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.solution-card p {
    font-size: 1.1rem;
    color: var(--text-1);
    line-height: 1.8;
}

/* =Process Section
-------------------------------------------------------------- */
.process-section {
    background: var(--illustration);
    color: var(--text-2);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(187,204,42,0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: drift 30s linear infinite;
}

@keyframes drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

.process-section h2 {
    color: var(--text-2);
}

.process-section .section-intro {
    color: rgba(255,255,255,0.8);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.step {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 30px;
    border: 2px solid rgba(255,255,255,0.1);
    transition: all 0.5s ease;
}

.step:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-10px);
    border-color: var(--brand-1);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
    color: var(--illustration);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    font-family: 'Roboto Slab', serif;
}

.step h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* =Target Groups
-------------------------------------------------------------- */
.target-section {
    background: var(--background-1);
}

.target-groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.target-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transition: all 0.5s ease;
}

.target-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 100px rgba(0,0,0,0.15);
}

.target-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.target-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.target-card:hover .target-image img {
    transform: scale(1.1);
}

.target-content {
    padding: 2.5rem;
}

.target-label {
    color: var(--brand-2);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.target-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--illustration);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* =CTA Section
-------------------------------------------------------------- */
.cta-section {
    background: linear-gradient(135deg, var(--brand-1) 0%, var(--brand-2) 100%);
    color: var(--text-1);
    text-align: center;
}

.cta-section h2 {
    color: var(--illustration);
}

.cta-section .section-intro {
    color: var(--text-1);
}

.cta-box {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(20px);
    padding: 4rem;
    border-radius: 40px;
    border: 2px solid rgba(255,255,255,0.3);
    max-width: 800px;
    margin: 0 auto;
}

/* =Footer
-------------------------------------------------------------- */
footer {
    background: var(--illustration);
    color: var(--text-2);
    padding: 4rem 2rem 2rem;
}

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

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--brand-1);
    font-size: 1.2rem;
    font-family: 'Roboto Slab', serif;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--brand-1);
    transform: translateX(5px);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    margin: 0;
}

.footer-links a:hover {
    color: var(--brand-1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
}

/* =Content Pages (Team, Impressum, etc.)
-------------------------------------------------------------- */

/* Hero für Unterseiten - Fix */
.hero-subpage {
    min-height: auto;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--illustration) 0%, #2a3d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-subpage {
    text-align: center;
    max-width: 1000px;
    width: 100%;
}

.hero-subpage h1 {
    color: var(--text-2);
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    display: block;
}

.hero-subpage p {
    color: var(--text-2);
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    display: block;
}

/* Content Section - Einheitlicher Hintergrund */
body:not(.page-template-page-landing) {
    background: var(--background-1);
}

.content-section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 3rem;
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.content-section h2 {
    color: var(--brand-1);
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--background-1);
    font-weight: 500;
    line-height: 1.3;
}

.content-section h2:first-of-type {
    margin-top: 0;
}

.content-section h3 {
    color: var(--illustration);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
    line-height: 1.3;
}

.content-section p, 
.content-section ul, 
.content-section ol {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-section ul, 
.content-section ol {
    margin-left: 2rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

.content-section strong {
    color: var(--illustration);
}

.content-section a {
    color: var(--brand-2);
    text-decoration: none;
    border-bottom: 1px solid var(--brand-2);
    transition: all 0.3s ease;
}

.content-section a:hover {
    color: var(--brand-1);
    border-bottom-color: var(--brand-1);
}

.highlight-box {
    background: var(--background-1);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--brand-1);
    margin: 1.5rem 0;
}

/* =Team Page
-------------------------------------------------------------- */
.team-section {
    padding: 6rem 2rem;
    background: var(--background-1);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 400px));
    gap: 3rem;
    margin-top: 3rem;
    justify-content: center;
}

.team-member {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    max-width: 400px;
    width: 100%;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(187, 204, 42, 0.2);
}

.member-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--background-2), var(--brand-2));
    position: relative;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 2rem;
}

.member-name {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--illustration);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.member-role {
    color: var(--brand-2);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-1);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.member-contact {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--background-1);
    color: var(--brand-2);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: var(--brand-1);
    color: var(--illustration);
    transform: translateY(-2px);
}

/* =App Demo Page
-------------------------------------------------------------- */
.demo-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--background-1);
}

/* =Umfrage Page
-------------------------------------------------------------- */
.umfrage-section {
    padding: 4rem 2rem;
    background: var(--background-1);
}

.umfrage-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.umfrage-intro h2 {
    font-size: 2.5rem;
    color: var(--illustration);
    margin-bottom: 1rem;
}

.umfrage-container {
    max-width: 1100px;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background: #FBF6E9;
    border-radius: 30px;
	border-left: 4px solid var(--brand-1);
    font-size: 0.9rem;
    color: var(--text-1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.umfrage-hinweis {
    max-width: 900px;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background: rgba(255,255,255,0.6);
    border-radius: 15px;
    border-left: 4px solid var(--brand-1);
    font-size: 0.9rem;
    color: var(--text-1);
}

.umfrage-hinweis a {
    color: var(--brand-2);
    text-decoration: none;
    border-bottom: 1px solid var(--brand-2);
}

.umfrage-hinweis a:hover {
    color: var(--brand-1);
    border-bottom-color: var(--brand-1);
}

.info-boxes {
    padding: 4rem 2rem;
    background: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-box {
    text-align: center;
    padding: 2rem;
    background: var(--background-1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--illustration);
}

.info-box h3 {
    font-size: 1.5rem;
    color: var(--illustration);
    margin-bottom: 0.5rem;
}

.info-box p {
    color: var(--text-1);
    line-height: 1.6;
}

.demo-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.demo-intro h2 {
    font-size: 2.5rem;
    color: var(--illustration);
    margin-bottom: 1rem;
}

.demo-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.demo-controls {
    background: var(--background-1);
    padding: 2rem;
    border-radius: 20px;
}

.demo-controls h3 {
    color: var(--illustration);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.control-group {
    margin-bottom: 2rem;
}

.control-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--illustration);
}

.control-group select,
.control-group input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--background-2);
    border-radius: 10px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    background: white;
    color: var(--text-1);
    transition: border-color 0.3s ease;
}

.control-group select:focus,
.control-group input:focus {
    outline: none;
    border-color: var(--brand-1);
}

.app-preview {
    background: var(--illustration);
    border-radius: 20px;
    padding: 2rem;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.app-header {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-header h4 {
    color: var(--brand-1);
    font-size: 1.3rem;
}

.app-status {
    background: var(--brand-1);
    color: var(--illustration);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.app-content {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 2rem;
    flex-grow: 1;
    color: var(--text-2);
}

.feature-card {
    background: rgba(255,255,255,0.08);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--brand-1);
}

.feature-card h5 {
    color: var(--brand-1);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-card p {
    opacity: 0.9;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding: 0 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(187, 204, 42, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--illustration);
}

.feature-item h4 {
    color: var(--illustration);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

/* =Responsive Design
-------------------------------------------------------------- */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero .tagline {
        font-size: 1.3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .split-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .content-image {
        height: 350px;
    }

    .nav-links {
        display: none;
    }

    .demo-container {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .content-section {
        padding: 2rem;
        margin: 2rem 1rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 1rem;
    }

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

    .hero-subpage h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section-intro {
        font-size: 1.1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .team-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .team-member {
        max-width: 100%;
    }

    .member-image {
        height: 350px;
    }
}
/* Logo-Größe anpassen */
.custom-logo {
    max-height: 80px !important;  /* Höhe anpassen */
    width: auto !important;
}