* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: Assistant;
    src: url('../static/fonts/Assistant-Regular.ttf');
}

@font-face {
    font-family: Assistant;
    src: url('../static/fonts/Assistant-SemiBold.ttf');
    font-weight: bold;
}

html { scrollbar-gutter: stable; }
html:has(#lightbox[open]) {
    overflow: hidden;
}
html.modal-open { overflow: hidden; }


body {
    font-family: Assistant, sans-serif;
    background-color: #313f55;
}

.body-lock {
    position: fixed;
    inset: 0;
    overflow: hidden;
    width: 100%;
}

/*------------------------------------------------------------------------------------*/
:root {
    --header-height: 82px;
}

.header {
    padding: 20px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    inset-block-start: 0;
    inset-inline: 0;
    background-color: transparent;
    transition: background-color .25s ease, backdrop-filter .25s ease, box-shadow .25s ease;
    z-index: 1000;
    box-sizing: border-box;
    height: var(--header-height);
}

.header.scrolled {
    background-color: #313f55;
    border-bottom: 1px solid #b6b6b614;
}

.header-logo {
    width: 80px;
    height: 80px;
    opacity: 0;
    transition: .1s;
    overflow: hidden;
    border-radius: 50%;
}
.header-logo.past {
    opacity: 1;
}
.header-logo img {
    width: 100%;
}

.language-select {
    border: 2px solid transparent;
    border-radius: 25px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("../static/images/language-icon.png");
    background-size: 35px;
    background-repeat: no-repeat;
    background-position: center left;
    background-color: transparent;
    background-position-x: 4px;
    padding: 33px 12px 10px 0;
    font-weight: bold;
    font-size: 0;
    cursor: pointer;
    transition: .2s;
    box-sizing: border-box;
    width: 47px;
}

.language-select option {
    font-size: 13px;
    font-weight: bold;
    text-align: center;
}

.popup-menu-overlay {
    width: 100vw;
    height: 100vh;
    background-color: #00000080;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: .2s;
    z-index: 999999;
}

.popup-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.popup-menu {
    background-color: #313f55;
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    box-sizing: border-box;
    height: 100dvh;
    position: fixed;
    top: 0;
    right: 0;
    border-left: 1px solid #b6b6b614;
    transition: .2s;
    z-index: 9999999;
    transform: translateX(320px);
}

.popup-menu.active {
    transform: translateX(0);
}


.menu-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 5px;
    z-index: 1001;
}

.menu-logo img {
    width: 100%;
}

.menu-heading {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
}

.menu-item {
    list-style: none;
    text-align: center;
    margin-bottom: 20px;
}

.menu-item a {
    color: #ffffff;
    text-decoration: none;
    font-size: 22px;
}

.menu-item a:hover {
    text-decoration: underline;
}

.menu-action {
    position: absolute;
    top: 20px;
    right: 20px;
}

.menu-close-button svg {
    width: 30px;
    height: 30px;
}
/*------------------------------------------------------------------------------------*/
.main {
    max-width: 1200px;
    margin: 0 auto 100px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-image {
    overflow: hidden;
}

.main-image img {
    width: 100%;
    border-radius: 0 0 12px 12px;
}

.main-logo {
    width: 150px;
    height: 150px;
    margin-top: -80px;
    border-radius: 50%;
    overflow: hidden;
}

.main-logo img {
    width: 100%;
}

.main-heading {
    font-size: 28px;
    text-align: center;
    color: #ffffff;
    margin-top: 40px;
}

.main-text {
    text-align: center;
    font-size: 20px;
    color: #ffffff;
    margin-top: 20px;
}

.main-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.main-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 10px;
    transition: .2s;
}

.main-link svg {
    width: 35px;
    height: 35px;
}

.main-link svg path {
    fill: #ffffff;
    transition: .2s;
}

.main-link.facebook:hover {
    background-color: #0766ff;
}

.main-link.instagram:hover {
    background-color: #ff1d66;
    transition: .2s;
}

.main-link.tiktok:hover {
    background-color: #0a0a0a;
    transition: .2s;
}

.main-secondary-image {
    text-align: center;
    width: 50%;
    margin-top: 20px;
}

.main-secondary-image img {
    width: 100%;
}

/*------------------------------------------------------------------------------------*/
.about {
    max-width: 610px;
    margin: 0 auto 100px auto;
}

.about-heading {
    font-size: 28px;
    text-align: center;
    color: #ffffff;
    margin-bottom: 10px;
}

.about-secondary-heading {
    font-size: 18px;
    text-align: center;
    color: #b6b6b6;
    margin-bottom: 40px;
}

.about-advantages {
    display: flex;
    flex-direction: column;
}

.about-advantage {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 10px;
}

.about-advantage svg {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
}

.about-advantage svg path {
    fill: #b6b6b6;
}

.about-advantage span {
    color: #ffffff;
    font-size: 20px;
}

/*------------------------------------------------------------------------------------*/
.gallery {
    max-width: 1200px;
    margin: 0 auto 100px auto;
}

.gallery-heading {
    font-size: 28px;
    text-align: center;
    color: #ffffff;
    margin-bottom: 40px;
}

.gallery-items, .puppies-items {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item, .puppies-item {
    width: 450px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid #b6b6b680;
    cursor: zoom-in;
    transition: transform .15s ease;
}

.gallery-item:active, .puppies-item:active {
    transform: scale(.98);
}

.gallery-item img, .puppies-item img {
    width: 100%;
    object-position: center;
    display: block;
}

#lightbox {
    padding: 0;
    border: none;
    outline: none;
    background: transparent;
    max-width: 800px;
    position: fixed;
    left: 50vw;
    top: 50svh;
    transform: translate(-50%, -50%);
}

html[dir="rtl"] #lightbox {
    transform: translate(-55%, -50%);
}

#lightbox::backdrop {
    background: rgba(0, 0, 0, .65);
}

#lightbox-img {
    display: block;
    max-width: min(92vw, 100%);
    max-height: 92dvh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
    cursor: zoom-out;
}

@media (prefers-reduced-motion: no-preference) {
    #lightbox[open]::backdrop {
        animation: fade .18s ease;
    }

    #lightbox[open] img {
        animation: pop .18s ease;
    }

    @keyframes fade {
        from {
            opacity: 0
        }
        to {
            opacity: 1
        }
    }
    @keyframes pop {
        from {
            transform: scale(.97)
        }
        to {
            transform: scale(1)
        }
    }
}

.gallery-action {
    display: flex;
    justify-content: center;
}

.gallery-button {
    border: 3px solid #748cfc;
    outline: none;
    color: #ffffff;
    background-color: #748cfc;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    padding: 5px 10px;
    border-radius: 99px;
    cursor: pointer;
    font-weight: bold;
    transition: .2s;
}

.gallery-button:hover {
    background-color: transparent;
}

.gallery-button svg {
    width: 70px;
    height: 70px;
}

.gallery-button svg path, .gallery-button svg circle {
    stroke: #ffffff;
    transition: .2s;
}

/*------------------------------------------------------------------------------------*/
.puppies {
    max-width: 1400px;
    margin: 0 auto 100px auto;
}

.puppies-heading {
    font-size: 28px;
    text-align: center;
    color: #ffffff;
    margin-bottom: 10px;
}

.puppies-secondary-heading {
    font-size: 18px;
    text-align: center;
    color: #b6b6b6;
    margin-bottom: 10px;
}

.puppies-secondary-heading a {
    color: #748cfc;
    font-weight: bold;
}

.puppies-items {
    margin-top: 40px;
}

/*------------------------------------------------------------------------------------*/
.advantages {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto 100px auto;
}

.advantages-heading {
    font-size: 28px;
    text-align: center;
    color: #ffffff;
    margin-bottom: 10px;
}

.advantages-secondary-heading {
    font-size: 18px;
    text-align: center;
    color: #b6b6b6;
    margin-bottom: 40px;
}

.advantages-image {
    max-width: 900px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
}

.advantages-image img {
    width: 100%;
}

.advantages-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: end;
    column-gap: 60px;
    row-gap: 10px;
    transform: translateX(0);
}

html[dir="rtl"] .advantages-items {
    transform: translateX(-30px);
}

.advantages-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 10px;
}

.advantages-item svg {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.advantages-item svg path {
    fill: #ffffff;
}

.advantages-item span {
    color: #ffffff;
    font-size: 20px;
}

/*------------------------------------------------------------------------------------*/
.faq .container {
    max-width: 800px;
    margin: 0 auto 150px auto;
}

.faq-heading {
    font-size: 28px;
    text-align: center;
    color: #ffffff;
    margin-bottom: 40px;
}

.faq-accordion-button {
    background-color: transparent;
    cursor: pointer;
    padding: 18px 18px 10px;
    width: 100%;
    border: none;
    outline: none;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    font-size: 18px;
    font-family: Assistant, sans-serif;
}

.faq-accordion-button.active > .faq-accordion-text {
    max-width: 145px;
}

.faq-accordion-text {
    color: #dbdbdb;
    padding: 0 25px 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: transparent;
    font-size: 16px;
    margin-bottom: 7px;
    text-align: justify;
}

.faq-accordion-text span {
    font-weight: bold;
}
/*------------------------------------------------------------------------------------*/
.footer {
    border-top: 1px solid #b6b6b614;
    background-color: #313f55;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    padding: 12px 8px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: #748cfc;
    border-radius: 99px;
    width: 200px;
    box-sizing: border-box;
    border: 2px solid #748cfc;
    transition: .2s;
}

.footer-link:hover {
    background-color: transparent;
}

.footer-action svg {
    width: 30px;
    height: 30px;
}

.footer-action svg path {
    fill: #ffffff;
}

.footer-logo {
    width: 90px;
    height: 90px;
}

.footer-logo img {
    width: 100%;
}

/*------------------------------------------------------------------------------------*/
.page-gallery {
    max-width: 1400px;
    margin: 150px auto;
    padding: 0 20px;
}

.page-gallery-heading {
    font-size: 28px;
    text-align: center;
    color: #ffffff;
    margin-bottom: 40px;
}

.page-gallery-items {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.page-gallery-item {
    width: 300px;
    height: 190px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid #b6b6b680;
    cursor: zoom-in;
    transition: transform .15s ease;
}

.page-gallery-item:active {
    transform: scale(.98);
}

.page-gallery-item img {
    width: 100%;
    object-position: center;
    display: block;
}
/*------------------------------------------------------------------------------------*/
.background-circles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1 !important;
}

.background-circle {
    filter: blur(20px);
    opacity: 50% !important;
    z-index: -1 !important;
    background-color: #a467f7;
    border-radius: 50%;
    position: absolute;
}

.background-circle.big {
    width: 180px;
    height: 180px;
    top: calc(0% - 90px);
    left: calc(2% - 90px);
    animation: translate-big 18s ease-in-out infinite;
}

.background-circle.medium {
    width: 136px;
    height: 136px;
    top: calc(10% + 45px);
    left: calc(99% - 45px);
    animation: translate-medium 16s ease-in-out infinite;
}

.background-circle.small {
    width: 114px;
    height: 114px;
    top: calc(95% - 114px);
    left: calc(99% - 57px);
    animation: translate-small 14s ease-in-out infinite;
}

@keyframes translate-big {
    0%, 100% {
        transform: translate(0, 0);
    }
    33.3% {
        transform: translate(calc(100vw - 40%), 25vh);
    }
    66.6% {
        transform: translate(0, 40vh);
    }
}

@keyframes translate-medium {
    0%, 100% {
        transform: translate(0, 0);
    }
    33.3% {
        transform: translate(-100vw, 20vh);
    }
    66.6% {
        transform: translate(0, 75vh);
    }
}

@keyframes translate-small {
    0%, 100% {
        transform: translate(0, 0);
    }
    33.3% {
        transform: translate(calc(-100vw + 30%), calc(-25vh - 50%));
    }
    66.6% {
        transform: translate(0, calc(-45vh - 50%));
    }
}