/* =========================
   FONTS
========================= */

@font-face{
font-family:'Inter';
src:url('fonts/Inter-Light.ttf') format('truetype');
font-weight:300;
}

@font-face{
font-family:'Inter';
src:url('fonts/Inter-Regular.ttf') format('truetype');
font-weight:400;
}

@font-face{
font-family:'Inter';
src:url('fonts/Inter-SemiBold.ttf') format('truetype');
font-weight:600;
}

/* =========================
   BASE
========================= */

body{
margin:0;
font-family:'Inter',sans-serif;
color:#3f4d46;
background:
radial-gradient(circle at 15% 15%, rgba(111,191,115,0.20), transparent 50%),
radial-gradient(circle at 85% 20%, rgba(242,159,5,0.20), transparent 50%);
}

/* =========================
   LINKS
========================= */

a{
color:#3f4d46;
text-decoration:none;
transition:all 0.2s ease;
}

a:hover{
color:#6FBF73;
}

/* Kontakt Hover Orange */
a[href^="tel"]:hover,
a[href^="mailto"]:hover{
color:#F29F05;
}

/* =========================
   NAVBAR
========================= */

.topbar{
display:none;
position:sticky;
top:0;
background:white;
padding:10px 20px;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

body.subpage .topbar{
display:block;
}

.topbar nav{
display:flex;
align-items:center;
gap:20px;
}

.topbar img{
height:28px;
}

/* Hover underline */
.topbar a,
.footer-links a{
position:relative;
font-weight:500;
}

.topbar a::after,
.footer-links a::after{
content:"";
position:absolute;
left:0;
bottom:-3px;
width:0;
height:2px;
background:#6FBF73;
transition:width 0.2s;
}

.topbar a:hover::after,
.footer-links a:hover::after{
width:100%;
}

/* =========================
   HERO
========================= */

.hero{
padding:120px 20px;
display:flex;
justify-content:center;
}

.hero-wrapper{
display:flex;
align-items:center;
justify-content:center;
gap:60px;
max-width:1100px;
width:100%;
flex-wrap:wrap;
}

/* LOGO */
.hero-logo-img{
width:260px;
max-width:100%;
opacity:0.9;
flex-shrink:0;
}

/* CONTENT */
.hero-content{
text-align:left;
max-width:600px;
width:100%;
}

/* TEXT */

.hero h1{
font-size:48px;
margin-bottom:4px;
line-height:1.0;
}

.hero h2{
margin-bottom:10px;
line-height:1.2;
font-weight:400;
color:#666;
font-size:22px;
}

.hero-location{
font-size:15px;
color:#888;
margin-bottom:6px;
line-height:1.2;
}

.hero-text{
margin-top:6px;
line-height:1.2;
color:#555;
font-size:16px;
}

/* HERO BUTTONS */

.hero-buttons{
margin-top:35px;
display:flex;
justify-content:flex-start;
gap:20px;
flex-wrap:nowrap;
max-width:420px;
}

/* BUTTONS */

.button{
min-width:180px;
width:auto;
padding:12px 22px;
text-align:center;
border-radius:10px;
background:#6FBF73;
color:white !important;
font-weight:600;
transition:transform 0.2s;
}

.button:hover{
transform:translateY(-2px);
color:white !important;
}

.button.secondary{
background:#F29F05;
}

/* =========================
   SECTIONS
========================= */

.services,
.trust,
.contact{
padding:80px 20px;
text-align:center;
}

.services h3,
.trust h3,
.contact h3{
font-size:32px;
margin-bottom:40px;
font-weight:600;
}

/* =========================
   CARDS
========================= */

.cards,
.trust-grid{
display:grid;
gap:30px;
max-width:1000px;
margin:auto;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
}

.card,
.trust-card{
background:white;
padding:32px;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:all 0.25s ease;

display:flex;
flex-direction:column;
align-items:center;
text-align:center;
}

.card:hover,
.trust-card:hover{
transform:translateY(-6px);
box-shadow:0 18px 45px rgba(0,0,0,0.12);
}

/* ICONS */

.icon{
margin-bottom:8px;
display:block;
}

.icon svg{
width:36px;
height:36px;
stroke:#6FBF73;
}

/* LISTEN */

.card ul{
text-align:left;
padding-left:20px;
margin-top:10px;
}

.card li{
margin-bottom:6px;
}

/* =========================
   CONTACT
========================= */

.contact-grid{
display:grid;
gap:20px;
max-width:700px;
margin:auto;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
}

.contact h4{
margin-bottom:4px;
font-size:18px;
}

.contact p{
margin:0;
font-size:15px;
color:#555;
}

/* =========================
   PAGE (SUBPAGES)
========================= */

.page-background{
background:#f4f6f5;
}

.page{
max-width:900px;
margin:60px auto;
background:white;
padding:30px;
border-radius:14px;
box-shadow:0 8px 25px rgba(0,0,0,0.07);
}

.page h2{
margin-top:25px;
font-size:20px;
}

.page hr{
margin:30px 0;
opacity:0.2;
}

/* =========================
   DOWNLOADS
========================= */

.download-list{
display:flex;
flex-direction:column;
gap:15px;
margin-top:20px;
}

.download-item{
display:flex;
align-items:center;
gap:12px;
padding:14px 18px;
background:white;
border-radius:12px;
box-shadow:0 6px 20px rgba(0,0,0,0.05);
transition:all 0.2s;
color:#3f4d46;
font-weight:500;
}

.download-item:hover{
transform:translateY(-3px);
box-shadow:0 12px 30px rgba(0,0,0,0.1);
color:#6FBF73;
}

.download-item svg{
width:20px;
height:20px;
stroke:#6FBF73;
}

/* =========================
   FOOTER
========================= */

footer{
text-align:center;
padding:40px 20px;
color:#777;
}

.footer-links a{
margin:0 10px;
}

/* =========================
   MOBILE
========================= */

@media (max-width:700px){

body{
background:
radial-gradient(circle at 30% 25%, rgba(111,191,115,0.18), transparent 60%),
radial-gradient(circle at 70% 25%, rgba(242,159,5,0.18), transparent 60%);
}

.hero{
padding:70px 15px;
}

.hero-wrapper{
flex-direction:column;
text-align:center;
gap:25px;
}

.hero-logo-img{
width:160px;
}

.hero-content{
text-align:center;
}

.hero h1{
font-size:32px;
}

.hero h2{
font-size:18px;
}

.hero-buttons{
flex-direction:column;
align-items:center;
flex-wrap:wrap;
gap:12px;
}

.button{
width:260px;
}

/* SUBPAGE FIX */
.page{
margin:20px 10px;
padding:20px;
}

/* TITLES */
.services h3,
.trust h3,
.contact h3{
font-size:26px;
}
}