/* =====================================================
   Aurora-Garten – Startseite
   Datei: /frontend/assets/css/index.css
===================================================== */

/* ================================
   Grundton (wie Shop)
================================ */

body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #F2F5EF; /* exakt wie Shop */
    color: #2B2B2B;
    line-height: 1.6;
}


/* ================================
   Typografie
================================ */

h1, h2, h3 {
    margin: 0 0 20px 0;
    font-weight: 600;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 28px;
}

p {
    margin: 0 0 20px 0;
    font-size: 18px;
}

/* ================================
   Hero Bereich (angepasst an Shop-Breite)
================================ */

.hero {
    width: 100%;
    max-width: 900px;
    text-align: center;
    margin-bottom: 100px;
}

.hero h1 {
    margin-bottom: 25px;
}

.hero p {
    max-width: 700px;
    margin: 0 auto 35px auto;
}

/* ================================
   Buttons
================================ */

.btn-primary {
    display: inline-block;
    padding: 14px 30px;
    background-color: #6FAE45;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: #5C8F39;
    transform: translateY(-2px);
}

/* ================================
   Intro Sektion
================================ */

.intro {
    width: 100%;
    max-width: 900px;
    text-align: center;
}

.intro p {
    max-width: 800px;
    margin: 0 auto;
}