/* ============================================
   LCLRG Landing Page
   ============================================ */

/* --- VARIABLEN (Basierend auf deinem Screenshot) --- */
:root {
    --primary-color: #266E6E; /* Das dunkle Petrol der Buttons/Sidebar */
    --primary-hover: #1e5858;
    --accent-bg: #F2F7F7;     /* Der helle Hintergrund */
    --white: #ffffff;
    --text-dark: #333333;
    --text-grey: #666666;
    --border-color: #e0e0e0;
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.05);
    --radius-btn: 6px;
    --radius-card: 8px;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--accent-bg);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Merriweather', serif; /* Passend zum "Supervisorische Empfehlungen" Stil */
    color: var(--text-dark);
    margin-bottom: 1rem;
}

a { 
    text-decoration: none; 
    color: inherit; 
}

ul { 
    list-style: none; 
}

/* --- UI COMPONENTS --- */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-btn);
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: rgba(38, 110, 110, 0.1);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-white:hover { 
    background-color: #f0f0f0; 
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    background-color: #e0e0e0;
    border-radius: 12px;
    font-size: 0.75rem;
    color: var(--text-grey);
    margin-right: 5px;
}

/* --- HEADER --- */
header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

nav ul {
    display: flex;
    gap: 2rem;
}

nav a {
    font-size: 0.95rem;
    color: var(--text-grey);
    font-weight: 500;
}

nav a:hover { 
    color: var(--primary-color); 
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* --- HERO SECTION --- */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 10%;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--text-dark);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-grey);
    margin-bottom: 2rem;
}

.hero-btns {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    background-color: var(--white);
    padding: 1rem;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    position: relative;
}

/* App Mockup */
.app-mockup {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
    background-color: #f5f5f5;
    min-height: 400px;
}

.mockup-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mockup-header {
    background: var(--accent-bg);
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
}

.mockup-dots span:nth-child(1) {
    background: #FF5F57;
}

.mockup-dots span:nth-child(2) {
    background: #FFBD2E;
}

.mockup-dots span:nth-child(3) {
    background: #28CA42;
}

.mockup-body {
    display: flex;
    flex: 1;
    min-height: 350px;
}

.mockup-sidebar {
    width: 200px;
    background: var(--primary-color);
    opacity: 0.8;
}

.mockup-main {
    flex: 1;
    padding: 1.5rem;
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mockup-line {
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    width: 100%;
}

.mockup-line.short {
    width: 60%;
}

.mockup-highlight {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--accent-bg);
    border-radius: 4px;
    border-left: 3px solid var(--primary-color);
    height: 60px;
}

/* --- FEATURES SECTION --- */
.features {
    background-color: var(--white);
    padding: 5rem 10%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-grey);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--accent-bg);
    padding: 2rem;
    border-radius: var(--radius-card);
    border: 1px solid transparent;
    transition: 0.3s;
}

.feature-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-soft);
    border-color: var(--border-color);
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-grey);
    line-height: 1.6;
}

/* --- INFO SECTION --- */
.info-section {
    padding: 5rem 10%;
    background-color: var(--accent-bg);
}

.info-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.info-text {
    flex: 1;
}

.info-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info-text > p {
    color: var(--text-grey);
    margin-bottom: 1.5rem;
}

.info-list {
    margin-bottom: 2rem;
}

.info-list li {
    margin-bottom: 10px;
    color: var(--text-grey);
}

.info-card {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
}

.info-card-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.info-card-header strong {
    color: var(--primary-color);
}

.info-card-content {
    background: #f9f9f9;
    padding: 10px;
    border-radius: 4px;
    color: var(--text-grey);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.info-card-bars {
    display: flex;
    gap: 10px;
}

.bar {
    height: 8px;
    border-radius: 4px;
}

.bar-grey {
    width: 60%;
    background: #e0e0e0;
}

.bar-primary {
    width: 30%;
    background: var(--primary-color);
}

/* --- CTA SECTION --- */
.cta-section {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 5rem 1rem;
}

.cta-section h2 { 
    color: var(--white); 
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p { 
    color: rgba(255,255,255, 0.9); 
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* --- FOOTER --- */
footer {
    background-color: var(--white);
    padding: 3rem 10%;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-grey);
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    margin: 0 10px;
    color: var(--text-grey);
    transition: color 0.2s;
}

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

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero {
        gap: 2rem;
    }

    .info-content {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero { 
        flex-direction: column; 
        padding: 3rem 5%; 
    }

    header { 
        padding: 1rem; 
        flex-wrap: wrap;
    }

    nav { 
        display: none; 
    }

    .header-actions {
        margin-left: auto;
    }

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

    .hero-image {
        width: 100%;
    }

    .info-content {
        flex-direction: column;
    }

    .features {
        padding: 3rem 5%;
    }

    .info-section {
        padding: 3rem 5%;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }

    .header-actions {
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
    }

    .header-actions .btn {
        width: 100%;
        text-align: center;
    }
}
