/* Globalni reset i box-sizing */
html, body, *, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Tjelesni tekst */
body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Container styling */
.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

/* Hero section with WebP Background */
.hero {
    background-image: url('../images/cyber-hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

/* Hero tekst */
.hero-text h2 {
    font-size: 3rem;
    font-weight: 700;
}

/* General Section */
.section {
    padding: 50px 0;
    text-align: center;
}

.section h2 {
    font-size: 2rem;
    font-weight: 700;
}

.section p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Footer styling */
footer {
    background: #0a0a23;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Responsivnost */
@media (max-width: 768px) {
    .hero-text h2 {
        font-size: 2.5rem;
    }
}
