* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", system-ui, sans-serif;
}

body {
    height: 100vh;
    overflow: hidden; /* ovo sprecava scroll */
    background: #000;
}

/* MAIN */
.split {
    display: flex;
    height: 100vh;
    position: relative;
    overflow: hidden;
}


/* SIDES */
.side {
    flex: 1;
    position: relative;
    overflow: hidden;
}

/* IMAGES */
.side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;

    /* default state */
    filter: brightness(0.78) blur(5px);
    transform: scale(1.05);

    transition: filter 0.6s ease, transform 0.6s ease;
}

/* ON HOVER – IMAGE COMES INTO FOCUS */
.side:hover img {
    filter: brightness(0.9) blur(0);
    transform: scale(1);
}

/* OVERLAYS – SUBTLE */
.overlay {
    position: absolute;
    inset: 0;
    transition: opacity 0.4s ease;
}

.overlay.blue {
    background: rgba(3, 21, 56, 0.55);
}

.overlay.yellow {
    background: rgba(54, 58, 4, 0.55);

}

/* CONTENT */
.content {
    position: relative;
    z-index: 5;
    color: #f5f5f5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 60px;
    transition: transform 0.4s ease;
}

/* LABEL */
.label {
    letter-spacing: 3px;
    font-size: 16px;
    opacity: 1;
    margin-bottom: 10px;
}

/* HEADLINE */
h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.15;
}

/* PARAGRAPH */
p {
    max-width: 460px;
    font-size: 17px;
    line-height: 1.6;
    opacity: 1;
    margin-bottom: 32px;
    font-weight: 500;
}

/* BUTTON */
.btn {
    padding: 14px 34px;
    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}

.btn:hover {
    background: rgba(255,255,255,0.95);
    color: #111;
}

/* HOVER – VERY SOFT */
.side:hover .overlay {
    opacity: 0.9;
}

.side:hover .content {
    transform: translateY(-8px);
}

/* CENTER LOGO – FIXED */
.center {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 25px;
    border-radius: 18px;
    text-align: center;
    z-index: 10;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.123);
}

.center h2 {
    font-size: 35px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .split {
        flex-direction: column;
    }

    .split::after {
        display: none;
    }

    h1 {
        font-size: 38px;
    }

    .content {
        padding: 40px;
    }

    .center {
        border-radius: 18px;
    }
}


.seo-content {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}