@import url('style.css');

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: rgb(255, 255, 255);
    color: white;
    background-image: url('/IMAGES/bg.jpg');
    background-attachment: fixed;
    background-size: cover;
}

/* Stil za pozadinu hero, mission i kontakt sekcija */
.background-box {
    background: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 10px;
    max-width: 900px;
    text-align: center;
}

/* Hero sekcija */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px;
}

.hero h1 {
    font-size: 36px;  /* Smanjeno sa 48px */
}

.hero p {
    font-size: 18px;  /* Smanjeno sa 20px */
}

/* Misija i kontakt sekcije */
.mission, .contact {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.mission h2, .contact h2 {
    font-size: 24px;  /* Smanjeno sa 30px */
    margin-bottom: 20px;
}

.mission p, .contact p {
    font-size: 16px;  /* Smanjeno sa 18px */
}

/* Ponuda */
.offer {
    text-align: center;
    padding: 50px 20px;
}

.offer h2 {
    font-size: 30px;  /* Smanjeno sa 36px */
    margin-bottom: 20px;
}

.offer-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.offer-item {
    width: 300px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.offer-item h3 {
    font-size: 18px;  /* Smanjeno sa 24px */
    margin-bottom: 10px;
}

.offer-item p {
    font-size: 14px;  /* Smanjeno sa 18px */
}

/* Kontakt dugme */
.contact-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: rgb(126, 107, 0);
    font-weight: bold;
    border-radius: 8px;
    transition: background 0.3s ease-in-out;
}

.contact-button:hover {
    background-color: rgb(204, 173, 0);
}

