/* =========================================
   ZÁKLADNÉ NASTAVENIA A PREMENNÉ
========================================= */
:root {
    --bg-color: #050505;        /* Úplne tmavé pozadie */
    --card-bg: #0B101E;         /* Tmavomodré pozadie kariet */
    --text-main: #E2E8F0;       /* Svetlosivý text */
    --text-muted: #94A3B8;      /* Tlmený text pre odseky */
    --accent-orange: #FF5A1F;   /* Oranžové zvýraznenie */
    --accent-green: #10B981;    /* Zelená pre WhatsApp */
    --border-color: #1E293B;    /* Jemné okraje kariet */
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   TYPOGRAFIA
========================================= */
h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 15px;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* Tlačidlá */
.btn-primary, .btn-whatsapp, .btn-whatsapp-large {
    display: inline-block;
    background-color: var(--accent-green);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-primary:hover, .btn-whatsapp:hover, .btn-whatsapp-large:hover {
    background-color: #059669;
}

/* =========================================
   HLAVIČKA (HEADER)
========================================= */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: rgba(5, 5, 5, 0.9);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

header .logo img {
    height: 40px; /* Prispôsob podľa skutočného loga */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a:hover {
    color: var(--accent-orange);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-switcher a.active {
    color: var(--accent-green);
    font-weight: bold;
}

/* =========================================
   HERO SEKCIA
========================================= */
.hero-section {
    text-align: center;
    padding: 80px 5% 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-section h1 span.orange {
    color: var(--accent-orange);
}
.hero-section h1 span.green {
    color: var(--accent-green);
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.phone-number {
    display: block;
    margin-top: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-main);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.stat strong {
    display: block;
    font-size: 2rem;
    color: var(--accent-orange);
}

.stat span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-image {
    margin-top: 50px;
    border-radius: 20px;
    overflow: hidden;
}

/* =========================================
   SLUŽBY & GRIDY SPOLOČNÉ NASTAVENIA
========================================= */
.services-section, .gallery-section, .advantages-section, .contact-section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
}

.service-card img {
    height: 40px;
    margin-bottom: 20px;
}

/* =========================================
   GALÉRIA
========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

/* =========================================
   VÝHODY
========================================= */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.advantage-item {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--border-color);
}

.advantage-item img {
    height: 30px;
}

.advantage-item h3 {
    margin: 0;
    font-size: 1.1rem;
}

/* =========================================
   KONTAKT
========================================= */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info ul {
    list-style: none;
    margin-top: 30px;
}

.contact-info li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.whatsapp-box {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.map-container img {
    width: 100%;
    border-radius: 15px;
}

/* =========================================
   PÄTIČKA
========================================= */
footer {
    background-color: var(--card-bg);
    padding: 60px 5% 20px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
    color: var(--text-muted);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
}

/* =========================================
   RESPONZIVITA (MOBILES)
========================================= */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-section {
        grid-template-columns: 1fr;
    }
}
/* =========================================
   COOKIE LIŠTA
========================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--card-bg);
    border-top: 1px solid var(--accent-orange);
    padding: 20px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
    display: none; /* Skryté, kým to skript neukáže */
}

.cookie-banner p {
    margin: 0;
    text-align: center;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-cookie-accept {
    background-color: var(--accent-green);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.btn-cookie-accept:hover {
    background-color: #059669;
}

.btn-cookie-decline {
    background-color: transparent;
    color: var(--text-muted);
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid var(--text-muted);
    cursor: pointer;
    transition: 0.3s;
}

.btn-cookie-decline:hover {
    color: white;
    border-color: white;
}

@media (min-width: 768px) {
    .cookie-banner {
        flex-direction: row;
        justify-content: space-between;
    }
    .cookie-banner p {
        text-align: left;
    }
}
