/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    scroll-behavior: smooth;
}

/* Body */
body {
    background-color: #f4f6f9; /* Lagana pastel pozadina */
    color: #333;
    line-height: 1.6;
}

/* Navigacija */
nav {
    background: #006d77;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

nav h1 {
    font-size: 1.5rem;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Hero sekcija */
.hero {
    background: url('https://images.unsplash.com/photo-1505691723518-36a0f6738a14?auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: #fff;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-text {
    position: relative;
    text-align: center;
    z-index: 2;
}

.hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    background: #83c5be;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #006d77;
}

/* Sekcije */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}

h2 {
    margin-bottom: 15px;
    color: #006d77;
    font-size: 2rem;
}

/* Galerija */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Kontakt */
.contact p {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.map {
    margin-top: 15px;
    border-radius: 8px;
    overflow: hidden;
}

/* Footer */
footer {
    text-align: center;
    background: #006d77;
    color: #fff;
    padding: 15px;
    font-size: 0.9rem;
    margin-top: 30px;
}
