/* ===== INDEX PAGE STYLES ===== */
/* Spezifische Styles für die Startseite - Mobile First */

/* ===== CTA BUTTONS ===== */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.cta-button {
    padding: 14px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

/* Primary Button (Green) */
.cta-button.primary {
    background-color: #a6e3a1;
    color: #1e1e2e;
}

.cta-button.primary:active {
    background-color: #89dceb;
}

/* Secondary Button (Blue) */
.cta-button.secondary {
    background-color: #89b4fa;
    color: #1e1e2e;
}

.cta-button.secondary:active {
    background-color: #b4befe;
}

/* ===== FEATURES SECTION ===== */
.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 30px;
}

.feature {
    padding: 20px;
    background-color: #1e1e2e;
    border-radius: 8px;
    border-left: 4px solid #a6e3a1;
}

.feature h3 {
    color: #a6e3a1;
    margin-bottom: 10px;
    font-size: 16px;
}

.feature p {
    color: #cdd6f4;
    line-height: 1.5;
    font-size: 14px;
}

/* ===== TABLET RESPONSIVE (480px+) ===== */
@media (min-width: 480px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .cta-button {
        padding: 14px 25px;
        font-size: 15px;
        width: auto;
        display: inline-block;
    }
    
    .features {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-top: 40px;
    }
    
    .feature {
        padding: 25px;
    }
    
    .feature h3 {
        font-size: 17px;
    }
    
    .feature p {
        font-size: 15px;
    }
}

/* ===== DESKTOP RESPONSIVE (768px+) ===== */
@media (min-width: 768px) {
    .cta-buttons {
        gap: 20px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .cta-button.primary:hover {
        background-color: #89dceb;
        transform: translateY(-2px);
    }
    
    .cta-button.secondary:hover {
        background-color: #b4befe;
        transform: translateY(-2px);
    }
    
    .features {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }
    
    .feature {
        padding: 30px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .feature:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    
    .feature h3 {
        font-size: 18px;
    }
    
    .feature p {
        font-size: 16px;
    }
}
