/* Osnovna podešavanja */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fcfbfa; /* Nežna bež bela pozadina */
    color: #2d2b2a; /* Tamno sivi tekst, moderniji od čisto crnog */
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigacija */
header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e4dc;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1a1a1a;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #5c5755;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #1a1a1a;
}

/* Hero Sekcija */
.hero {
    background-color: #f5f2eb; /* Nešto tamnija bež za kontrast */
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 18px;
    color: #6e6764;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.btn {
    display: inline-block;
    background-color: #2d2b2a;
    color: #ffffff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #4a4745;
}

.btn-outline {
    background-color: transparent;
    color: #2d2b2a;
    border: 1px solid #2d2b2a;
    margin-top: 15px;
}

.btn-outline:hover {
    background-color: #2d2b2a;
    color: #fff;
}

/* Sekcije Proizvoda */
.products-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    position: relative;
}

.product-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
    gap: 40px;
}

/* Triks za cik-cak raspored slika i teksta */
.product-row.reverse {
    flex-direction: row-reverse;
}

.product-text {
    flex: 1;
}

.category-tag {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #e8e4dc;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-text h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.product-text p {
    color: #5c5755;
}

.product-image {
    flex: 1;
    background-color: #f5f2eb;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-image img:hover {
    transform: scale(1.03);
}

/* Kontakt Sekcija */
.contact-section {
    background-color: #f5f2eb;
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 40px;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.map-container {
    flex: 1.2;
}

.map-container iframe {
    border-radius: 6px;
}

.map-link-backup {
    text-align: center;
}

.contact-info {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 25px;
    color: #5c5755;
}

.info-item {
    margin-bottom: 20px;
}

.info-item strong {
    display: block;
    font-size: 14px;
    color: #8c8581;
    text-transform: uppercase;
}

.info-item a, .info-item span {
    font-size: 18px;
    color: #2d2b2a;
    text-decoration: none;
    font-weight: 600;
}

.info-item a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #2d2b2a;
    color: #e8e4dc;
    text-align: center;
    padding: 30px 0;
    font-size: 14px;
}

/* Prilagođavanje za mobilne telefone (Responsive) */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .product-row, .product-row.reverse {
        flex-direction: column-reverse;
        text-align: center;
        gap: 20px;
    }
    
    .contact-grid {
        flex-direction: column;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
}