/* ============================================================
   SHEZMU PARFUMERY — STYLY TITULNÍ STRANY
   <link href="/user/documents/upload/shezmu-home.css" rel="stylesheet">
   Vkládat jen na úvodní stránku.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap');

.sh-hero {
    width: 100%;
    background: #ffffff;
    padding: 0;
    margin: 0 auto;
    max-width: 1240px;
}

/* ── Logo ── */

.sh-logo {
    text-align: center;
    padding: 1rem 1.5rem 2.4rem;
}

.sh-logo img {
    max-width: 300px;
    width: 62%;
    height: auto;
    display: inline-block;
}

/* ── Dlaždice ── */

.sh-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 0 28px;
}

.sh-tile {
    position: relative;
    display: block;
    aspect-ratio: 1200 / 1490;
    overflow: hidden;
    text-decoration: none !important;
    background: #f0e9dd;
    border-radius: 22px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.14);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.sh-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.20);
}

.sh-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.sh-tile:hover img {
    transform: scale(1.04);
}

.sh-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.sh-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 55%;
    pointer-events: none;
    z-index: 2;
}

.sh-fade--dark {
    background: linear-gradient(to top, rgba(15,10,6,0.82), rgba(15,10,6,0));
}

.sh-fade--pink {
    background: linear-gradient(to top, rgba(120,20,60,0.6), rgba(120,20,60,0));
}

/* ── Tlačítko ── */

.sh-btn-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 32px;
    text-align: center;
    padding: 0 14px;
    z-index: 3;
}

.sh-btn {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 400;
    padding: 15px 26px;
    border-radius: 999px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.sh-tile:hover .sh-btn {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.22);
}

.sh-btn--light {
    color: #2a2118;
    background: #f2e6cc;
    border: 1px solid #e6d3a8;
}

.sh-tile:hover .sh-btn--light {
    background: #ffffff;
}

.sh-btn--pink {
    color: #ffffff;
    background: #d4547f;
    border: 1px solid #e585a8;
}

.sh-tile:hover .sh-btn--pink {
    background: #c14f7d;
}

/* ── Claim ── */

.sh-claim {
    text-align: center;
    padding: 3.2rem 1.5rem 4rem;
}

.sh-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0 auto 1.9rem;
}

.sh-line {
    display: block;
    width: 44px;
    height: 1px;
    background: #d8c9a4;
}

.sh-diamond {
    display: block;
    width: 6px;
    height: 6px;
    border: 1px solid #c9b585;
    transform: rotate(45deg);
}

.sh-claim-text {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 300;
    color: #1c1a17;
    margin: 0;
    line-height: 1.5;
}

/* ── Mobil ── */

@media (max-width: 767px) {

    .sh-logo {
        padding: 0.6rem 1.2rem 1.8rem;
    }

    .sh-logo img {
        max-width: 220px;
        width: 68%;
    }

    .sh-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 16px;
    }

    .sh-tile {
        border-radius: 18px;
    }

    .sh-btn-wrap {
        bottom: 26px;
    }

    .sh-btn {
        font-size: 11px;
        letter-spacing: 0.12em;
        padding: 13px 20px;
    }

    .sh-claim {
        padding: 2.6rem 1.2rem 3rem;
    }

    .sh-claim-text {
        font-size: 19px;
        letter-spacing: 0.2em;
        line-height: 1.6;
    }
}
