/* ===== ALAPBEÁLLÍTÁSOK ===== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0b1220;
    color:#ffffff;
    line-height:1.6;
}

/* ===== NAVBAR ===== */

.navbar{
    position:fixed;
    top:0;
    width:100%;
    padding:18px 8%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 8%;

    background:rgba(7,12,22,.95);
    backdrop-filter:blur(10px);

    border-bottom:1px solid rgba(59,130,246,.15);

    z-index:1000;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width: 70px;
    height:70px;
    border-radius:50%;
}

.logo span{
    font-size:28px;
    font-weight:700;
    color:#3b82f6;
}

.navbar ul{
    display:flex;
    list-style:none;
    gap:40px;
}

.navbar a{
    text-decoration:none;
    color:white;
    font-weight:500;
    transition:.3s;
}

.navbar a:hover{
    color:#3b82f6;
}

/* ===== HERO ===== */

.hero{

    min-height:100vh;

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:60px;

    padding:120px 8%;

    position:relative;

    overflow:hidden;
}

.hero::before{

    content:'';

    position:absolute;

    width:700px;
    height:700px;

    right:-200px;
    top:-100px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(59,130,246,.18),
        transparent 70%
    );

    pointer-events:none;
}

.hero-badge{

    display:inline-block;

    padding:8px 18px;

    border:1px solid rgba(59,130,246,.3);

    border-radius:999px;

    color:#60a5fa;

    margin-bottom:25px;

    font-size:14px;

    letter-spacing:1px;
}

.hero-content{
    max-width:650px;
    position:relative;
    z-index:2;
}

.hero-content h1{

    font-size:78px;

    line-height:1.05;

    margin-bottom:25px;
}

.hero-content p{

    font-size:20px;

    color:#c4cfdf;

    margin-bottom:15px;
}

.hero-visual{

    display:flex;

    justify-content:center;

    position:relative;
    z-index:2;
}

.hero-image-box{

    width:100%;
    max-width:700px;

    border-radius:30px;

    overflow:hidden;

    background:#111827;

    border:1px solid rgba(59,130,246,.15);

    box-shadow:
        0 0 60px rgba(59,130,246,.18);
}

.hero-image-box img{

    width:100%;

    display:block;

    object-fit:cover;
}

.hero-buttons{
    gap:16px;
    margin-top:35px;
}

.hero-buttons a{

    padding: 15px 30px;

    width:100%;

}

.btn-primary,
.btn-secondary{

    font-size:16px;

    padding:15px 35px;

    border-radius:12px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.btn-primary{

    background:linear-gradient(
        135deg,
        #2563eb,
        #3b82f6
    );

    margin-right: 5px;

    color:white;

    box-shadow:
        0 10px 25px rgba(59,130,246,.25);
}

.btn-primary:hover{

    background:#3b82f6;

    transform:translateY(-3px);
}

.btn-secondary{
    
    border:2px solid #2563eb;
    color:#3b82f6;
}

.btn-secondary:hover{

    background:#2563eb;
    color:white;
}

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

section{
    padding:70px 6%;
}

.section-title{

    text-align:center;

    font-size:clamp(24px,5vw,38px);

    margin-bottom:60px;

    position:relative;
}

.section-title::after{

    content:'';

    width:80px;
    height:4px;

    background:#3b82f6;

    position:absolute;

    bottom:-15px;
    left:50%;

    transform:translateX(-50%);
}

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

.services-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

    gap:25px;
}

.service-card{

    background:#111827;

    border:1px solid rgba(59,130,246,.08);

    border-radius:24px;

    padding:35px 25px;

    text-align:center;

    transition:.35s;
}

.service-card:hover{

    transform:translateY(-10px);

    border-color:#3b82f6;

    box-shadow:
        0 20px 40px rgba(59,130,246,.15);
}

.icon{

    font-size:52px;

    margin-bottom:20px;
}

.service-card h3{

    font-size:24px;

    margin-bottom:15px;
}

.service-card p{

    color:#c4cfdf;

    margin-bottom:25px;
}


/* ===== MIÉRT PC DOC ===== */

.why-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:30px;
}

.why-card{

    text-align:center;

    padding:30px;
}

.why-card h3{

    font-size:50px;

    margin-bottom:15px;
}

.why-card h4{

    font-size:24px;

    margin-bottom:15px;
}

.why-card p{

    color:#c4cfdf;
}

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

.contact{
    padding:100px 8%;
    background:#0b1220;
}

.contact-container{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:60px;
    align-items:stretch;
}

/* Bal oldal */

.contact-info{
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:25px;
}

.contact-info p{

    font-size:22px;

    line-height:1.7;

    color:#ffffff;

}

.contact-info a{

    color:#3b82f6;

    text-decoration:none;

    transition:.3s;

}

.contact-info a:hover{

    color:#60a5fa;

    text-decoration:underline;

}

/* Google Térkép */

.map{
    border-radius:20px;
    overflow:hidden;
    border:1px solid rgba(59,130,246,.2);
    height:100%;
    min-height:360px;
}

.map iframe{
    width:100%;
    height:100%;
    border:0;
}

/*==================================================
                RESZPONZÍV
==================================================*/

@media(max-width:900px){

    .contact-container{
        grid-template-columns:1fr;
    }

    .contact-info{
        text-align:center;
    }

    .contact-info p{

        font-size:20px;

    }

    .map iframe{

        height:350px;

    }
}

@media(max-width:768px){

    .hero-buttons{
        flex-direction:column;
        align-items:center;
        gap:15px;
    }

    .hero-buttons a{
        width:220px;
    }

    .contact{

        padding:80px 6%;

    }

    .contact-info p{

        font-size:18px;

    }

    .map iframe{

        height:300px;

    }

}
/* ===== FOOTER ===== */

footer{

    text-align:center;

    padding:35px;

    border-top:
    1px solid rgba(255,255,255,.08);

    color:#a0aabc;
}

/* ===== RESZPONZÍV ===== */

@media(max-width:1100px){

    .hero{

        grid-template-columns:1fr;

        text-align:center;
    }

    .hero-content p{

        margin-left:auto;
        margin-right:auto;
    }

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

    .hero-content h2{
        font-size:32px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .contact-container{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .navbar{

        flex-direction:column;

        height:auto;

        padding:20px;
    }

    .navbar ul{

        margin-top:15px;

        gap:20px;

        flex-wrap:wrap;

        justify-content:center;
    }

    .hero{

        font-size:46px;
        line-height:1.15;

        padding-top:180px;
    }

    .hero-content h1{

        font-size:48px;

        line-height:1.15;

    }

    .hero-content h2{
        font-size:26px;
    }

    .hero-content p{
        font-size:18px;
    }

    .section-title{
        font-size:25px;
    }

    .gallery-prev{
        left:15px;
    }

    .gallery-next{
        right:15px;
    }
}

.service-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    margin-top:20px;

    padding:14px 28px;

    border-radius:12px;

    background:#2563eb;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.service-btn:hover{

    background:#3b82f6;

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(37,99,235,.3);

}
