/* Ako vznika list */

/* 1. ZÁKLADNÝ FIX PRE CELÚ STRÁNKU */
body {
    overflow-x: hidden;
    width: 100%;
}

.sub-title {
	font-size: 24px;
    color: #2a1000 !important;
      
  }
.title-emotion {
    margin-top: 30px;
    margin-bottom: 30px;
    color: #2a1000 !important;
}
.step-content {
    font-size: 1.1rem;
    color: #5d3f27;
}
.text {
    font-size: 1.0rem;
    color: #5d3f27;
}
.breadcrumb {
	margin-bottom: 0 !important;
}

/* 2. HLAVNÝ KONTAJNER */
.design-v3 {
    display: block;
    width: 100%;
    background-color: #f4ece6; /* Piesková farba z vizuálu */
}

.italic {
    font-style: italic !important;
}
/* 3. ROZTIAHNUTIE BLOKOV (Full-width fix) */
.design-v3 .block-v3 {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    display: flex !important;
    align-items: center;
    clear: both;
    border: none;
}


/* 4. PREKRYTIE (Gradienty a striedanie strán) */
.design-v3 .block-overlay {
    width: 100%;
    min-height: 350px;
    display: flex !important;
    align-items: center;
}

/* Zarovnanie vľavo */
.left-align {
    justify-content: flex-start !important;
}

/* Zarovnanie vpravo */
.right-align {
    justify-content: flex-end !important;
}

.center-align {
    justify-content: center !important;
}

/* Hero sekcia (tmavá) */
.design-v3 .hero-v3 .block-overlay {
    /*background: linear-gradient(to right, rgba(42,16,0,0.8) 20%, rgba(42,16,0,0) 90%);*/
}

/* 5. VNÚTORNÝ OBSAH (Container fix) */
.design-v3 .container-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex !important;
}

.design-v3 .right-align .container-inner {
    justify-content: flex-end !important;
}

.design-v3 .block-content {
    max-width: 500px;
    text-align: left !important;
}

/* 6. GRAFIKA TLAČIDIEL (Vynútená) */
.design-v3 .btn-pill {
    display: inline-block !important;
    margin-bottom: 10px !important;
    padding: 15px 45px !important;
    background-color: var(--global-palette3);
    color: #d9c5b2 !important;
    border-radius: 50px !important;
    text-decoration: none !important;
  	font-size: 20px;
    font-style: normal !important;
    font-weight: bold !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
    transition: all 0.3s ease !important;
    border: none !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.design-v3 .btn-pill:hover {
    background-color: #d2b08d !important;
    color: #2a1000 !important;
    transform: translateY(-3px) !important;
}

.mt-4 {
  margin-top: 5px !important;
  }

/* 7. ČÍSLOVANIE V KRÚŽKOCH A ZOZNAMY */
.design-v3 .steps-v3 {
    list-style: none !important;
    padding: 0 !important;
    margin: 20px 0 !important;
}

.design-v3 .steps-v3 li {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 10px !important;
    font-style: italic;
    color: #5d3f27;
    text-align: left;
}

.design-v3 .steps-v3 span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    border: 1px solid #2a1000 !important;
    border-radius: 50% !important;
    margin-right: 15px !important;
    font-style: normal !important;
    font-size: 0.9rem !important;
    flex-shrink: 0 !important;
}
/* Pridanie deliacej linky medzi bloky */
.design-v3 .block-v3:not(:last-child) {
    border-bottom: 1px solid rgba(42, 16, 0, 0.1) !important;
}

/* Ak chcete "strácajúcu sa" linku (viac umelecké): */
.design-v3 .block-v3:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(42, 16, 0, 0.15), transparent);
}
/* 8. RESPONZIVITA (Mobil) */
@media (max-width: 991px) {
    .design-v3 .block-overlay {
        background: rgba(244,236,230,0.8) !important;
        padding: 60px 20px !important;
    }
    .design-v3 .container-inner, 
    .design-v3 .right-align .container-inner {
        justify-content: center !important;
    }
    .design-v3 .block-content {
        text-align: center !important;
        max-width: 100%;
    }
}
