/* =========================================================
   PVPlanungshilfe Professional Edition
   Base Styles
   Version 2.0
========================================================= */

/* ------------------------------
   Google Fonts
------------------------------ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

/* ------------------------------
   CSS Reset
------------------------------ */

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

html{
    scroll-behavior:smooth;
}

body{
    background:#F8FAFB;
    color:#263238;
    font-family:'Inter',sans-serif;
    font-size:16px;
    line-height:1.7;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
}

img{
    display:block;
    max-width:100%;
    height:auto;
}

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

ul{
    list-style:none;
}

button{
    font-family:inherit;
    cursor:pointer;
    border:none;
    background:none;
}

input,
textarea,
select{
    font-family:inherit;
}

/* ------------------------------
   Farbpalette
------------------------------ */

:root{

    --primary:#123B5D;
    --primary-light:#245B88;

    --green:#63B32E;
    --green-dark:#4E9823;

    --dark:#263238;

    --text:#4E5A65;

    --light:#F8FAFB;

    --white:#FFFFFF;

    --border:#E5E9EC;

    --shadow:0 15px 40px rgba(18,59,93,.08);

    --shadow-hover:0 20px 45px rgba(18,59,93,.15);

    --radius:18px;

    --transition:.30s ease;

}

/* ------------------------------
   Typografie
------------------------------ */

h1,
h2,
h3,
h4{
    font-family:'Manrope',sans-serif;
    color:var(--primary);
    font-weight:800;
    line-height:1.15;
}

h1{
    font-size:clamp(2.6rem,5vw,4.6rem);
    margin-bottom:24px;
}

h2{
    font-size:clamp(2rem,4vw,3rem);
    margin-bottom:20px;
}

h3{
    font-size:1.45rem;
    margin-bottom:16px;
}

p{
    margin-bottom:20px;
    color:var(--text);
}

small{
    color:#6F7C86;
}

/* ------------------------------
   Layout
------------------------------ */

.container{

    width:min(1180px,92%);
    margin:auto;

}

section{

    padding:110px 0;

}

.section-title{

    text-align:center;
    max-width:760px;
    margin:auto auto 70px;

}

.section-title p{

    margin-top:15px;

}

/* ------------------------------
   Buttons
------------------------------ */

.btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:17px 34px;

    background:var(--green);

    color:#fff;

    border-radius:60px;

    font-weight:700;

    transition:var(--transition);

    box-shadow:0 10px 25px rgba(99,179,46,.25);

}

.btn:hover{

    transform:translateY(-3px);

    background:var(--green-dark);

}

.btn-secondary{

    background:transparent;

    border:2px solid var(--primary);

    color:var(--primary);

    box-shadow:none;

}

.btn-secondary:hover{

    background:var(--primary);

    color:#fff;

}

/* ------------------------------
   Cards
------------------------------ */

.card{

    background:#fff;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-hover);

}

/* ------------------------------
   Textmarker
------------------------------ */

.highlight{

    color:var(--green);

}

/* ------------------------------
   Divider
------------------------------ */

.divider{

    width:90px;

    height:5px;

    border-radius:30px;

    background:var(--green);

    margin:22px auto 0;

}

/* ------------------------------
   Abstände
------------------------------ */

.mt-1{margin-top:10px;}
.mt-2{margin-top:20px;}
.mt-3{margin-top:30px;}
.mt-4{margin-top:40px;}
.mt-5{margin-top:60px;}

.mb-1{margin-bottom:10px;}
.mb-2{margin-bottom:20px;}
.mb-3{margin-bottom:30px;}
.mb-4{margin-bottom:40px;}
.mb-5{margin-bottom:60px;}

/* ------------------------------
   Scrollbar
------------------------------ */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#EFF3F6;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

/* ------------------------------
   Selection
------------------------------ */

::selection{

    background:var(--green);

    color:#fff;

}
