* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lora', serif;
    /*letter-spacing: 0px;*/
}




body {
    margin: 0;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* rozmazané pozadie */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    filter: blur(3px);      /* tu meníš silu rozmazania */
    transform: scale(1.05); /* aby nebolo vidno okraje po blur */
    z-index: -1;
}


.hero {
    display: flex;
    height: 90vh;
}

















/* ĽAVÁ STRANA */
.section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
    text-align: center;
    transition: 0.4s;
}

.section h2 {
    font-size: 52px;
    margin-bottom: 20px;
    letter-spacing: 0px;

    font-weight: 900;
    background: linear-gradient(
        to bottom,
        #8a6b54 0%,
        #886951 50%,
        #6b4f3a 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 8px rgba(255, 250, 240, 0.2);
}


.section p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;

    font-weight: 900;
    background: linear-gradient(
        to bottom,
        #8a6b54 0%,
        #886951 50%,
        #6b4f3a 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 8px rgba(255, 250, 240, 0.2);
}






.h2-div {
    position: relative;
    display: inline-block;       /* šírka presne podľa textu */
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    margin: 0 0 35px 0;          /* medzera pod h2 */
    text-align: center;
}

.h2-div::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -20px;
    height: 2px;
    
    
    /*background: linear-gradient(
        to right,
        rgba(252,252,247,0) 0%,   
        #fcfcf7 10%,              
        #f3ebe4 40%,              
        #ead5cb 50%,              
        #f3ebe4 60%,              
        #fcfcf7 90%,              
        rgba(252,252,247,0) 100%
    );*/
    background: linear-gradient(
        to right,
        rgba(107,79,58,0) 0%,
        #e6d5c8 15%,
        #8a6a54 45%,
        #6b4f3a 50%,
        #8a6a54 55%,
        #e6d5c8 85%,
        rgba(107,79,58,0) 100%
    );

    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border-radius: 2px;
}





/* Štýl jednotlivých polovíc */
/*.hair {
    background: #ffffff;
}

.cosmetics {
    background: #fdf7f2;
}*/

/* Jemná deliaca čiara */
/*.divider {
    width: 2px;
    background: linear-gradient(to bottom, transparent, #ddd, transparent);
}*/

.divider {
    width: 2px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(240,100,122,0.4),
        transparent
    );
    background-size: 100% 200%;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% 0%; }
    100% { background-position: 0% 200%; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
    }

    .divider {
        width: 100%;
        height: 2px;
    }

    .section h2 {
        font-size: 36px;
    }
}