/*
Theme Name: UKPC Modern Tech
Theme URI: https://ukpc.de
Author: ChatGPT
Description: Modernes IT/Tech WordPress Theme mit Hero-Bereich, Navigation und Footer.
Version: 1.0
*/

:root{
    --bg:#0f172a;
    --card:#111827;
    --accent:#06b6d4;
    --text:#f8fafc;
    --muted:#94a3b8;
}

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

body{
    font-family:Arial, Helvetica, sans-serif;
    background:var(--bg);
    color:var(--text);
    line-height:1.6;
}

a{
    color:var(--accent);
    text-decoration:none;
}

header{
    background:#020617;
    padding:20px 40px;
    position:sticky;
    top:0;
    z-index:1000;
    border-bottom:1px solid #1e293b;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:28px;
    font-weight:bold;
    color:white;
}

.menu{
    display:flex;
    gap:25px;
}

.hero{
    min-height:80vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    background:linear-gradient(135deg,#0f172a,#111827,#1e293b);
    padding:40px;
}

.hero h1{
    font-size:58px;
    margin-bottom:20px;
}

.hero p{
    color:var(--muted);
    font-size:20px;
    max-width:700px;
    margin:auto;
}

.btn{
    display:inline-block;
    margin-top:30px;
    padding:14px 28px;
    background:var(--accent);
    color:#000;
    border-radius:10px;
    font-weight:bold;
}

.section{
    padding:80px 20px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
    margin-top:40px;
}

.card{
    background:var(--card);
    border:1px solid #1e293b;
    padding:30px;
    border-radius:18px;
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
    border-color:var(--accent);
}

footer{
    background:#020617;
    padding:40px;
    text-align:center;
    color:var(--muted);
    margin-top:60px;
}
