/* style-test.css */

* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f5;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

.gravitas-one-regular {
    font-family: "Gravitas One", serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 30px;
    font-style: normal;
}

.start-page-title {
    letter-spacing: 3px;
    font-family: 'Gravitas One',sans-serif;
    font-size: 27px;
    font-weight: 500;
    color: #333;
    text-transform: uppercase;
    line-height: 34px;
    margin-top: 30px;
}

.lang-text {
    display: flex;
    font-size: 10px;
    margin-top: 30px;
    justify-content: center;
    align-items: center;
}

.start-text-block {
    width: 75%;
    margin: 10px auto;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: #333;
    line-height: 18px;
}

.nav-vertical {
    display: flex;
    flex-direction: column;
    gap: 25px;
    /*margin-bottom: 20px;*/
    width: 100%;
}

.nav-vertical button {
    width: 100%;
    padding: 12px 16px;
    border-radius: 4px;
    background: #FCB3AD;
    box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.25);
    border: none;
    color: #FFFEFE;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.32px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
}

.nav-vertical button:hover {
    background: #e99bb3;
    transform: scale(1.02);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}

.image-block {
    display: flex;
    justify-content: center; /* выравнивание по центру */
    align-items: center; /* выравнивание по вертикали */
    gap: 0; /* расстояние между изображениями */
    margin: 30px 0;
}

.dog-image {
    text-align: center;
    min-height: 200px;
    display: flex;
    align-items: center;
}

.girl-image, .boy-image {
    text-align: center;
    min-height: 200px;
    display: flex;
    align-items: center; /* вертикальное выравнивание внутри контейнера */
    /*margin: 20px 0;*/
    /*min-height: 200px; !* Фиксированная высота для плавного переключения *!*/
}

.girl-dog-title-image {
    text-align: center;
    /*height: 50px;*/
    /*max-width: 100px;*/
    display: flex;
    align-items: center; /* вертикальное выравнивание внутри контейнера */
    /*margin: 20px 0;*/
    /*min-height: 200px; !* Фиксированная высота для плавного переключения *!*/
}

.dog-image img {
    max-width: 65px;
    margin-top: 90px;
    /*border-radius: 8px;*/
}

.girl-image img, .boy-image img {
    max-width: 150px;
    border-radius: 8px;
    /*display: none; !* Сначала скрываем все изображения *!*/
}

.dog-image img.active {
    display: inline-block; /* Показываем активное изображение */
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.version-info {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
}

@media (max-width: 600px) {
    .nav-vertical button {
        font-size: 16px;
        padding: 10px 16px;
        width: 80%; /* Уменьшение ширины */
        margin-left: auto;
        margin-right: auto;
    }

}
