/* =========================================
   SASHA PURE - HOME
========================================= */

.sasha-home {
    width: 100%;
    overflow: hidden;
}


/* =========================================
   HERO
========================================= */

.sasha-hero {
    display: grid;
    grid-template-columns: 42% 58%;
    width: 100%;
    min-height: 720px;
    background: #7251a2;
}


/* =========================================
   HERO - LEWA STRONA
========================================= */

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 70px 6.5vw;

    color: #ffffff;
    background: #7251a2;
}

.hero-label {
    display: block;

    margin-bottom: 24px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 0 0 28px;

    color: #ffffff;

    font-size: clamp(44px, 4.2vw, 70px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -2px;
}

.hero-copy p {
    max-width: 520px;

    margin: 0;

    color: rgba(255, 255, 255, 0.94);

    font-size: 18px;
    line-height: 1.7;
}


/* =========================================
   HERO - BUTTONS
========================================= */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 38px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 28px;

    border: 1px solid transparent;

    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


/* GŁÓWNY PRZYCISK */

.hero-btn-primary {
    background: #ffffff;
    color: #65438e;
}

.hero-btn-primary:hover {
    background: #d4da23;
    color: #38244f;

    transform: translateY(-2px);
}


/* DRUGI PRZYCISK */

.hero-btn-secondary {
    border-color: rgba(255, 255, 255, 0.75);

    background: transparent;
    color: #ffffff;
}

.hero-btn-secondary:hover {
    border-color: #ffffff;

    background: #ffffff;
    color: #65438e;

    transform: translateY(-2px);
}


/* =========================================
   HERO - SLIDER
========================================= */

.hero-slider {
    position: relative;

    width: 100%;
    min-width: 0;

    overflow: hidden;

    background: #7251a2;
}

.slides {
    position: relative;

    width: 100%;
    height: 100%;

    min-height: 720px;

    background: #7251a2;
}


/* WSZYSTKIE SLAJDY */

.slides img {
    position: absolute;

    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    background: #7251a2;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}


/* AKTYWNY SLAJD */

.slides img.active {
    opacity: 1;
    visibility: visible;
}


/* =========================================
   SLIDER - KROPKI
========================================= */

.slider-dots {
    position: absolute;

    z-index: 20;

    left: 50%;
    bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    transform: translateX(-50%);
}

.slider-dot {
    display: block;

    width: 10px;
    height: 10px;

    margin: 0;
    padding: 0;

    border: 0;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.55);

    cursor: pointer;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.85);
}

.slider-dot.active {
    background: #ffffff;

    transform: scale(1.35);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .sasha-hero {
        grid-template-columns: 44% 56%;
        min-height: 620px;
    }

    .slides {
        min-height: 620px;
    }

    .hero-copy {
        padding: 60px 5vw;
    }

    .hero-copy h1 {
        font-size: clamp(42px, 5vw, 60px);
    }

    .hero-copy p {
        font-size: 17px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .sasha-hero {
        display: flex;
        flex-direction: column;

        min-height: auto;
    }


    /* NA MOBILE NAJPIERW GRAFIKA */

    .hero-slider {
        order: 1;

        width: 100%;
    }

    .slides {
        min-height: 430px;
    }

    .slides img {
        object-fit: contain;
        object-position: center;
    }


    /* POTEM TEKST */

    .hero-copy {
        order: 2;

        padding: 48px 24px 55px;

        text-align: left;
    }

    .hero-label {
        margin-bottom: 18px;

        font-size: 11px;
        letter-spacing: 2.5px;
    }

    .hero-copy h1 {
        margin-bottom: 22px;

        font-size: 44px;
        line-height: 1.02;
        letter-spacing: -1px;
    }

    .hero-copy p {
        max-width: 100%;

        font-size: 16px;
        line-height: 1.65;
    }


    /* BUTTONY MOBILE */

    .hero-buttons {
        flex-direction: column;

        width: 100%;

        margin-top: 30px;
    }

    .hero-btn {
        width: 100%;

        min-height: 54px;
    }


    /* KROPKI */

    .slider-dots {
        bottom: 16px;
    }

}


/* =========================================
   BARDZO MAŁE TELEFONY
========================================= */

@media (max-width: 420px) {

    .slides {
        min-height: 360px;
    }

    .hero-copy {
        padding: 42px 20px 48px;
    }

    .hero-copy h1 {
        font-size: 38px;
    }

}

/* =========================================
   SASHA PURE - INTRO
========================================= */

.sasha-intro {
    padding: 110px 7vw;
    background: #ffffff;
}

.sasha-intro .container {
    max-width: 1280px;
    margin: 0 auto;
}

.sasha-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: start;
}

.sasha-intro .section-label {
    display: inline-block;
    margin-bottom: 22px;

    color: #7251a2;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.sasha-intro h2 {
    max-width: 560px;
    margin: 0;

    color: #282236;

    font-size: clamp(42px, 4vw, 64px);
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.sasha-intro-right {
    padding-top: 30px;
}

.sasha-intro-right p {
    margin: 0 0 22px;

    color: #66616f;

    font-size: 18px;
    line-height: 1.8;
}

.intro-link {
    display: inline-block;
    margin-top: 12px;

    color: #7251a2;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    text-decoration: none;
}

.intro-link:hover {
    text-decoration: underline;
}


/* MOBILE */

@media (max-width: 767px) {

    .sasha-intro {
        padding: 75px 24px;
    }

    .sasha-intro-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .sasha-intro h2 {
        font-size: 40px;
    }

    .sasha-intro-right {
        padding-top: 0;
    }

    .sasha-intro-right p {
        font-size: 16px;
    }

}

/* =========================================
   SASHA PURE - LINIE
========================================= */

.sasha-lines {
    padding: 110px 6vw 120px;
    background: #f7f7f7;
}

.sasha-lines .container {
    max-width: 1400px;
    margin: 0 auto;
}

.lines-header {
    max-width: 800px;
    margin: 0 auto 70px;
    text-align: center;
}

.lines-header .section-label {
    display: inline-block;
    margin-bottom: 20px;

    color: #7251a2;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.lines-header h2 {
    margin: 0 0 24px;

    color: #282236;

    font-size: clamp(42px, 4vw, 62px);
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.lines-header p {
    max-width: 680px;
    margin: 0 auto;

    color: #686270;

    font-size: 18px;
    line-height: 1.7;
}


/* =========================================
   GRID
========================================= */

.lines-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}


/* =========================================
   CARD
========================================= */

.line-card {
    min-width: 0;
    height: 100%;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: #ffffff;
    border-radius: 0;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.line-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0,0,0,.10);
}


/* =========================================
   ZDJĘCIE
========================================= */

.line-card > img {
    display: block;

    width: 100%;
    aspect-ratio: 1 / 1;

    object-fit: cover;

    flex-shrink: 0;
}


/* =========================================
   CONTENT
========================================= */

.line-content {
    display: flex;
    flex-direction: column;
    flex: 1;

    min-height: 290px;

    padding: 30px 26px 32px;

    background: #ffffff;
}

.line-content span {
    display: block;

    margin-bottom: 10px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}


/* TYTUŁ */

.line-content h3 {
    margin: 0 0 16px;

    min-height: 56px;

    color: #282236;

    font-size: 24px;
    line-height: 1.15;
}


/* OPIS */

.line-content p {
    margin: 0 0 24px;

    color: #686270;

    font-size: 16px;
    line-height: 1.65;
}


/* =========================================
   POZNAJ LINIĘ
========================================= */

.line-content .line-link {
    display: inline-flex;
    align-items: center;

    width: fit-content;

    margin-top: auto;

    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 1.1px;

    text-transform: uppercase;
    text-decoration: none !important;

    transition:
        transform .25s ease,
        opacity .25s ease;
}

.line-content .line-link:hover {
    text-decoration: none !important;
    transform: translateX(5px);
    opacity: .75;
}


/* =========================================
   KOLORY LINII
========================================= */

.line-hydrate .line-content span,
.line-hydrate .line-link {
    color: #7251a2;
}

.line-healing .line-content span,
.line-healing .line-link {
    color: #10aeb9;
}

.line-dry-scalp .line-content span,
.line-dry-scalp .line-link {
    color: #e90064;
}

.line-curls .line-content span,
.line-curls .line-link {
    color: #f56a19;
}

.line-thicken .line-content span,
.line-thicken .line-link {
    color: #91b900;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .lines-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .line-content {
        min-height: 260px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .sasha-lines {
        padding: 80px 24px;
    }

    .lines-header {
        margin-bottom: 45px;
    }

    .lines-header h2 {
        font-size: 40px;
    }

    .lines-header p {
        font-size: 16px;
    }

    .lines-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .line-content {
        min-height: auto;
    }

    .line-content h3 {
        min-height: auto;
    }

}

/* =========================================
   SASHA PURE - SACHA INCHI
========================================= */

.sacha-inchi {
    padding: 120px 6vw;
    background: #ffffff;
}

.sacha-inchi .container {
    max-width: 1400px;
    margin: 0 auto;
}

.sacha-inchi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}


/* IMAGE */

.sacha-inchi-image {
    min-width: 0;
}

.sacha-inchi-image img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}


/* CONTENT */

.sacha-inchi-content .section-label {
    display: inline-block;
    margin-bottom: 20px;

    color: #7251a2;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.sacha-inchi-content h2 {
    margin: 0 0 28px;

    color: #282236;

    font-size: clamp(44px, 4.3vw, 68px);
    line-height: 1.02;
    letter-spacing: -1.5px;
}

.sacha-inchi-intro {
    max-width: 620px;
    margin: 0 0 42px;

    color: #686270;

    font-size: 18px;
    line-height: 1.8;
}


/* BENEFITS */

.sacha-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 38px;
}

.sacha-benefit {
    padding: 24px;
    background: #f7f7f7;
}

.sacha-benefit strong {
    display: block;
    margin-bottom: 8px;

    color: #7251a2;

    font-size: 13px;
    letter-spacing: 1.2px;
}

.sacha-benefit span {
    display: block;

    color: #686270;

    font-size: 15px;
    line-height: 1.6;
}


/* LINK */

.sacha-inchi-link {
    display: inline-flex;
    width: fit-content;

    color: #7251a2;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.1px;

    text-transform: uppercase;
    text-decoration: none !important;

    transition:
        transform .25s ease,
        opacity .25s ease;
}

.sacha-inchi-link:hover {
    transform: translateX(5px);
    opacity: .75;
    text-decoration: none !important;
}


/* AMAZONIA BANNER */

.sacha-origin {
    position: relative;
    margin-top: 90px;
    min-height: 420px;
    overflow: hidden;
}

.sacha-origin img {
    display: block;

    width: 100%;
    height: 420px;

    object-fit: cover;
}

.sacha-origin::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(25, 26, 20, .72) 0%,
            rgba(25, 26, 20, .40) 45%,
            rgba(25, 26, 20, .05) 100%
        );
}

.sacha-origin-overlay {
    position: absolute;

    z-index: 2;

    left: 7%;
    top: 50%;

    max-width: 560px;

    transform: translateY(-50%);

    color: #ffffff;
}

.sacha-origin-overlay span {
    display: block;

    margin-bottom: 16px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.sacha-origin-overlay h3 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.05;
}


/* TABLET */

@media (max-width: 1000px) {

    .sacha-inchi-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

}


/* MOBILE */

@media (max-width: 767px) {

    .sacha-inchi {
        padding: 80px 24px;
    }

    .sacha-inchi-grid {
        gap: 40px;
    }

    .sacha-inchi-content h2 {
        font-size: 42px;
    }

    .sacha-inchi-intro {
        font-size: 16px;
    }

    .sacha-benefits {
        grid-template-columns: 1fr;
    }

    .sacha-origin {
        margin-top: 60px;
        min-height: 360px;
    }

    .sacha-origin img {
        height: 360px;
    }

    .sacha-origin-overlay {
        left: 24px;
        right: 24px;
    }

    .sacha-origin-overlay h3 {
        font-size: 38px;
    }

}