/* Osnovno */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

/* HERO */
.hero {
    background: url('images/banner.jpg') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.hero .btn {
    background-color: #1a237e;
    color: #fff;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.hero .btn:hover {
    background-color: #303f9f;
}

/* O NAMA */
.about {
    padding: 4rem 2rem;
    background-color: #f5f5f5;
    text-align: center;
}

.about h2 {
    color: #1a237e;
    margin-bottom: 2rem;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content img {
    margin-top: 2rem;
    max-width: 100%;
    border-radius: 10px;
}

/* GALERIJA */
.gallery {
    padding: 4rem 2rem;
    text-align: center;
}

.gallery h2 {
    color: #1a237e;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
}

/* USLUGE */
.services {
    padding: 4rem 2rem;
    background-color: #f5f5f5;
    text-align: center;
}

.services h2 {
    color: #1a237e;
    margin-bottom: 2rem;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    width: 250px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* KONTAKT */
.contact {
    padding: 4rem 2rem;
    text-align: center;
}

.contact h2 {
    color: #1a237e;
    margin-bottom: 2rem;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 300px;
}

.contact form input,
.contact form textarea {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact form button {
    padding: 0.8rem;
    border: none;
    background-color: #1a237e;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.contact form button:hover {
    background-color: #303f9f;
}

.contact-info {
    max-width: 300px;
    text-align: left;
}

/* FOOTER */
footer {
    padding: 2rem;
    background-color: #1a237e;
    color: #fff;
    text-align: center;
}
