/* SEKCJA HERO */

.hero{

    position:relative;

    display:flex;

    justify-content:flex-end;

    align-items:center;

    min-height:350px;

    padding:40px 8%;

    background:
        url("https://filipiak.xaa.pl/ola/public/images/hero.jpg")
        left center no-repeat;

    background-size:cover;

}


.hero-wave{

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    line-height:0;

}

.hero-wave svg{

    display:block;

    width:100%;

    height:60px;

}

/* BLOK TEKSTOWY */

.hero-right{

    width:42%;

    max-width:560px;

    padding:24px 32px;

    border-radius:30px;

    background:rgba(248,241,236,.20);

    backdrop-filter:blur(6px);

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

}


/* PODTYTUŁ */

.hero-subtitle{

    font-family:'Allura',cursive;

    color:#735545;

    font-size:clamp(28px,1.8vw,40px);

    margin-bottom:18px;

    text-shadow:
        0 1px 3px rgba(255,255,255,.5);

}


/* TYTUŁ */

.hero h1{

    font-family:'Cormorant Garamond',serif;

    margin:0;

    color:#4F3D32;

    font-size:clamp(18px,1.15vw,25px);

    line-height:1.7;

    letter-spacing:1.2px;

    font-weight:600;

    text-transform:uppercase;

    text-shadow:
        0 1px 2px rgba(255,255,255,.4),
        0 1px 5px rgba(0,0,0,.08);

}


/* PRZYCISKI */

.hero-buttons{

    display:flex;

    gap:14px;

    margin-top:28px;

}


/* WSPÓLNE */

.hero-button{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    padding:12px 28px;

    border-radius:50px;

    text-decoration:none;

    font-size:12px;

    font-weight:600;

    white-space:nowrap;

    transition:.3s ease;

}


/* GŁÓWNY */

.hero-button-primary{

    background:linear-gradient(
        135deg,
        #D9A885 0%,
        #C88F6C 100%
    );

    color:#fff;

    box-shadow:
        0 8px 20px rgba(200,143,108,.25);

}

.hero-button-primary:hover{

    transform:translateY(-3px);

    box-shadow:
        0 12px 28px rgba(200,143,108,.35);

}


/* DRUGI */

.hero-button-secondary{

    background:rgba(255,255,255,.18);

    border:1px solid rgba(200,143,108,.75);

    color:#8A6753;

    backdrop-filter:blur(5px);

}

.hero-button-secondary:hover{

    background:#C89B7B;

    color:#fff;

    transform:translateY(-3px);

}


/* DUŻE MONITORY */

@media(min-width:1400px){

    .hero{

        background-position:left top;

        min-height:450px;

    }

}


/* 4K */

@media(min-width:2400px){

    .hero{

        background-position:left top;

        min-height:600px;

    }

}


/* TABLET */

@media(max-width:992px){

    .hero{

        min-height:320px;

        padding:30px 6%;

    }

    .hero-right{

        width:58%;

        padding:22px;

    }

}
/* TELEFON */

@media(max-width:768px){

    .hero{

        justify-content:flex-end;

        align-items:flex-start;

        min-height:260px;

        padding:20px 5% 60px;

        background-position:25% center;

    }

    .hero-right{

        width:60%;

        max-width:none;

        padding:16px;

    }

    .hero-subtitle{

        font-size:30px;

    }

    .hero h1{

        font-size:20px;

        line-height:1.6;

    }

    .hero-buttons{

        display:flex;

        flex-direction:column;

        align-items:center;

        gap:10px;

        width:100%;

    }

    .hero-button{

        width:180px;

        height:46px;

        padding:0;

        justify-content:center;

        font-size:12px;

    }

}



/* MAŁE TELEFONY */

@media(max-width:480px){

    .hero{

        min-height:230px;

        padding:15px 4% 55px;

        justify-content:flex-end;

        align-items:flex-start;

        background-position:30% center;

    }

    .hero-right{

        width:60%;

        padding:14px;

    }

    .hero-subtitle{

        font-size:24px;

        margin-bottom:10px;

    }

    .hero h1{

        font-size:17px;

        line-height:1.45;

    }

    .hero-buttons{

        gap:8px;

    }

    .hero-button{

        width:160px;

        height:42px;

        font-size:11px;

    }

}

/* SEKCJA O MNIE I OFERTA */

.about-offer{

    display:flex;

    gap:20px;

    padding:0 6% 30px;

    background:#F8F1EC;

}


/* LEWA STRONA */

.about-offer-left{

    flex:0 0 46%;

    display:flex;

    gap:15px;

    align-items:flex-start;

    padding-right:40px;

    border-right:1px solid rgba(200,155,123,.25);

}


/* ZDJĘCIE */

.about-photo{

    flex-shrink:0;

    margin-left:-40px;

}


.about-photo-frame{

    position:relative;

    width:250px;

    aspect-ratio:1/1.35;

    overflow:hidden;

    border-radius:999px 999px 0 0;

}


/* ZEWNĘTRZNA RAMKA */

.about-photo-frame::before{

    content:"";

    position:absolute;

    inset:0;

    border:2px solid #E8CFBB;

    border-radius:999px 999px 0 0;

    z-index:10;

}


/* WEWNĘTRZNA RAMKA */

.about-photo-frame::after{

    content:"";

    position:absolute;

    top:10px;
    left:10px;
    right:10px;
    bottom:10px;

    border:2px solid rgba(248,233,221,.9);

    border-radius:999px 999px 0 0;

    z-index:10;

}


/* MODELKA */

.about-photo-image{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center top;

    border-radius:999px 999px 0 0;

    z-index:1;

}


/* TEKST */

.about-content{

    flex:1;

    min-width:0;

    display:flex;

    flex-direction:column;

}


.about-small-title{

    margin:0 0 10px;

    color:#4F3D32;

    font-size:18px;

    letter-spacing:1.2px;

}


.about-content h2{

    margin:0;

    color:#4F3D32;

    font-family:'Cormorant Garamond',serif;

    font-size:clamp(36px,2.8vw,52px);

    line-height:1.1;

    font-weight:500;

}


.about-heart{

    color:#C89B7B;

    margin:10px 0 20px;

}


.about-text{

    color:#6F625B;

    line-height:1.9;

    font-size:14px;

}


.about-list{

    margin-top:25px;

}


.about-item{

    margin-bottom:16px;

    color:#6F625B;

    font-size:14px;

}


/* PRZYCISK */

.about-button{

     display:flex;

    justify-content:center;

    align-items:center;

    width:max-content;

    margin:20px auto 0;

    padding:12px 32px;

    border-radius:50px;

    border:1px solid #C89B7B;

    color:#8A6753;

    text-decoration:none;

    font-size:13px;

    font-weight:540;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;


}


.about-button:hover{

    background:#C89B7B;
    color:#fff;

    transform:translateY(-3px);

    box-shadow:
        0 12px 28px rgba(200,143,108,.35);

}


/* PRAWA STRONA */

.about-offer-right{

    flex:1;

}


/* NAGŁÓWEK */

.offer-small-title{

    margin:0 0 10px;

    color:#4F3D32;

    font-size:18px;

    letter-spacing:1.2px;

}


/* SIATKA KART */

.offer-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;

}


/* KARTA */

.offer-card{

    background:#F0D4BE;

    border-radius:28px;

    min-height:230px;

    padding:30px 5px;

    text-decoration:none;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    transition:.3s ease;

}


.offer-card:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(0,0,0,.05);

}


/* IKONA */

.offer-card img{

    width:120px;

    height:120px;

    object-fit:contain;

    margin-bottom:22px;

}


/* TYTUŁ */

.offer-card h3{

    margin:0;

    color:#4F3D32;

    font-size:12px;

    font-weight:500;

    line-height:1.5;

}


/* SERDUSZKO */

.offer-card span{

    margin-top:16px;

    color:#C89B7B;

    font-size:14px;

}


/* PRZYCISK */

.offer-button{

    display:table;
    margin:25px auto 0;
    padding:12px 34px;
    border:1px solid #C89B7B;
    border-radius:50px;
    color:#8A6753;
    font-weight: 540;
    text-decoration:none;
    font-size:13px;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;

}


.offer-button:hover{

    background:#C89B7B;
    color:#fff;

    transform:translateY(-3px);

    box-shadow:
        0 12px 28px rgba(200,143,108,.35);

}


@media(max-width:1200px){

    .about-offer{

        flex-direction:column;

        gap:35px;

    }

    .about-offer-left{

        width:100%;

        border-right:none;

        padding-right:0;

    }

    .about-offer-right{

        width:100%;

    }
    
     .offer-grid{

        grid-template-columns:repeat(4,1fr);

        gap:14px;

    }

    .offer-card{

        min-height:210px;

        padding:25px 10px;

    }

    .offer-card img{

        width:90px;

        height:90px;

    }

}

/* TABLET */

@media(max-width:992px){

    .offer-grid{

        grid-template-columns:repeat(2,1fr);

        gap:16px;

    }

}


/* TELEFON */

@media(max-width:480px){

    .offer-small-title{

        margin-bottom:20px;

    }

    .offer-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .offer-card{

        min-height:170px;

        padding:20px 10px;

        border-radius:22px;

    }

    .offer-card img{

        width:82px;

        height:82px;

        margin-bottom:14px;

    }

    .offer-card h3{

        font-size:13px;

        line-height:1.5;

    }

    .offer-card span{

        margin-top:12px;

        font-size:12px;

    }

    .offer-button{

        width:100%;

        max-width:260px;

        text-align:center;

        margin-top:30px;

    }

}


/* TABLET */

@media(max-width:768px){

    .about-offer{

        flex-direction:column;

        gap:30px;

        padding:0 6% 25px;

    }

    .about-offer-left{

        width:100%;

        gap:20px;
    
        padding-right:0;
    
        border-right:none;

    }

    .about-photo{

        margin-left:0;

    }

    .about-photo-frame{

        width:170px;

    }

    .about-content{

        min-width:auto;

    }

    .about-content h2{

    margin:0 0 20px;

    color:#4F3D32;

    font-family:'Cormorant Garamond',serif;

    font-size:clamp(36px,2.8vw,52px);

    line-height:1.1;

    font-weight:500;

    }

    .about-heart{

        display:inline-block;

        margin-left:10px;

        color:#C89B7B;

        font-size:14px;

        vertical-align:middle;

    }

    .about-text{

        margin-top:0;

        color:#6F625B;

        line-height:1.9;

        font-size:14px;

    }

}



/* MAŁE TELEFONY */

@media(max-width:480px){

    .about-offer{

        padding:0 5% 20px;

    }

    .about-offer-left{

        gap:16px;

    }

    .about-photo-frame{

        width:145px;

    }

    .about-content h2{

        font-size:34px;

    }

    .about-text{

        font-size:13px;

        line-height:1.7;

        text-align:left;

    }

}
/* -------------------------------------------------------------------------- */



/* -------------------------------------------------------------------------- */
/* =====================================
   SEKCJA OPINIE
===================================== */

.reviews{

    position:relative;

    padding:20px 8% 60px;

    background:#F8F1EC;

    text-align:center;

    overflow:hidden;

}


/* =====================================
   GÓRNY DEKOR
===================================== */

.reviews-divider{

    display:flex;

    justify-content:center;
    align-items:center;

    gap:22px;

    margin-bottom:15px;

}

.reviews-divider::before,
.reviews-divider::after{

    content:"";

    flex:1;

    height:1px;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(200,155,123,.22),
        transparent
    );

}

.reviews-divider span{

    display:flex;

    justify-content:center;
    align-items:center;

    width:48px;
    height:48px;

    border-radius:50%;

    border:1px solid rgba(200,155,123,.18);

    background:#FFFDFC;

    color:#D7A37D;

    font-size:24px;

    box-shadow:0 8px 18px rgba(0,0,0,.04);

    transition:.35s;

}

.reviews-divider span:hover{

    transform:scale(1.1);

}


/* =====================================
   MAŁY TYTUŁ
===================================== */

.reviews-small-title{

    display:inline-block;

    margin:0;

    padding-bottom:10px;

    color:#8A6753;

    font-size:14px;

    font-weight:600;

    letter-spacing:4px;

    text-transform:uppercase;

}


/* =====================================
   GŁÓWNY TYTUŁ
===================================== */

.reviews h2{

    margin:18px 0 15px;

    color:#4F3D32;

    font-family:'Cormorant Garamond',serif;

    font-size:clamp(38px,4vw,68px);

    font-weight:500;

    line-height:1.1;

}

.reviews h2 span{

    color:#D7A37D;

}


/* =====================================
   OPIS POD TYTUŁEM
===================================== */

.reviews-description{

    max-width:620px;

    margin:0 auto 55px;

    color:#7A6A60;

    font-size:15px;

    line-height:1.9;

}


/* =====================================
   SIATKA
===================================== */

.reviews-grid{

    width:100%;

}

/* =====================================
   KARTA
===================================== */

.review-card{

    position:relative;

    overflow:hidden;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    align-items:center;

    min-height:100%;

    padding:48px 36px 40px;

    border-radius:34px;

    border:1px solid rgba(200,155,123,.35);

    background:
        linear-gradient(
            180deg,
            #FFFDFC 0%,
            #F8F1EC 100%
        );

    box-shadow:
        0 10px 30px rgba(79,61,50,.05);

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}

/* Delikatna poświata */

.review-card::before{

    content:"";

    position:absolute;

    inset:-80px;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.75) 0%,
            transparent 70%
        );

    opacity:0;

    transition:.5s;

}


/* Duży cudzysłów */

.review-card::after{

    content:"❝";

    position:absolute;

    top:16px;
    left:26px;

    font-family:Georgia,serif;

    font-size:110px;

    line-height:1;

    color:rgba(215,163,125,.08);

    pointer-events:none;

    transition:.35s;

}


/* Hover */

.review-card:hover{

    transform:translateY(-5px);

}

.review-card:hover::before{

    opacity:1;

}

.review-card:hover::after{

    transform:
        scale(1.08)
        rotate(-6deg);

    color:rgba(215,163,125,.13);

}


/* Delikatna złota kreska */

.review-card .review-top-line{

    position:absolute;

    top:0;
    left:50%;

    transform:translateX(-50%);

    width:90px;

    height:3px;

    border-radius:20px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #D7A37D,
            transparent
        );

}


/* Efekt kliknięcia */

.review-card:active{

    transform:scale(.99);

}

/* =====================================
   GWIAZDKI
===================================== */

.review-stars{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:4px;

    margin-bottom:28px;

    color:#D7A37D;

    font-size:22px;

    letter-spacing:1px;

    z-index:2;

    transition:transform .35s ease;

}

.review-card:hover .review-stars{

    transform:scale(1.06);

}


/* =====================================
   CYTAT
===================================== */

.review-quote{

    position:relative;

    width:100%;

    z-index:2;

}


/* =====================================
   TEKST
===================================== */

.review-text{

    margin:0;

    color:#5F544D;

    font-size:15px;

    line-height:2;

    text-align:center;

    font-style:italic;

    font-weight:400;

}


/* =====================================
   DIVIDER
===================================== */

.review-divider{

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    margin:34px 0 28px;

}

.review-divider::before,
.review-divider::after{

    content:"";

    flex:1;

    height:1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(200,155,123,.28),
            transparent
        );

}

.review-divider span{

    display:flex;

    justify-content:center;

    align-items:center;

    width:34px;

    height:34px;

    border-radius:50%;

    background:#FFFDFC;

    border:1px solid rgba(200,155,123,.18);

    color:#D7A37D;

    font-size:13px;

    transition:
        transform .35s ease,
        background .35s ease;

}

.review-card:hover .review-divider span{

    transform:rotate(180deg);

    background:#FFF8F4;

}

/* =====================================
   AUTOR
===================================== */

.review-author{

    display:flex;

    flex-direction:column;

    align-items:center;

    position:relative;

    z-index:2;

}


/* =====================================
   AVATAR
===================================== */

.review-avatar{

    width:64px;
    height:64px;

    display:flex;

    justify-content:center;
    align-items:center;

    margin-bottom:16px;

    border-radius:50%;

    background:
        linear-gradient(
            180deg,
            #FFFDFC 0%,
            #F5ECE6 100%
        );

    border:1px solid rgba(200,155,123,.25);

    box-shadow:
        0 10px 24px rgba(79,61,50,.08);

    color:#8A6753;

    font-family:'Cormorant Garamond',serif;

    font-size:28px;

    font-weight:600;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

}

.review-card:hover .review-avatar{

    transform:
        rotate(-8deg)
        scale(1.08);

    border-color:#D7A37D;

    box-shadow:
        0 14px 30px rgba(215,163,125,.22);

}


/* =====================================
   IMIĘ
===================================== */

.review-name{

    color:#4F3D32;

    font-size:20px;

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

}


/* =====================================
   ROLA
===================================== */

.review-role{

    margin-top:6px;

    color:#B89D88;

    font-size:11px;

    letter-spacing:3px;

    text-transform:uppercase;

}


/* =====================================
   ANIMACJE
===================================== */

.review-card{

    animation:reviewFade .8s ease both;

}

.review-card:nth-child(2){

    animation-delay:.15s;

}

.review-card:nth-child(3){

    animation-delay:.3s;

}

@keyframes reviewFade{

    from{

        opacity:0;

        transform:
            translateY(40px);

    }

    to{

        opacity:1;

        transform:
            translateY(0);

    }

}


/* =====================================
   HOVER DODATKI
===================================== */

.review-card:hover .review-name{

    color:#C89B7B;

}

.review-card:hover .review-role{

    letter-spacing:4px;

}

.review-card:hover .review-text{

    color:#4F3D32;

}

.reviews-slider{

    width:100%;

}

.reviews-track{

    display:grid;

    grid-template-columns:repeat(3,minmax(0,1fr));

    gap:28px;

}

/* =====================================
   TABLET
===================================== */

@media(max-width:992px){

    .reviews-grid{

        grid-template-columns:repeat(2,1fr);

        gap:24px;

    }

}


/* =====================================
   MOBILE
===================================== */

@media(max-width:768px){

    .reviews{

        padding:0 6% 50px;

    }

    .reviews-divider{

        display:none;

    }

    .reviews-small-title{

        width:100%;

        text-align:left;

    }

    .reviews h2{

        font-size:46px;

        text-align:left;

    }

    .reviews-description{

        margin:0 0 40px;

        text-align:left;

    }

    .reviews-grid{

        grid-template-columns:1fr;

        gap:22px;
        
        overflow:hidden;

    }

    .review-card{

        padding:36px 26px;

    }

    .review-avatar{

        width:58px;
        height:58px;

        font-size:24px;

    }

    .review-stars{

        font-size:20px;

    }

}


/* =====================================
   MAŁE TELEFONY
===================================== */

@media(max-width:480px){

    .reviews{

        padding:0 5% 40px;

    }

    .reviews h2{

        font-size:36px;

    }

    .review-card{

        border-radius:28px;

        padding:30px 22px;

    }

    .review-card::after{

        font-size:82px;

    }

    .review-avatar{

        width:52px;
        height:52px;

        font-size:20px;

    }

    .review-stars{

        font-size:18px;

    }

    .review-text{

        font-size:14px;

        line-height:1.9;

    }

    .review-name{

        font-size:18px;

    }

    .review-role{

        font-size:10px;

        letter-spacing:2px;

    }

}


/* =====================================
   REDUCED MOTION
===================================== */

@media(prefers-reduced-motion:reduce){

    .review-card,
    .review-card *,
    .review-card::before,
    .review-card::after{

        animation:none !important;

        transition:none !important;

    }

}

/* =====================================
   BUTTON - ZOBACZ WIĘCEJ OPINII
===================================== */

.reviews-button{

    display:inline-flex;

    justify-content:center;
    align-items:center;

    margin:40px auto 0;

    padding:14px 38px;

    border:1px solid #C89B7B;

    border-radius:50px;

    background:transparent;

    color:#8A6753;

    text-decoration:none;

    font-size:13px;

    font-weight:500;

    letter-spacing:1px;

    cursor:pointer;

    transition:
        background .35s ease,
        color .35s ease,
        transform .35s ease,
        box-shadow .35s ease;

}

.reviews-button:hover{

    background:#C89B7B;

    color:#fff;

    transform:translateY(-3px);

    box-shadow:0 12px 28px rgba(200,143,108,.35);

}

.reviews-button:active{

    transform:translateY(-1px);

}

@media(max-width:768px){

    .reviews-button{

        width:100%;
        max-width:320px;

        margin-top:10px;

    }

    .reviews-slider{

        overflow:hidden;

        width:100%;

    }

    .reviews-track{

        display:flex;

        gap:0;

        transition:transform .6s ease;

        will-change:transform;

    }

    .review-card{

        flex:0 0 100%;

        max-width:100%;

        box-sizing:border-box;

    }

    .reviews-pagination{

        display:flex;

        justify-content:center;
        align-items:center;
    
        gap:10px;
    
        margin-top:28px;
    
        padding:6px 0;
    
    }

    .reviews-dot{

        width:10px;
        height:10px;

        border-radius:50%;

        background:#DCC8BA;

        cursor:pointer;

        transition:.3s;

    }

    .reviews-dot.active{

        background:#C89B7B;

        transform:scale(1.2);

    }

}

.reviews-slider{
    touch-action: pan-y;
}