/* Osnovni stil za telo stranice */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #333;
}

/* Glavni sadržaj */
main {
    max-width: 1000px;
    margin: 50px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: fadeIn 0.8s ease-out;
}

/* Profil */
.team-profile {
    padding: 20px;
}

.profile-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

/* Stil slike */
.profile-photo img {
    border-radius: 50%;
    width: 220px;
    height: 220px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

/* Informacije o profilu */
.profile-info {
    max-width: 600px;
    text-align: left;
}

.profile-info h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 10px;
}

.profile-info h2 {
    font-size: 1.4em;
    color: #007bff;
    margin-bottom: 15px;
}

.profile-info p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
}

/* Biografski podaci */
.detailed-bio {
    background-color: #f4f6f9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.1);
    margin-top: 40px;
}

.detailed-bio h3 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}

.detailed-bio p {
    font-size: 1.2em;
    color: #444;
    line-height: 1.8;
}

/* Dugme za povratak */
.back-button {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 25px;
    background: #007bff;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: background 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.back-button:hover {
    background: #0056b3;
    transform: scale(1.1);
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
    }

    .profile-photo img {
        width: 180px;
        height: 180px;
    }

    .profile-info {
        text-align: center;
        max-width: 100%;
    }

    .profile-info h1 {
        font-size: 2em;
    }

    .profile-info h2 {
        font-size: 1.2em;
    }

    .profile-info p {
        font-size: 1em;
    }
}


