* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
}

h1, h2, h3 {
    font-family: 'Lora', serif;
    margin-bottom: 20px;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
    text-align: center;
}

.bg-light {
    background: #f9f6f2;
}

/* Navigacija */
nav {
    background: #2d4231; /* Temno zelena */
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
}

/* Hero sekcija */
header {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('ozadje.png');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
}

.btn {
    display: inline-block;
    background: #8c6239; /* Rjava */
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: 0.3s;
}

.btn:hover {
    background: #6d4c2c;
}

/* Ponudba Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Footer */
footer {
    background: #2d4231;
    color: white;
    text-align: center;
    padding: 20px 0;
}

/* Mobilna prilagoditev */
@media (max-width: 768px) {
    nav .container {
        flex-direction: column;
    }
    nav ul {
        margin-top: 15px;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
}
