/* ==========================================
SOMALI DOLMETSCHER - STYLE.CSS
Premium Design
========================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#f8f9fc;
color:#222;
line-height:1.7;
}

/* HEADER */

header{
position:fixed;
top:0;
left:0;
width:100%;
height:80px;
background:#071b36;
display:flex;
justify-content:space-between;
align-items:center;
padding:0 8%;
z-index:999;
box-shadow:0 5px 20px rgba(0,0,0,.15);
}

.logo{
font-size:28px;
font-weight:700;
color:#d4af37;
letter-spacing:1px;
}

nav{
display:flex;
gap:35px;
}

nav a{
color:#fff;
text-decoration:none;
font-weight:500;
transition:.3s;
}

nav a:hover{
color:#d4af37;
}

.btn{
background:#d4af37;
color:#071b36;
text-decoration:none;
padding:12px 25px;
border-radius:40px;
font-weight:600;
transition:.3s;
}

.btn:hover{
transform:translateY(-2px);
box-shadow:0 10px 25px rgba(212,175,55,.4);
}

/* HERO */

.hero{
height:100vh;
background:
linear-gradient(rgba(7,27,54,.75),
rgba(7,27,54,.75)),
url("../img/hero.jpg") center center/cover no-repeat;

display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:40px;
}

.overlay{
max-width:900px;
}

.hero h1{
color:#fff;
font-size:58px;
font-weight:700;
margin-bottom:25px;
}

.hero p{
color:#eee;
font-size:22px;
margin-bottom:40px;
}

.buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.primary{

background:#d4af37;
color:#071b36;
padding:16px 35px;
border-radius:40px;
text-decoration:none;
font-weight:700;
transition:.3s;

}

.secondary{

border:2px solid #fff;
color:#fff;
padding:16px 35px;
border-radius:40px;
text-decoration:none;
transition:.3s;

}

.primary:hover{

transform:translateY(-4px);

}

.secondary:hover{

background:#fff;
color:#071b36;

}

/* SECTIONS */

section{

padding:100px 8%;

}

section h2{

text-align:center;
font-size:42px;
color:#071b36;
margin-bottom:60px;

}

/* CARDS */

.cards{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;

}

.card{

background:#fff;
padding:35px;
border-radius:20px;
transition:.35s;
box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.card:hover{

transform:translateY(-10px);

}

.card h3{

color:#071b36;
margin-bottom:15px;

}

.card p{

color:#666;

}

/* ==========================================
ÜBER MICH
========================================== */

#ueber{
background:#ffffff;
}

#ueber p{
max-width:900px;
margin:0 auto;
text-align:center;
font-size:18px;
color:#555;
}

/* ==========================================
VORTEILE
========================================== */

.vorteile{
background:#071b36;
}

.vorteile h2{
color:#fff;
}

.vorteile .card{
text-align:center;
}

.vorteile .card h3{
color:#d4af37;
}

/* ==========================================
KONTAKT
========================================== */

#kontakt{
background:#f5f7fb;
}

form{
max-width:700px;
margin:0 auto 40px;
display:flex;
flex-direction:column;
gap:20px;
}

form input,
form textarea{
width:100%;
padding:18px;
border:1px solid #ddd;
border-radius:12px;
font-size:16px;
font-family:'Poppins',sans-serif;
}

form textarea{
min-height:180px;
resize:vertical;
}

form button{
background:#d4af37;
color:#071b36;
border:none;
padding:18px;
border-radius:12px;
font-size:18px;
font-weight:700;
cursor:pointer;
transition:.3s;
}

form button:hover{
transform:translateY(-3px);
}

.kontaktinfo{
text-align:center;
font-size:18px;
}

.kontaktinfo p{
margin:12px 0;
}

/* ==========================================
FOOTER
========================================== */

footer{
background:#071b36;
color:#fff;
text-align:center;
padding:40px 20px;
}

footer a{
color:#d4af37;
text-decoration:none;
margin:0 10px;
}

footer a:hover{
text-decoration:underline;
}

/* ==========================================
ANIMATIONEN
========================================== */

.card,
.hero h1,
.hero p,
.buttons{
animation:fadeUp .8s ease;
}

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(30px);
}
to{
opacity:1;
transform:translateY(0);
}
}

/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:992px){

header{
padding:0 5%;
}

.hero h1{
font-size:42px;
}

.hero p{
font-size:18px;
}

}

@media(max-width:768px){

header{
flex-direction:column;
height:auto;
padding:20px;
}

nav{
flex-wrap:wrap;
justify-content:center;
gap:18px;
margin:15px 0;
}

.hero{
padding-top:120px;
}

.hero h1{
font-size:34px;
}

.hero p{
font-size:17px;
}

.buttons{
flex-direction:column;
align-items:center;
}

.primary,
.secondary{
width:100%;
max-width:320px;
text-align:center;
}

section{
padding:70px 25px;
}

section h2{
font-size:32px;
}

}

@media(max-width:480px){

.logo{
font-size:22px;
}

.hero h1{
font-size:28px;
}

.hero p{
font-size:16px;
}

.card{
padding:25px;
}

}
