@font-face {
    font-family: "DancingScript";
    src: url("../fonts/DancingScript.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
/*заглавные*/
@font-face {
    font-family: "BebasNeue";
    src: url("../fonts/BebasNeue-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "JosefinSans";
    src: url("../fonts/JosefinSans-Bold.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Oswald-Regular";
    src: url("../fonts/Oswald-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

h1 {
    font-family: var(--awam-font-menu);
    font-size: 58px;
    margin-bottom: 35px;
    color: var(--awam-color-text);
}
h2 {
    font-family: var(--awam-font-menu);
    font-size: 48px;
    margin-bottom: 35px;
    color: var(--awam-color-text);
}
h3 {
    font-family: var(--awam-font-menu);
    font-size: 46px;
    margin-bottom: 35px;
    color: var(--awam-color-text);
}
h4 {
    font-family: var(--awam-font-menu);
    font-size: 38px;
    margin-bottom: 35px;
    color: var(--awam-color-text);
}
p {
    font-family: var(--awam-font-p);
    font-size: 22px;
    color: var(--awam-color-text);
    margin-bottom: 35px;
}
a{
    text-decoration: none;
    color:  var(--awan-color-weis);
}
a:hover{
    color: var(--awam-color-hover);
}
li{
    font-family: var(--awam-font-p);
    font-size: 22px;
    color: var(--awam-color-text);
    margin-bottom: 5px;
}
ul{
    margin: 0 0 2rem 3rem;
}
button,
.awam_a_button{
    border: 0.15rem solid var(--awan-color-weis);
    color: var(--awan-color-weis);
    font-family: var(--awam-font-galery);
    letter-spacing: 0.1rem;
    font-size: 1.3rem;
    background: transparent;
    border-radius: 8px;
    padding: 5px 15px;
    transition: 0.3s;
}
button:hover,
.awam_a_button:hover{
    border-color: var(--awam-color-hover);
    color: var(--awam-color-hover);
    transition: 0.5s;
}
/*запрет перетаскивания img*/
img {
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-drag: none;
    pointer-events: none; /* ключевой момент */

}

.awam-glass{
    /* Матовое стекло */
    background-color: rgba(255, 255, 255, 0.15); /* лёгкая белая дымка */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.awam-glass-50{
    /* Матовое стекло */
    background-color: rgba(255, 255, 255, 0.50); /* лёгкая белая дымка */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.awam-glass-90{
    /* Матовое стекло */
    background-color: rgba(255, 255, 255, 0.90); /* лёгкая белая дымка */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.awam_display_none{
    display: none !important;
}
/*OFFCANVAS*/
/*убираем сдвиг от полосы прокрутки*/
.offcanvas-backdrop {
    padding-right: 0 !important;
}
.offcanvas-header{
    justify-content: right;
}
.offcanvas-logo,
.offcanvas-menu{
    display: flex;
    justify-content: center;
    align-items: center;
}

/*MENU*/
.offcanvas-menu-center{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.offcanvas-menu nav{
    width: 100%;
}
.nav {
    flex-direction: column;      /* вертикально */
    gap: 10px;                   /* расстояние между пунктами */
    text-align: center;
}
.nav-link {
    padding: 8px 0;              /* вертикальные отступы */
    font-family: var(--awam-font-menu);
    font-size: 38px;
    color: #222222;
    line-height: 42px;
}
.nav-link:hover {
    font-family: var(--awam-font-menu);
    font-size: 36px;
    color: var(--awam-color-hover);
    transition: 0.3s;
}
.offcanvas-boosty,
.offcanvas-logomark{
    display: inline-block;
    width: 100px;
    height: 100px;
    background-size: contain ;
    margin: 5px;
}
.offcanvas-boosty{
    background: url("../images/bg_icon/boosty_idle.png") no-repeat center;
}
.offcanvas-logomark{
    background: url("../images/bg_icon/ss_logomark_idle.png") no-repeat center;
}
.offcanvas-boosty:hover{
    background: url("../images/bg_icon/boosty_hover.png") no-repeat center;
    transition: 0.3s;
}
.offcanvas-logomark:hover{
    background: url("../images/bg_icon/ss_logomark_hover.png") no-repeat center;
    transition: 0.3s;
}
/* INTRO VIDEO */

/* Видеозаставка */
#intro-video-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: black;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2;
    overflow: hidden;
    opacity: 1;
    transition: opacity 1s ease;
    touch-action: pan-y;
}

/* Видео скрыто до загрузки */
#intro-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
}

/* Счётчик */
#intro-loader {
    position: absolute;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    z-index: 10000;
}

.intro-skip {
    position: absolute;
    bottom: 25px;
    left: 45%;
    width: 10%;
    z-index: 10001;
    font-size: 1rem;
    cursor: pointer;
}

.loader-number {
    animation: pulse 1s infinite ease-in-out;
}

@keyframes pulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

/*canvas*/
#particles {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2; /* поверх фоновых картинок (видно на всех секциях) */
    background: transparent;
    pointer-events: none;
}

#site-content {
    position: relative;
}

/*///////////////////////////////////////////*/

/*HEADER*/
.awam-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 3;
}
.awam-header .awam-logo,
.offcanvas .awam-logo{
    display: block;
    width: 100px;
    height: 100px;
}
.awam-header .awam-logo{
    background: var(--awam-icon-logo) no-repeat center;
    background-size: cover;
}
.offcanvas .awam-logo{
    background: url("../images/bg_icon/logo_landp_black.png") no-repeat center;
    background-size: cover;
}
.awam-header .awam-logo{
    opacity: 1;
    transition: filter .3s ease;
}
.container-max{
    width: 100%;
    padding: 0 10%;
}
/* Когда сайт показан — логотип плавно появляется */
.awam-logo.fade-in {
    opacity: 1;
}

.navbar-toggler {
    border-color:  #252525;
    background-color: #fff;
}
.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none !important;
}
.offcanvas {
    transition: transform 0.5s ease-in-out !important;
}

.offcanvas.show {
    transition: transform 0.5s ease-in-out !important;
}
.offcanvas-backdrop {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.offcanvas-backdrop.show {
    opacity: 0.5;
}

/*CONTENT HOME*/
.awam-content{
    position: relative;
    min-height: calc( 100vh - var(--awam-footer-h) );
}
.awam-breadcrumbs{
    font-family: var(--awam-font-galery)!important;
}
.bg-body-tertiary{
    background-color: transparent !important;
}
.awam-home-page{
    z-index: 1;
}

.awam-section{
    min-height: 100vh;
}

.awam-hero{
    position: relative;
    background: url("../images/bg_icon/main_menu_part2.png") no-repeat center;
    background-size: cover;
}

.awam-hero__photo{
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 45vw;
    max-height: 70vh;
    width: auto;
    height: auto;
    pointer-events: none;
}
.container-vert-center{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 50px 10px;
}
/*стили фото куба*/
.img-cube-container{
    margin: 30px auto;
    width: 260px;
    height: 260px;
    position: absolute;
    left: 5%;
    bottom: 12%;
    perspective: 1000px;
}
/* ТЕНЬ */
.img-cube-container::after{
    content: "";
    position: absolute;
    width: 200px;
    height: 40px;
    left: 50%;
    bottom: -60%;
    transform: translateX(-50%);

    background: radial-gradient(
            ellipse at center,
            rgba(83, 89, 100, 0.95) 0%,
            rgba(83, 89, 100, 0.25) 40%,
            rgba(83, 89, 100, 0.05) 65%,
            transparent 10%
    );

    filter: blur(8px);
    z-index: 0;
}
.img-cube {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    transform: translateZ(-130px) rotateY(0deg);
    animation: cube 22s infinite;
}
.img-cube figure {
    width: 100%;
    height: 100%;
    margin: 0;
    position: absolute;
}
.img-cube figure img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    border: 3px solid #FFF;
}
.img-cube figure a {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    object-fit: cover;
    object-position: center center;
}
figure:nth-child(1) {
    transform: rotateY(0deg) translateZ(130px);
}
figure:nth-child(2) {
    transform: rotateX(180deg) translateZ(130px);
}
figure:nth-child(3) {
    transform: rotateY(90deg) translateZ(130px);
}
figure:nth-child(4) {
    transform: rotateY(-90deg) translateZ(130px);
}
figure:nth-child(5) {
    transform: rotateX(90deg) translateZ(130px);
}
figure:nth-child(6){
    transform: rotateX(-90deg) translateZ(130px);
}
@keyframes cube {
    0% {
        transform: translateZ(-130px) rotateY(0deg);
    }
    16.66% {
        transform: translateZ(-130px) rotateX(-180deg);
    }
    33.32% {
        transform: translateZ(-130px) rotateY(-90deg);
    }
    50% {
        transform: translateZ(-130px) rotateY(90deg);
    }
    66.66% {
        transform: translateZ(-130px) rotateX(-90deg);
    }
    83.32% {
        transform: translateZ(-130px) rotateX(90deg);
    }
    100% {
        transform: translateZ(-130px) rotateY(0deg);
    }
}
/* Планшеты (до ~992px) */
@media (max-width: 991.98px) {
    .img-cube-container{
        width: 160px;
        height: 160px;
        left: 5%;
        bottom: 9%;
    }
    .img-cube {
        transform: translateZ(-80px) rotateY(0deg);
    }
    figure:nth-child(1) {
        transform: rotateY(0deg) translateZ(80px);
    }
    figure:nth-child(2) {
        transform: rotateX(180deg) translateZ(80px);
    }
    figure:nth-child(3) {
        transform: rotateY(90deg) translateZ(80px);
    }
    figure:nth-child(4) {
        transform: rotateY(-90deg) translateZ(80px);
    }
    figure:nth-child(5) {
        transform: rotateX(90deg) translateZ(80px);
    }
    figure:nth-child(6){
        transform: rotateX(-90deg) translateZ(80px);
    }
    @keyframes cube {
        0% {
            transform: translateZ(-80px) rotateY(0deg);
        }
        16.66% {
            transform: translateZ(-80px) rotateX(-180deg);
        }
        33.32% {
            transform: translateZ(-80px) rotateY(-90deg);
        }
        50% {
            transform: translateZ(-80px) rotateY(90deg);
        }
        66.66% {
            transform: translateZ(-180px) rotateX(-90deg);
        }
        83.32% {
            transform: translateZ(-80px) rotateX(90deg);
        }
        100% {
            transform: translateZ(-80px) rotateY(0deg);
        }
    }
}

/* Мобильные устройства (до ~576px) */
@media (max-width: 575.98px) {
    .img-cube-container{
        width: 160px;
        height: 160px;
        left: 8%;
        bottom: 2%;
    }
}
/*CONTENT*/
.h1_weis{
    color: var(--awan-color-weis);
    padding-top: var(--awam-header-h);
}
.awam-page-section{
    display: flex;
    justify-content: center;
    align-items: start;
    min-height: 100vh;
}
.awam-gallery{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: space-between;
}
.awam-gallery-page {
    position: relative;

}
.awam-gallery-page {
    background: url("../images/bg_icon/logo_landp_black.png");
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
}
.awam-background-fixed{
    background-attachment: fixed !important;
}
.align-items-center{
    align-items: center;
}
.page-description{
    margin: 35px 0;
    padding: 25px;
    border-radius: 12px;
    overflow: hidden;
}
.page-description img{
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
}
/*FOOTER*/
footer{
    position: relative;
    min-height: var(--awam-footer-h);
    z-index: 1;
}
.awat-text-copy{
    color: var(--awan-color-weis);
}
/*пагинация*/
.awam-pagination{
    position: relative;
    display: flex;
    justify-content: right;
    margin: 35px 15px;
    z-index: 4;
}
.awam-page-item{
    display: inline-block;
    width: 50px;
    height: 50px;
    margin: 0 5px;
    border-radius: 8px;
}

.awam-page-item button,
.awam-page-item span{
    border: 0.15rem solid var(--awan-color-weis);
    width: 50px;
    height: 50px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--awan-color-weis);

    padding: 0;
    margin: 0;
}
@media (max-width: 575.98px) {
    .awam-pagination{
        margin: 25px 0px;
        justify-content: center;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .awam-pagination .awam-first:not(.active),
    .awam-pagination .awam-last:not(.active),
    .awam-pagination .awam-ellipsis{
        display: none;
    }
    .awam-page-item{
        width: 35px;
        height: 35px;
    }
    .awam-page-item button,
    .awam-page-item span{
        width: 35px;
        height: 35px;
        border-radius: 5px;
    }
    .awam-page-item button, .active span{
        font-size: 1rem;
    }
}
.awam-page-item button:hover{
    border: 0.15rem solid var(--awam-color-rosa);
    color: var(--awam-color-rosa);
}
.awam-pagination .active span{
    background: var(--awan-color-weis);
    color: var(--awam-color-text);
    font-size: 1.4rem;
}
.awam-page-item span svg{
    width: 20px;
    height: 20px;
    opacity: 0.5;
}

.awam-page-item button:hover svg{
    width: 25px;
    height: 25px;
}

/*стиль walkthrough описания*/
.walkthrough_title{
    font-family: var(--awam-font-galery);
    color: var(--awan-color-weis);
    font-size: 1.5rem;
}
.awam_a_button{
    display: inline-block;
    position: relative;
    z-index: 3;
}
/*страницы регистрации*/

.awam-register{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 35px;
    z-index: 2;
}
.awam-register h1{
    text-align: center;
}
.awam-register-page{
    min-height: calc( 100vh - var(--awam-footer-h));
}
.awam-register-form{
    width: 40%;
    padding: 35px 10px 10px 10px;
    border: 1px solid var(--awan-color-weis);
    border-radius: 8px;
    text-align: center;
    background: rgba(4, 4, 4, 0.15);
}
.awam-register-form-str,
.awam-register-form-str-left{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}
.awam-register-form-str-left{
    justify-content: start;
}
.awam-register-form-check-input{
    width: 20px;
    height: 20px;
    margin-right: 20px;
}
.awam-register-form-input{
    height: 45px;
    width: 60%;
    border: 1px solid var(--awan-color-weis);
    border-radius: 8px;
    padding: 0 10px;
}
.awam-register-form-label{
    font-family: var(--awam-font-galery);
    font-size: 1.5rem;
    color: var(--awan-color-weis);
}
.awam-register-form-button{
    margin-top: 25px;
}
.awam-register-form-input:active, .awam-register-form-input:hover, .awam-register-form-input:focus {
    outline: 0;
    outline-offset: 0;
}

@media (max-width: 991.98px) {
    .awam-register-form{
        width: 75%;
    }
}
@media (max-width: 575.98px) {
    .awam-register-form{
        width: 95%;
    }
    .awam-register-form-label{
        font-size: 1rem;
    }
}
.awam-register-error{
    color: var(--awam-color-rosa);
    font-size: 1rem;
}
.awam-register-success{
    font-family: var(--awam-font-galery);
    font-size: 1.5rem;
    text-align: center;
    background-color: rgb(18, 104, 0);
    margin-bottom: 20px;
    padding: 10px 20px;
    color: var(--awan-color-weis);
}
.inform_booton{
    text-align: right;
    margin-top: 10px;
}
.inform_booton button{
    border-color: var(--awam-color-rosa);
}
.inform_booton svg {
    width: 25px;
    height: 25px;
    fill: var(--awam-color-rosa);
    cursor: pointer;
}
.inform_booton:hover  svg {
    transform: scale(1.5);
}
/*DOWNLOAD*/
/* Контейнер карточки */
.awam-download-inner {
    border: 1px solid var(--awan-color-weis);
    border-radius: 8px;
    box-shadow: 0px 12px 16px 0px rgba(68, 60, 53, 0.4);
    overflow: hidden; /* важно для красивого зума картинки */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Увеличение карточки при наведении */
.awam-download-inner:hover {
    transform: scale(1.1);
    box-shadow: 0px 16px 22px rgba(68, 60, 53, 0.55);
}

/* Контейнер изображения */
.awam-download-img {
    min-height: 250px;
    background: var(--awam-icon-logo) no-repeat center center;
    background-size: 100px 100px;
    overflow: hidden; /* важно, чтобы не было рамок */
}

/* Фото по умолчанию — слегка увеличено */
.awam-download-img img {
    width: 100%;
    min-height: 250px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    transform: scale(1.3); /* стартовое увеличение */
    transition: transform 0.4s ease;
}

/* При наведении — фото уменьшается до нормального размера */
.awam-download-inner:hover .awam-download-img img {
    transform: scale(1);
}
.awam-download-title{
    font-family: var(--awam-font-galery);
    color: var(--awan-color-weis);
    font-size: 1.5rem;
    text-align: center;
    border-top:  2px solid var(--awan-color-weis);
    padding: 10px 0;
}
.awam-download-description{
   display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: var(--awan-color-weis);
    opacity: 0.8;
    height: 100px;
    padding: 0 5px;
}
.awam-download-bottom{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
    padding: 5px;
}
/*кабинет пользователя*/
.awam-cabinet-page{
    background-color: rgb(0, 0, 0);
}
.awam-cabinet-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
    margin-top: var(--awam-header-h);
}
.awam-cabinet-header h1{
    margin: 0;
    padding: 0;
}
.awam-cabinet-cart{
    position: relative;
    gap: 20px;
    padding: 20px 10px;
    z-index: 5;
    /*background-color: var(--awan-color-weis);*/
    border: 1px solid var(--awan-color-weis);
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.awam-cabinet-cart p{
    margin: 10px 0;
}
.awam-cabinet-cart p i{
    display: inline-block;
    width: 250px;
}
.alert-warning .awam_a_button{
    border-color: var(--awam-color-rosa-05);
    color: var(--awam-color-rosa-05);
}
/*INFORMATION*/
.information-inner{
    border: 1px solid var(--awan-color-weis);
    border-radius: 8px;
    overflow: hidden; /* важно для красивого зума картинки */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    -webkit-box-shadow: 0px 6px 8px 1px rgba(255, 255, 255, 0.2);
    -moz-box-shadow: 0px 6px 8px 1px rgba(255, 255, 255, 0.2);
    box-shadow: 0px 6px 8px 1px rgba(255, 255, 255, 0.2);
}
.information-cart{
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
}
.information-cart svg{
    width: 60px;
    height: 60px;
    fill: var(--awan-color-weis);
    margin: 0 25px;
}
.information-inner .awam_a_button{
    margin:0 25px;
}
.information-title i{
    color: rgb(157, 157, 157);
}
.information-title p{
    font-family: var(--awam-font-galery);
    font-size: 1.5rem;
    text-align: center;
    color: var(--awan-color-weis);
}
