* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
}

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

/* NAVBAR */
header {
    background: #1f2937;
    color: white;
    padding: 15px 0;
}

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

.nav ul {
    list-style: none;
    display: flex;
}

.nav ul li {
    margin-left: 20px;
}

.nav a {
    color: white;
    text-decoration: none;
}

.hero {
    background: url('img/hero.jpg') no-repeat center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
    background-blend-mode: darken;
    background-color: rgba(0,0,0,0.55);
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #f59e0b;
    color: black;
    text-decoration: none;
    font-weight: bold;
}

/* SERVICES */
.services {
    padding: 50px 0;
    text-align: center;
}

.service-grid {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.card {
    flex: 1;
    border: 1px solid #ddd;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card h3 {
    margin-top: 10px;
}

.card p {
    margin-top: auto;
}

/* FEATURES */
.features {
    background: #f3f4f6;
    padding: 50px 0;
}

.features ul {
    margin-top: 20px;
}

/* CTA */
.cta {
    background: #1f2937;
    color: white;
    text-align: center;
    padding: 50px 0;
}

/* FOOTER */
footer {
    background: #111;
    color: white;
    padding: 20px 0;
    text-align: center;
}
.footer-grid {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}

.footer-info {
    flex: 1;
    text-align: left;
}

.footer-map {
    flex: 1;
}

.footer-info a {
    color: #f59e0b;
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
}

.sticky-call {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #f59e0b;
    color: black;
    padding: 15px 20px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 999;
}


@media (min-width: 768px) {
    .sticky-call {
        display: none;
    }
}

/* Mobil nézet */
@media (max-width: 768px) {
    .footer-info {
        text-align: center;
    }
	
    .nav {
        flex-direction: column;
        gap: 10px;
    }

    .nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .nav ul li {
        margin-left: 0;
    }
	
    .hero {
        padding: 60px 15px;
    }

    .hero h2 {
        font-size: 24px;
    }
	
	.service-grid {
        flex-direction: column;
    }

    .card img {
        height: 180px;
    }
	
	.footer-grid {
        flex-direction: column;
        gap: 20px;
    }

    .footer-map iframe {
        height: 200px;
    }
	
	.container {
        width: 95%;
    }

    h2 {
        font-size: 22px;
    }

    p {
        font-size: 15px;
    }
	
	.sticky-call {
        padding: 18px 22px;
        font-size: 16px;
    }
}