﻿body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    background: linear-gradient(rgba(0, 123, 255, 0.8), rgba(0, 123, 255, 0.8)), url('https://thumbs.dreamstime.com/b/abstract-design-website-hero-section-background-features-vibrant-blue-fluid-lines-geometric-shapes-circles-351935047.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 150px 0;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.section {
    padding: 80px 0;
    text-align: center;
}

.section:nth-child(even) {
    background: #ffffff;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #007bff;
}

.btn {
    display: inline-block;
    background: #ffffff;
    color: #007bff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn:hover {
    background: #e9ecef;
    transform: translateY(-3px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.service-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 1.4rem;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #e0e0e0;
    background: #121212;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://thumbs.dreamstime.com/b/abstract-design-website-hero-section-background-features-vibrant-blue-fluid-lines-geometric-shapes-circles-351935047.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 160px 0;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.6rem;
    margin-bottom: 40px;
}

.section {
    padding: 100px 0;
    text-align: center;
}

.section:nth-child(even) {
    background: #1e1e1e;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: #4da6ff;
}

.btn {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px; /* Less rounded */
    font-weight: 600;
    transition: all 0.3s;
}

.btn:hover {
    background: #0056b3;
    transform: translateY(-3px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

.service-item img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 25px;
    filter: brightness(1.2); /* Better visibility on dark bg */
}

.service-item h3 {
    font-size: 1.5rem;
    color: #ffffff;
}

form {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    background: #2c2c2c;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

input, textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0 25px;
    border: 1px solid #444;
    border-radius: 8px;
    background: #333;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.g-recaptcha {
    margin: 20px 0;
}

button.btn {
    width: 100%;
    background: #007bff;
}

button.btn:hover {
    background: #0056b3;
}

#form-message {
    margin-top: 20px;
    text-align: center;
}

footer {
    background: #0a0a0a;
    color: #aaa;
    text-align: center;
    padding: 40px 0;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.8rem; }
    .hero p { font-size: 1.3rem; }
}body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #e0e0e0;
    background: #121212;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://thumbs.dreamstime.com/b/abstract-design-website-hero-section-background-features-vibrant-blue-fluid-lines-geometric-shapes-circles-351935047.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 120px 20px; /* Smanjeno padding za mobilne */
}

.hero h1 {
    font-size: clamp(2rem, 8vw, 3.8rem); /* Fluidna veličina fonta */
    margin-bottom: 15px;
}

.hero p {
    font-size: clamp(1rem, 4vw, 1.6rem);
    margin-bottom: 30px;
}

.section {
    padding: clamp(40px, 10vw, 100px) 20px; /* Prilagodljivo padding */
    text-align: center;
}

.section:nth-child(even) {
    background: #1e1e1e;
}

h2 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    margin-bottom: clamp(20px, 5vw, 50px);
    color: #4da6ff;
}

.btn {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: clamp(10px, 2vw, 14px) clamp(20px, 3vw, 32px);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    font-size: clamp(0.9rem, 3vw, 1rem);
}

.btn:hover {
    background: #0056b3;
    transform: translateY(-3px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(20px, 5vw, 50px);
}

.service-item img {
    width: clamp(80px, 20vw, 120px);
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.service-item h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #ffffff;
}

form {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    background: #2c2c2c;
    padding: clamp(20px, 5vw, 50px);
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

input, textarea {
    width: 100%;
    padding: clamp(10px, 2vw, 15px);
    margin: 10px 0 20px;
    border: 1px solid #444;
    border-radius: 8px;
    background: #333;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.g-recaptcha {
    margin: 20px 0;
    transform: scale(0.9); /* Skaliranje reCAPTCHA za male ekrane */
    transform-origin: 0 0;
}

button.btn {
    width: 100%;
    padding: clamp(12px, 3vw, 14px);
}

#form-message {
    margin-top: 20px;
    text-align: center;
}

footer {
    background: #0a0a0a;
    color: #aaa;
    text-align: center;
    padding: clamp(20px, 5vw, 40px) 20px;
}

/* Napredni media queries za bolju responsivnost */
@media (max-width: 768px) {
    .hero {
        padding: 80px 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr; /* Jedan stupac na mobilnom */
    }
    
    form {
        padding: 30px 15px;
    }
    
    .g-recaptcha {
        transform: scale(0.85);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    input, textarea {
        font-size: 0.9rem;
    }
}

/* Dodatno: Fleksibilni elementi */
img {
    max-width: 100%;
    height: auto;
}

* {
    box-sizing: border-box;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #e0e0e0;
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
    z-index: 1000;
    display: none; /* Početno skriveno, JS ga prikaže ako treba */
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
    font-size: 0.9rem;
}

.cookie-content a {
    color: #4da6ff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    background: #007bff;
}

.cookie-btn-accept:hover {
    background: #0056b3;
}

.cookie-btn-reject {
    background: #444;
}

.cookie-btn-reject:hover {
    background: #333;
}

.cookie-btn-settings {
    background: transparent;
    color: #aaa;
    border: 1px solid #aaa;
}

.cookie-btn-settings:hover {
    color: #fff;
    border-color: #fff;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.address {
    margin: 0;
    font-size: 0.9rem;
    color: #888;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}