/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a3a56, #003366); /* Tamna plava gradijent */
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    margin: 0;
}

.container {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 40px;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

header {
    margin-bottom: 20px;
}

h1 {
    font-size: 3em;
    color: #003366; /* Tamna plava boja */
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

p {
    font-size: 1.2em;
    color: #555;
}

section {
    margin-bottom: 30px;
}

h2 {
    font-size: 2em;
    color: #003366; /* Tamna plava boja */
    margin-bottom: 10px;
}

h3 {
    font-size: 1.6em;
    color: #333;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 10px;
}

.contact-info a {
    color: #003366; /* Tamna plava boja */
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    color: #005577; /* Svjetlija nijansa plave za hover */
    text-decoration: underline;
}

/* Button Style */
.contact-info a {
    display: inline-block;


    border-radius: 5px;
    transition: background-color 0.3s ease;
}

img{
	width:100%;
	height: 300px;
	object-fit:cover;
	border-radius:15px;
	margin-bottom:10px;
}



/* Responsive Design */
@media (max-width: 768px) {
	body {
		margin:15px;
	}
    h1 {
        font-size: 2.5em;
    }
    h2 {
        font-size: 1.8em;
    }
    .container {
        padding: 20px;
    }
	img{
		height:200px;
	}
}
