@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Shrikhand&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* FS: 400 - 1399 */

:root {
    --white: #ffffff;
    --black: #000000;
    --lightPink: #ffe2e7;
    --regularPink: #f6cede;
    --green: #bfc26a;
    --text: #231f20;
    --fontHeading: "Shrikhand", serif;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    color: var(--text);
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Shrikhand", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
}
/* 65 - 130px */
h1 {
    font-size: clamp(4.0625rem, 2.4359rem + 6.5065vw, 8.125rem);
    text-align: center;
    color: var(--lightPink);
}
h1.hero-heading {
    display: inline-block;
    margin: 0;
    position: relative;
    font-size: 130px;
}
h1.hero-heading::before {
    display: block;
    position: absolute;
    top: 5px;
    right: 0;
    content: 'Dominika Dziuban';
    text-transform: uppercase;
    font-size: 22px;
    color: var(--white);
}
/* 65 - 130px */
h2 {
    font-size: clamp(4.0625rem, 2.4359rem + 6.5065vw, 8.125rem);
    margin-bottom: 16px;
}
h2 > i {
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 700;
}
/* 60 - 100px */
h2.portfolio {
    font-size: clamp(3.125rem, 1.8737rem + 5.005vw, 6.25rem);
    letter-spacing: 1px;
    color: var(--green);
}

p {
    margin-bottom: 16px;
}

.row-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}
.row-padding-top {
    padding-top: 100px;
}
.row-padding-bottom {
    padding-bottom: 100px;
}
@media(max-width: 767px) {
    .row-padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .row-padding-top {
        padding-top: 60px;
    }
    .row-padding-bottom {
        padding-bottom: 60px;
    }
}

/* --- Landing Page --- */
main#main {
    overflow-x: hidden;
}
/* Hero Section */
#hero {
    display: flex;
    align-items: center;
    height: 100svh;
    min-height: 400px;
    max-height: 1300px;
    position: relative;
    background-image: url('../img/hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#hero .hero-column {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
#hero .hero-column img {
    flex-shrink: 0;
    margin-bottom: 35px;
}

#hero .hero-column .professions {
    display: flex;
    justify-content: center;
    width: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 25px;
    padding-right: 15px;
    padding-left: 15px;
}
#hero .hero-column .professions > ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}
#hero .hero-column .professions > ul > li {
    flex-shrink: 0;
    position: relative;
    padding: 6px 18px;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    background: rgb(255, 226, 231, .25);
}

@media(max-width: 991px) {
    #hero .hero-column img {
        width: 75px;
        height: auto;
    }
    h1.hero-heading {
        font-size: 90px;
    }
    h1.hero-heading::before {
        top: -5px;
    }
}

@media(max-width: 767px) {
    #hero .hero-column {
        gap: 10px;
    }
    #hero .hero-column img {
        width: 60px;
        height: auto;
        margin-bottom: 25px;
    }

    h1.hero-heading {
        font-size: 65px;
    }
    h1.hero-heading::before {
        top: -10px;
        font-size: 20px;
    }

    #hero .hero-column .professions > ul {
        gap: 12px;
    }
    #hero .hero-column .professions > ul > li {
        padding: 4px 12px;
        font-size: 18px;
    }
}

@media(max-width: 499px) {
    #hero .hero-column img {
        width: 50px;
        height: auto;
        margin-bottom: 25px;
    }

    h1.hero-heading {
        font-size: 45px;
    }
    h1.hero-heading::before {
        top: -10px;
        font-size: 18px;
    }

    #hero .hero-column .professions > ul {
        gap: 9px;
    }
    #hero .hero-column .professions > ul > li {
        padding: 3px 9px;
        font-size: 17px;
    }
}

/* Hello Section */
#hello {
    background-color: var(--lightPink);
}
#hello h2 {
    color: var(--green);
}

.hello-description {
    position: relative;
    z-index: 1;
}
.hello-img {
    position: relative;
    padding-top: 150px;
    text-align: right;
}
.hello-img::after {
    display: block;
    content: url('../img/hello-decor.png');
    position: absolute;
    top: -50px;
    left: -190px;
    z-index: 0;
}
.hello-img img {
    width: 100%;
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}
@media(min-width: 1200px) {
    .hello-img {
        padding-top: 60px;
    }
    .hello-img::after {
        top: -90px;
    }
}
@media(max-width: 991px) {
    .hello-img {
        padding-top: 84px;
    }
    .hello-img::after {
        top: -30px;
        left: -40px;
    }
    .hello-img img {
        width: 75%;
    }
}
@media(max-width: 767px) {
    .hello-img {
        padding-top: 44px;
    }
    .hello-img::after {
        top: -60px;
    }
}
@media(max-width: 499px) {
    .hello-img::after {
        left: -80px;
    }
    .hello-img img {
        width: 80%;
    }
}

/* Quote Section */
#quote {
    background-color: var(--lightPink);
}
.quote-img {
    position: relative;
    z-index: 2;
}
.quote-img::after {
    display: block;
    content: url('../img/quote-decor.png');
    position: absolute;
    bottom: -17px;
    right: -245px;
    z-index: 1;
}
.quote-img img {
    width: 100%;
    max-width: 100%;
    height: auto;
}
.quote-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    position: relative;
    padding: 35px 0;
    text-align: right;
}
.quote-description::before {
    display: block;
    content: '';
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -240px;
    background-color: var(--white);
    z-index: 0;
}
.quote-description .quote-bigger {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    font-family: var(--fontHeading);
    font-size: clamp(3.125rem, 1.8737rem + 5.005vw, 6.25rem);
    line-height: 1;
    color: #f7b1ce;
}
.quote-description .quote-smaller {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    font-size: clamp(1.625rem, 1.3247rem + 1.2012vw, 2.375rem);
    font-weight: 700;
    font-style: italic;
    color: #f7b1ce;
}
.quote-description .quote-bigger.quote-close {
    position: relative;
}
.quote-description .quote-bigger.quote-close::after {
    display: block;
    content: '~ Aleksander Franta';
    position: absolute;
    bottom: 20px;
    right: 0;
    z-index: 1;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #f7b1ce;
}
@media(max-width: 1199px) {
    #quote {
        padding-top: 60px;
    }
}
@media(max-width: 991px) {
    #quote {
        padding-top: 0;
    }
    .quote-row {
        flex-direction: column-reverse;
    }
    .quote-img {
        width: 75%;
    }
    .quote-description {
        padding: 0 0 90px 0;
    }
    .quote-description::before {
        display: none;
    }
}
@media(max-width: 767px) {
    .quote-img::after {
        top: -60px;
        bottom: initial;
    }
}
@media(max-width: 499px) {
    .quote-img {
        width: 80%;
    }
    .quote-description .quote-bigger.quote-close::after {
        bottom: 10px;
    }
}

/* Portfolio: video */
#video {
    position: relative;
    z-index: 2;
    background-color: var(--white);
}

.video-slider .owl-stage-outer,
.other-photos .owl-stage-outer,
.feed-photos .owl-stage-outer {
    overflow: visible;
}
@media(min-width: 2200px) {
    .video-slider .owl-stage-outer,
   .other-photos .owl-stage-outer,
   .feed-photos .owl-stage-outer {
    overflow: hidden;
}
}
.video-slider .owl-item,
.other-photos .owl-item,
.feed-photos .owl-item {
    opacity: .2;
    transition: opacity .3s;
}
.video-slider .owl-item.active,
.other-photos .owl-item.active,
.feed-photos .owl-item.active {
    opacity: 1;
}
.video-slider .owl-nav,
.other-photos .owl-nav,
.feed-photos .owl-nav {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
    padding-top: 10px;
}
@media(max-width: 1199px) {
    .video-slider .owl-nav,
    .other-photos .owl-nav,
    .feed-photos .owl-nav {
        padding-right: 81px;
    }
}
@media(max-width: 991px) {
    .video-slider .owl-nav,
    .other-photos .owl-nav,
    .feed-photos .owl-nav {
        padding-right: 200px;
    }
}
@media(max-width: 767px) {
    .video-slider .owl-nav,
    .other-photos .owl-nav,
    .feed-photos .owl-nav {
        padding-right: 120px;
    }
}
@media(max-width: 575px) {
    .video-slider .owl-nav,
    .other-photos .owl-nav,
    .feed-photos .owl-nav {
        padding-right: 60px;
    }
}
.video-slider .owl-prev.disabled,
.video-slider .owl-next.disabled,
.other-photos .owl-prev.disabled,
.other-photos .owl-next.disabled,
.feed-photos .owl-prev.disabled,
.feed-photos .owl-next.disabled  {
    filter: grayscale(1);
}
.video-slider .owl-stage,
.other-photos .owl-stage,
.feed-photos .owl-stage {
    padding-left: 0 !important;
}
.single-video {
    width: 100%;
    height: auto;
}

/* Portfolio: photos */
#other-photos {
    position: relative;
    z-index: 2;
    background-color: transparent;
    overflow: hidden;
}
.other-photos a {
    display: block;
}
.other-photos a img {
    width: 100%;
    height: auto;
    aspect-ratio: 9/16;
}
.mfp-title {
    display: none !important;
}

/* Portfolio: feed photos */
#feed-photos {
   position: relative;
   z-index: 2;
   background-color: transparent;
   overflow: hidden;
}
.feed-photos a {
   display: block;
}
.feed-photos a img {
   width: 100%;
   height: auto;
   aspect-ratio: 4/5;
}

/* Portfolio: aesthetic photos */
#aesthetic-photos {
    position: relative;
    background-color: var(--lightPink);
    overflow: hidden;
}
.aesthetic-decor {
    width: 400px;
    height: 400px;
    position: absolute;
    bottom: -80px;
    left: -60px;
    background-image: url('../img/aesthetic-photos-decor.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
@media(max-width: 575px) {
    .aesthetic-decor {
        bottom: -190px;
        left: -75px;
    }
}

.ap-slider .ap-item {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.ap-slider .ap-item .aesthetic-photo {
    display: block;
}
.ap-slider .ap-item .aesthetic-photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center;
}
@media(max-width: 575px) {
    .ap-slider .ap-item {
        gap: 15px;
    }
}

.ap-slider .owl-nav {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
    padding-top: 10px;
}
.ap-slider .owl-prev.disabled,
.ap-slider .owl-next.disabled {
    filter: grayscale(1);
}
.ap-slider .owl-stage {
    padding-left: 0 !important;
}

/* Features */
#features {
    overflow: hidden;
}

.pearsome-features-img {
    max-width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
}
@media(max-width: 1199px) {
    .pearsome-features-img {
        aspect-ratio: 3/4;
    }
}

.features-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    position: relative;
    padding: 60px 30px 60px 50px;
    background-color: var(--green);
}
.features-description .quote-bigger {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    font-family: var(--fontHeading);
    font-size: clamp(3.125rem, 1.8737rem + 5.005vw, 6.25rem);
    line-height: 1;
    color: var(--lightPink);
}
.features-description .quote-smaller {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    font-size: clamp(1.625rem, 1.3247rem + 1.2012vw, 2.375rem);
    font-weight: 700;
    font-style: italic;
    color: var(--white);
}
.features-description::before {
    display: block;
    content: '';
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 0;
    background-color: var(--green);
}

.features-list {
    margin: 0;
    padding-top: 10px;
    padding-left: 0;
    list-style: none;
}
.features-list li {
    position: relative;
    padding-left: 34px;
    font-size: 22px;
    color: var(--white);
}
.features-list li::before {
    display: block;
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 22px;
    height: 22px;
    background: url('../img/list-check.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.features-list li:not(:last-child) {
    margin-bottom: 5px;
}
@media(max-width: 991px) {
    .features-img-col {
        display: none;
    }

    .features-description {
        position: relative;
        padding: 40px 20px 40px 0;
        background-color: var(--green);
    }
    .features-description::before {
        left: initial;
        right: 0;
    }
    .features-list {
        position: relative;
        padding-top: 10px;
        z-index: 1;
    }
    .features-list li {
        font-size: 17px;
    }
    .features-list li::before {
        top: 1px;
    }
}

/* Contact */
.contact-info-wrapper {
    position: relative;
}
.contact-info-wrapper::before {
    display: block;
    content: '';
    width: 350px;
    height: 350px;
    position: absolute;
    left: -350px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    background-image: url('../img/pear-before-footer.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
@media(max-width: 991px) {
    .contact-info-wrapper::before {
        width: 300px;
        height: 300px;
        left: initial;
        right: -110px;
        top: initial;
        bottom: -40px;
        transform: translateY(0);
    }
}
@media(max-width: 575px) {
    .contact-info-wrapper::before {
        width: 160px;
        height: 160px;
        right: -70px;
        bottom: -60px;
        opacity: 1;
    }
}

#contact h2 {
    color: var(--green);
}

.contact-info {
    padding-top: 20px;
    font-size: clamp(1.3125rem, 1.2374rem + 0.3003vw, 1.5rem);
    font-weight: 600;
    color: var(--green);
}
.contact-info .contact-item {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0 15px;
}
.contact-info .contact-item:first-child {
    margin-bottom: 25px;
}
.contact-info .contact-item .description a,
.contact-info .contact-item .description a:hover,
.contact-info .contact-item .description a:focus {
    display: block;
    text-decoration: none;
    color: var(--green);
}

footer#footer {
    padding-top: 34px;
    text-align: center;
    font-size: 14px;
}