:root {
    --primary: #ff6600; /* narandžasta */
    --accent: #0099ff;  /* plava */
    --light-bg: #fdfdfd;
    --dark-text: #333333;
    --dark-element: rgba(0,0,0,0.05);
    --hover: #ff7300;
}

/* Reset */
* { margin:0; padding:0; box-sizing:border-box; }

body {
    font-family: Arial, sans-serif; 
    background: var(--light-bg); 
    color: var(--dark-text);
    padding-top: 120px; /* adjust depending on your header height */
}

/* HEADER + NAV */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    background: #000000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header-text {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #ff7300;
    font-weight: bold;
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
}

/* logo */
.logo img {
    height: 100px;
    width: 100px;
    margin-right: 20px;
}

/* Desktop navigation */
nav ul {
    display: flex;
    list-style: none;
    flex-direction: row; /* horizontal for desktop */
    margin: 0;
    padding: 0;
}

nav ul li {
    width: auto;
}

nav ul li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #0099ff;
    font-weight: bold;
    transition: color 0.3s;
    text-align: center;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--hover);
}

/* HAMBURGER */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger span {
    height: 3px;
    width: 25px;
    background: #fff;
    margin: 4px 0;
    transition: 0.3s;
}

/* HERO */
.hero {
    min-height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
}

.hero h1 { font-size: 3rem; color: var(--primary); margin-bottom: 20px; }
.hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto; line-height: 1.6; }

/* CLIMATE SERVICES */
.climate-services {
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.climate-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.climate-block.right { align-items: flex-end; text-align: right; }

.climate-block .text h2 {
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.climate-block .text p {
    font-size: 1rem;
    line-height: 1.5;
}

.climate-block .image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* CTA */
.cta { text-align:center; background: var(--primary); color:#fff; padding:60px 20px; margin-top:40px; }
.cta h2 { font-size:2rem; margin-bottom:15px; }
.cta p { font-size:1rem; max-width:650px; margin:0 auto 20px; line-height:1.5; }
.cta a { display:inline-block; background:#fff; color: var(--primary); padding:12px 28px; text-decoration:none; font-weight:600; border-radius:5px; transition:.3s; }
.cta a:hover { background: var(--accent); color:#fff; transform: scale(1.05); }

/* RESPONSIVE */
@media screen and (max-width: 768px) {
    header { justify-content: space-between; }

    .header-text { display: block; }

    nav ul {
        flex-direction: column; /* vertical links on mobile */
        width: 100%;
        background: #000;
        position: absolute;
        top: 120px;
        right: 0;
        display: none;
        padding: 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    nav ul.show { display: flex; }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        display: block;
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        color: #0099ff;
        text-align: center;
    }

    .burger { display: flex; }

    .hero h1 { font-size: 2.2rem; }
    .climate-block, .climate-block.right { align-items: center; text-align: center; }
    .climate-block .image img { max-width: 90%; }
}