:root {
    --primary: #ff6600; /* narandžasta */
    --accent: #0099ff;  /* plava */
    --light-bg: #fdfdfd;
    --dark-text: #ff6600;
    --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; /* desktop centrirano */
    align-items: center;
    padding: 10px 20px;
    background: #000000;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
}

.header-text {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-weight: bold;
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    color: #ff7300;
}

/* optional: adjust nav dropdown so it doesn’t cover the text */
nav ul {
    top: 70px;
}

.header-text {
    display: none;
}

/* mobile only */
@media screen and (max-width:768px){
    .header-text {
        display: block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        color: #ff7300;
        font-weight: bold;
        font-size: 2rem;
        text-align: center;
    }
}

.btn {
    background-color: #ffffff;
    color: #ff6600;
    padding: 12px 28px;
    border: 2px solid #ff6600;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn:hover {
    background-color: #ff6600;
    color: #ffffff;
}

.logo img {
    height: 100px;
    width: 100px;
    margin-right: 20px;
}

/* NAVIGATION */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: var(--accent);
    margin: 0 15px;
    transition: color 0.3s;
}

nav ul li a.active {
    color: var(--hover);
}

nav ul li a:hover {
    color: var(--hover);
}

/* HAMBURGER */
.hamburger {
    display: none; 
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: #fff;
    margin: 4px 0;
    transition: 0.3s;
}

/* HERO */
.hero {
    min-height:25vh;
    display:flex; justify-content:center; align-items:flex-start;
    text-align:center; padding:20px;
}

.hero-content { max-width:700px; margin-top:2px; }

.hero h1 { font-size:3rem; color: var(--primary); margin-bottom:10px; }
.hero p { font-size:1.1rem; margin-bottom:20px; line-height:1.5; }
.hero .btn {
    padding:14px 30px; background: var(--primary); color:#fff; font-weight:600;
    border:none; border-radius:5px; font-size:1rem; cursor:pointer;
    transition: background .3s, transform .3s;
}
.hero .btn:hover { background: var(--accent); transform: scale(1.05); }

/* ABOUT / GALLERY */
.about { padding:40px 20px; text-align:center; line-height:1.6; }
.about h2 { color: var(--accent); font-size:2rem; margin-bottom:15px; }
.about-gallery { 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}
.gallery-item img {
    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;
    border-radius:4px;
    box-shadow:0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item img:hover {
    transform: scale(1.05);
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

/* 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); }

/* FOOTER */
footer { text-align:center; padding:20px 15px; border-top:3px solid var(--primary); font-size:0.9rem; background: white; color: var(--dark-text); }

/* RESPONSIVE */
@media screen and (max-width:768px){
    header {
        justify-content: space-between;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 120px;
        right: 0;
        width: 100%;              /* full width */
        background: #000;
        padding: 15px 0;
    }

    nav ul.show {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        display: block;
        width: 100%;              /* make links stretch */
        padding: 15px;
        margin: 0;
        color: #0099ff;              /* white text for visibility */
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .hero h1 { font-size:2.2rem; }
    .about-gallery { grid-template-columns: 1fr; }
}