

/* Start:/local/components/dmcg/project.detail/templates/.default/style.css?176578391210255*/
/* Общие стили */
.project-detail {
    color: #fff;
    min-height: 100vh;
}

.container {
    max-width: 1650px;
    margin: 0 auto;
    padding: 0 57px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #fff;
}

/* Баннер проекта */
.project-banner {
    position: relative;
    height: 90vh;
    overflow: hidden;
    margin-bottom: 80px;
}

.project-banner__image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.project-banner__mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    opacity: 0.8;
}

.project-banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.85) 0%, rgba(42, 82, 152, 0.75) 100%);
    z-index: 1;
}

.project-banner__content {
    position: relative;
    z-index: 2;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 700px;
}

.project-banner__title {
    font-size: 53px;
    font-family: "SangBleu Sunrise", serif;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.project-banner__text {
    font-size: 18px;
    line-height: 1.6;

    margin-bottom: 30px;
    opacity: 0.95;
}

.project-banner__address {
    display: flex;
    font-width: bold;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.icon-marker {
    fill: #fff;
}


.anchor-menu {
    display: flex;
    gap: 50px;
    max-width: 370px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.anchor-menu__link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.anchor-menu__link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.anchor-menu__link:hover {
    opacity: 0.8;
}

.anchor-menu__link:hover:after {
    width: 100%;
}

/* Характеристики */
.project-features {
    margin-bottom: 80px;
}

.project-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.feature-card__label {
    font-size: 14px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.feature-card__value {
    font-size: 24px;
    font-weight: 600;
}

/* Галерея */
.project-gallery {
    margin-bottom: 80px;
}

.gallery-section {
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.gallery-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.gallery-section__title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 60, 114, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item__overlay2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 60, 114, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.icon-zoom {
    fill: #fff;
    color: #fff;
}

/* Локация и О проекте */
.project-about {
    margin-bottom: 80px;
}

.project-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.project-about__map {
    border-radius: 12px;
    overflow: hidden;
    height: 500px;
}

.contacts-map,
#contactsMap {
    width: 100% !important;
    height: 100%;
}

#contactsMap ymaps {
    filter: grayscale(100%) !important;
}

.project-about__photos {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-photo-block {
    width: 100%;
}
.about-photo {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 153px;

    background-size: 110%;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: flex-end;

    transition:
            background-size 1.2s cubic-bezier(0.25, 0.1, 0.25, 1),
            background-position 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.about-photo:hover {
    background-size: 100%;
    background-position: center;
}
.about-photo__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.7);
}

.about-photo__content {
    position: relative;
    z-index: 2;
    padding: 30px;
    width: 100%;
}

.about-photo__title {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.about-photo__desc {
    font-size: 22px;
    line-height: 1.4;
    opacity: 0.9;
}

/* Описание */
.project-description {
    margin-bottom: 80px;
}

.project-description__content {

    margin: 0 auto;
}

.project-description__content h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #fff;
}

.project-description__content p, li {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

/* Поделиться */
.project-share {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.share-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.share-block__label {
    font-size: 16px;
    opacity: 0.8;
}

.share-block__buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.share-btn svg {
    fill: #fff;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 1px;
    font-family: "Isabella Sans", sans-serif;
}

.btn--primary {
    position: absolute;
    right: 60px;
    padding: 16px 40px;
    background: #0066ff;
    color: #ffffff;
    border-radius: 2px;
    text-transform: uppercase;
}

.btn--primary:hover {
    background: #0052cc;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
}


/* Уведомление о копировании */
.copy-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(30, 60, 114, 0.95);
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 10000;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.copy-notification--show {
    transform: translateX(-50%) translateY(0);
}

.copy-notification--error {
    background: rgba(200, 50, 50, 0.95);
}
.sbm{
    font-size: 16px;
    margin-top: 20px;
    color: #fff;
    text-decoration: underline;
}
/* Адаптив */
@media (max-width: 1024px) {
    .project-about__grid {
        grid-template-columns: 1fr;
    }

    .project-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .anchor-menu {
        gap: 15px;
        padding: 15px 20px;
    }

    .anchor-menu__link {
        font-size: 12px;
    }
}

@media (max-width: 768px) {

    .project-banner__mask{
        background-color: #0e2b42;
    }
    .anchor-menu__link{
        margin:0 auto;
    }
    .container{
        padding:0 19px;
    }
    .project-banner {
        height: 90vh;
    }

    .project-banner__content {
        height: 90vh;
    }

    .project-banner__title {
        font-size:38px;
    }

    .project-banner__text {
        font-weight: 700;
        font-size: 18px;
    }

    .project-features__grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .section-title {
        font-size: 28px;
    }

    .share-block {
        flex-direction: column;
        gap: 15px;
    }

    .anchor-menu {
        flex-wrap: wrap;
        gap: 10px;
    }

    .about-photo {
        height: 180px;
    }

    .about-photo__title {
        font-size: 24px;
    }

    .about-photo__desc {
        font-size: 20px;
    }
}

/* End */
/* /local/components/dmcg/project.detail/templates/.default/style.css?176578391210255 */
