/* Resetovanje stilova */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #ff7e5f, #feb47b); /* Srećan gradient pozadine */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
    overflow: hidden;
}

/* Container za animaciju */
#welcome-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8); /* Poluprovidna pozadina */
    text-align: center;
    z-index: 9999;
}

/* Stil za poruku dobrodošlice */
#welcome-message h1 {
    font-size: 3rem;
    font-weight: bold;
    opacity: 0;
    animation: fadeInText 5s forwards;
    animation-delay: 2s; /* Prva linija sa kratkim zakašnjenjem */
}

#welcome-message p {
    font-size: 1.2rem;
    margin-top: 10px;
    opacity: 0;
    animation: fadeInText 5s forwards;
}

/* Dodajemo delay za svaku liniju */
#welcome-message p:nth-of-type(1) {
    animation-delay: 4s; /* Druga linija */
}

#welcome-message p:nth-of-type(2) {
    animation-delay: 6s; /* Treća linija */
}

#welcome-message p:nth-of-type(3) {
    animation-delay: 8s; /* Četvrta linija */
}

/* Animacija za fade-in efekat */
@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stil za link */
a {
    color: #ffeb3b; /* Svetlo žuta boja */
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Generalna podešavanja za slike, tekst i layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* Navigacija */
header {
    background-color: #333;
    padding: 10px 0;
}

header nav ul {
    display: flex;
    justify-content: center;
    gap: 30px;
}

header nav ul li a {
    color: white;
    font-weight: bold;
    font-size: 18px;
}

header nav ul li a:hover {
    color: #feb47b;
}

/* Sekcija O nama */
#about-us {
    padding: 50px 0;
    background-color: #fff;
}

#about-us .container {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

#about-us h1 {
    font-size: 2.5rem;
    color: #333;
}

#about-us p {
    font-size: 1.2rem;
    color: #666;
    margin-top: 20px;
}

/* Sekcija Naš Tim */
#team {
    background-color: #feb47b;
    padding: 50px 0;
}

#team .container {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

#team .team-members {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

#team .team-member {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

#team .team-member:hover {
    transform: scale(1.05);
}

#team .team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #feb47b; /* Dodajemo border oko slika */
}

#team .team-member p {
    font-size: 1rem;
    color: #333;
    font-weight: bold;
}

#team .team-member a {
    color: #333;
    text-decoration: none;
}

#team .team-member a:hover {
    color: #feb47b;
}

/* Footer */
footer {
    text-align: center;
    background-color: #333;
    color: white;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}
