section {
    height: 100vh;
    color: #1F1F1F;
}
/* Hero секция */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
.hero-container {
    width: 100vw;
    height: 90vh;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 7.5vh;
}
.hero-image {
    height: 50%;
    border: 0.5em solid var(--main-color);
        border-radius: 50%;
}
.hero-text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 2em;
  }
.hero-text h1 {
    font-size: 6em;
    line-height: 1.250em;
    margin: 0;
    font-weight: 500;
}
.hero-text h1 span {
    padding: 0 0.15em 0.1em 0.15em;
}
.hero-text .highlight {
    background-color: var(--main-color);
    color: #fff;
    border-radius: 16px;
}
.hero-text .cta {
    font-size: 2em;
    color: var(--secondary-color-link);
    font-weight: 500;
}
.hero-text .cta:hover {
    color: var(--main-color);
}
.more-info {
    text-align: center;
    height: 10vh;
    color: var(--main-color);
    font-size: 24px;
}
  
/* Porsche секция */
.porshe {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5em;

    background-color: var(--main-color);
}
.porshe-text-section {
    width: 50%;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;

    color: #fff;
}
.porshe-title {
    box-sizing: border-box;

    width: 100%;
    height: 17.5vh;

    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1em;
}
.porshe-title img {
    height: 10vh;
}
.porshe-title div {
    height: 10vh;

    font-size: 5em;
    font-weight: 500;
    line-height: 10vh;
}
.porshe-description {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 1em;

    font-size: 3em;
}
.porshe-description-goal {
    width: 70%;
    font-size: 0.6em;
}
.porshe-description-offer {
    box-sizing: border-box;

    font-size: 0.7em;
    border: 0.1em solid white;
    border-radius: 16px;
    padding: 0.5em;
}
.porshe-video-section {
    height: 100vh;
    width: 25%;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;

    background-color: white;
}
.porshe-video-section video {
    width: 20em;
    height: 35em;
    object-fit: cover;
    border-radius: 16px;
}
  
/* Блок с кнопками */
.index-bottom-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 7.5em;
}
.button {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0.5em;

    cursor: pointer;
}
.button img {
    height: 5em;
    transition: transform 0.9s ease, box-shadow 0.9s ease;
}
.button p {
    font-size: 2.25em;
    text-transform: lowercase;
    margin: 0;
}
.button:hover {
    transform: scale(1.1);
} 

/* Адаптивные стили для разрешения 1080p и аналогичных */
@media screen and (max-height: 1080px) {
    /* Уменьшаем размеры текста в hero секции */
    .hero-text h1 {
        font-size: clamp(3em, 5vw, 5em);
    }
    .hero-text .cta {
        font-size: clamp(1.5em, 2vw, 1.8em);
    }
    .hero-container {
        gap: clamp(2vh, 5vh, 7.5vh);
    }
    .hero-image {
        height: clamp(30%, 40vh, 45%);
    }
    
    /* Адаптируем Porsche секцию */
    .porshe-title div {
        font-size: clamp(3em, 4vw, 4.5em);
        line-height: clamp(6vh, 8vh, 10vh);
    }
    .porshe-title img {
        height: clamp(6vh, 8vh, 10vh);
    }
    .porshe-description {
        font-size: clamp(2em, 2.5vw, 2.8em);
    }
    .porshe-video-section video {
        width: clamp(15em, 18vw, 20em);
        height: clamp(25em, 30vh, 35em);
    }
    
    /* Адаптируем кнопки навигации */
    .index-bottom-nav {
        gap: clamp(3em, 5vw, 6em);
    }
    .button img {
        height: clamp(3em, 4vw, 4.5em);
    }
    .button p {
        font-size: clamp(1.5em, 2vw, 2em);
    }
}

@media screen and (max-width: 1920px) and (max-height: 1080px) {
    /* Дополнительная оптимизация для Full HD */
    .hero-container {
        height: clamp(75vh, 85vh, 90vh);
    }
    .porshe-text-section {
        width: clamp(45%, 50%, 55%);
    }
    .porshe-video-section {
        width: clamp(20%, 25%, 30%);
    }
}

@media screen and (max-width: 1366px) {
    /* Для разрешений типа 1366x768 */
    .hero-text h1 {
        font-size: clamp(2.5em, 4vw, 4em);
    }
    .porshe {
        gap: clamp(2em, 3vw, 4em);
    }
    .index-bottom-nav {
        gap: clamp(2em, 3vw, 4em);
        flex-wrap: wrap;
    }
}