/* Resetiranje osnovnih postavki */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Pozadinska slika s tamnim slojem radi čitljivosti teksta */
body {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('pozadina.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    color: #ffffff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

/* Glavni kontejner */
.container {
    max-width: 600px;
    width: 100%;
}

/* Logo */
.logo {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.logo i {
    color: #00d2ff;
}

/* Naslov i tekst */
h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Sjena za još bolju čitljivost */
}

p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Newsletter Forma */
.newsletter-form {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 10px;
}

.newsletter-form input {
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    width: 70%;
    font-size: 1rem;
    outline: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.newsletter-form button {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    background-color: #00d2ff;
    color: #1e3c72;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.newsletter-form button:hover {
    background-color: #00a8cc;
}

/* Ikone društvenih mreža */
.social-links a {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.social-links a:hover {
    color: #00d2ff;
}

/* Prilagodba za mobitele */
@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form input, 
    .newsletter-form button {
        width: 100%;
    }
}
