* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

.hero {
    position: relative;
    min-height: 100vh;
    background: url('back.png') center/cover no-repeat fixed;
    display: flex;
}

/* Левый блок - 3/7 ширины */
.hero-left {
    width: 42.857%; /* 3/7 */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 10vh;
    padding-bottom: 10vh;
    padding-left: 9%;
    padding-right: 9%;
}

.logo {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.logo img {
    height: 75px;
    width: auto;
}

.cta-button {
    flex-shrink: 0;
    align-self: center;
    padding: 18px 30px;
    font-family: 'Roboto', sans-serif;
    font-size: 19.5pt;
    font-weight: 700;
    color: #050505;
    background-color: #D4BB2A;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    width: fit-content;
}

.cta-button:hover {
    background-color: #050505;
    color: #D4BB2A;
}

/* Правый блок - 4/7 ширины */
.hero-right {
    width: 57.143%; /* 4/7 */
    display: flex;
    flex-direction: column;
    padding: 40px 60px 40px 5%;
}

/* Контейнер для текстовых блоков - центрирование по вертикали */
.text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    margin-top: -12vh;
}

/* Меню */
.nav-menu {
    display: flex;
    gap: 38px;
    margin-top: 9vh;
    margin-bottom: 80px;
}

.nav-menu a {
    font-family: 'Roboto', sans-serif;
    font-size: 11pt;
    font-weight: 500;
    color: #7d7d7d;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-menu a:not(.outlined):hover {
    color: #D4BB2A;
}

.nav-menu a.outlined {
    color: #D4BB2A;
    border: 1px solid #D4BB2A;
    padding: 10px 20px;
    border-radius: 30px;
    transform: translateY(-10px);
}

.nav-menu a.outlined:hover {
    background-color: #D4BB2A;
    color: #050505;
}

/* Текстовый блок 1 */
.text-block-1 {
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
    font-size: 33pt;
    color: #ffffff;
    line-height: 1.3;
    max-width: 1098px;
    margin-bottom: 44px;
}

/* Текстовый блок 2 */
.text-block-2 {
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
    font-size: 19pt;
    color: #E6DB9E;
    line-height: 1.4;
    max-width: 1098px;
}

/* Второй блок лендинга */
.landing-section-2 {
    min-height: 100vh;
    background: url('back_2.png') center/cover no-repeat fixed;
    display: flex;
    flex-direction: column;
}

.landing-2-top {
    display: flex;
    flex-direction: column;
    padding: 4vh 10% 4vh 10%;
    flex-shrink: 0;
}

.landing-2-content {
    display: flex;
    align-items: stretch;
    gap: 64px;
}

.vertical-line {
    width: 4px;
    background-color: #000;
    flex-shrink: 0;
    align-self: stretch;
}

.landing-2-text {
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
    font-size: 19pt;
    color: #000;
    line-height: 1.4;
}

.landing-2-text strong {
    font-weight: 700;
}

.landing-2-bottom {
    flex: 1;
    padding: 0 14vh 10vh 14vh;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    user-select: none;
    scroll-behavior: smooth;
}

.landing-2-bottom:active {
    cursor: grabbing;
}

/* Скрываем скроллбар */
.landing-2-bottom::-webkit-scrollbar {
    height: 0px;
}

.landing-2-bottom::-webkit-scrollbar-track {
    background: transparent;
}

.landing-2-bottom::-webkit-scrollbar-thumb {
    background: transparent;
}

.interior-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    flex-shrink: 0;
}

.interior-wrapper-1 {
    margin-left: 0;
}

.interior-wrapper-2 {
    margin-left: 40px;
}

.interior-wrapper-3 {
    margin-left: 40px;
}

.interior-wrapper-4 {
    margin-left: 40px;
}

.interior-wrapper-5 {
    margin-left: 40px;
}

.interior-container {
    border-radius: 30px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: default;
    position: relative;
    height: auto;
}

.interior-image-wrapper {
    border-radius: 30px 30px 0 0; /* Top corners rounded, bottom corners 0 */
    overflow: hidden;
    display: block;
}

.interior-image {
    height: 65vh;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}


.interior-container:hover .interior-image {
    transform: scale(1.1);
}

.interior-overlay {
    position: relative;
    bottom: auto;
    right: auto;
    max-width: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    padding: 20px 30px;
    border-radius: 0 0 35px 35px; /* Top corners 0, bottom corners rounded */
    margin-top: 0px; /* 0px distance from image */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70pt;
}

.interior-overlay-text {
    font-family: 'Roboto Slab', serif;
    font-weight: 300;
    font-size: 17pt;
    color: #ffffff;
    text-align: center;
    margin: 0;
}

/* Модальное окно для просмотра изображения */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}

.image-modal.active {
    display: flex;
}

.image-modal img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

/* ===========================================
   АДАПТИВ для 1920px и меньше
   =========================================== */
@media (max-width: 1920px) {
    /* Меню - оставляем как есть */
    
    /* Hero блок */
    .cta-button {
        font-size: 18pt; /* -1.5pt */
    }
    
    .text-block-1 {
        font-size: 31pt; /* -2pt */
    }
    
    .text-block-2 {
        font-size: 18pt; /* -1pt */
    }
    
    /* Второй блок */
    .landing-2-text {
        font-size: 18pt; /* -1pt */
    }
    
    /* Надписи на картинках */
    .interior-overlay-text {
        font-size: 15pt; /* -2pt */
    }
}
