
*{
    margin:0;
    padding:0;
    color: white;
    box-sizing:border-box;
    font-family:'Montserrat', sans-serif;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #111; /* alap sötét háttér */
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: url('https://media.discordapp.net/attachments/1474737562420645960/1483548035324842047/image.png?ex=69bba606&is=69ba5486&hm=df4cd7e53cd65ed2ae036d10993cb4b610f37cfc8966c856b858886515b91869&=&format=webp&quality=lossless&width=234&height=58');
    background-repeat: repeat;
    background-size: 400px; /* nagyobb méret = ritkább ismétlődés */
    opacity: 0.05; /* halvány watermark */
    transform: rotate(-45deg); /* átlós elhelyezés */
    pointer-events: none;
    z-index: -1;
}
/* ===== HERO ===== */

.hero{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
}

.hero h1{
    font-size:70px;
    font-weight:900;
}

.hero h1 span{
    color:#00A651;
    display:inline-block;
    transform:skewX(-10deg);
}

.hero p{
    margin:25px 0;
    font-size:20px;
    color:#ccc;
}

.btn{
    padding:15px 35px;
    border:none;
    cursor:pointer;
    font-weight:bold;
    margin:10px;
    transition:0.3s;
    border-radius:5px;
}

.btn-primary{
    background:#00A651;
    color:#fff;
}

.btn-primary:hover{
    background:#00c764;
}

.btn-outline{
    background:transparent;
    border:2px solid #fff;
    color:#fff;
}

.btn-outline:hover{
    background:#fff;
    color:#000;
}

/* ===== SZEKCIÓK ===== */

section{
    padding:80px 10%;
    text-align:center;
}

.section-title{
    font-size:36px;
    margin-bottom:50px;
    color:#fff;
}

/* ===== SZOLGÁLTATÁSOK ===== */

.services{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
    gap:30px;
}

.card{
    background:#1a1a1a;
    padding:30px;
    border-radius:10px;
    transition:0.3s;
    border:1px solid transparent;
}

.card:hover{
    border:1px solid #00A651;
    transform:translateY(-10px);
}

.card h3{
    margin-bottom:15px;
    color:#00A651;
}

/* ===== KAPCSOLAT ===== */

.contact{
    background:#000;
}

footer{
    padding:30px;
    text-align:center;
    background:#0a0a0a;
    font-size:14px;
    color:#777;
}

/* ===== RESPONSIVE ===== */

@media(max-width:768px){
    .hero h1{
        font-size:40px;
    }
}
