/* --- RESET & ZÁKLAD --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow: hidden; /* Zabrání scrollování na desktopu */
    background: #111;
}

/* --- HLAVNÍ KONTEJNER --- */
.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
}

/* --- DLAŽDICE (SPOLEČNÉ STYLY) --- */
.split {
    position: relative;
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    cursor: pointer;
}

/* Pozadí (Obrázky) */
.split::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

/* Zmavovací vrstva pro lepší čitelnost textu */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    transition: background 0.3s ease;
}

/* Obsah (Texty) */
.content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 80%;
    padding: 2rem;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(5px); /* Efekt matného skla */
    transition: transform 0.3s ease;
}

h2 {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}

p {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border: 2px solid white;
    text-transform: uppercase;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
}

/* --- LEVÁ STRANA (AKTIVNÍ - ELEKTRO) --- */
.split.left::before {
    /* Zde vlož URL obrázku pro elektro/stavbu */
    background-image: url('https://images.unsplash.com/photo-1618090584126-129cd1f3fbae?q=80&w=963&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop'); 
}

.split.left:hover::before {
    transform: scale(1.1); /* Zoom efekt na pozadí */
}

.split.left:hover .overlay {
    background: rgba(0, 0, 0, 0.2); /* Světlejší při najetí */
}

.split.left .btn:hover {
    background: white;
    color: #333;
}

/* --- PRAVÁ STRANA (NEAKTIVNÍ - DOPRAVA) --- */
.split.right {
    cursor: not-allowed; /* Kurzor zákazu */
    user-select: none;
}

.split.right::before {
    /* Zde vlož URL obrázku dodávky */
    background-image: url('https://images.unsplash.com/photo-1742858492775-8f58f645aa12?q=80&w=1740&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop'); 
    filter: grayscale(100%); /* Černobílý filtr */
    opacity: 0.6; /* Lehce průhledné */
}

.split.right .content {
    border-color: rgba(255,255,255,0.1);
    color: #aaa;
}

.badge-coming-soon {
    background: #444;
    color: #fff;
    padding: 5px 15px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
}

/* --- RESPONZIVITA (MOBIL) --- */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .split {
        width: 100%;
        height: 50%;
    }
    h2 {
        font-size: 2rem;
    }
    .content {
        padding: 1rem;
    }
}