/* GENERAL STYLES
================================================== */
html {
    height: 100%;
}

body {
    font: 15px/23px 'Raleway', sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}

p {
    font-size: 20px;
    line-height: 140%;
    text-align: center;
}

ul li {
    display: inline-block;
    list-style: none;
    padding-right: 10px;
}

.wrapper {
    z-index: 600;
    position: relative;
}

.pattern {
    background-image: url(../images/pattern.png);
    background-repeat: repeat;
    background-attachment: scroll;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.divider {
    background-image: url(../images/divider.png);
    display: block;
    width: 300px;
    height: 35px;
    margin: 10px auto;
}

#colorize {
    font-family: 'Raleway', sans-serif;
    font-size: 2vw; /* Уменьшено на 20% */
    color: #fcb9c6;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
    padding-top: 20px;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    line-height: 1.2; /* Увеличиваем межстрочный интервал */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);  /* Черная тень для контраста */
}

.big-background {
    z-index: 550;
    text-align: center;
    height: 100%;
    min-height: 100%;
    position: relative;
    overflow: hidden;
}

.big-background .big-background-container {
    width: 830px;
    max-width: 100%;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.big-background-title {
    font-family: 'Raleway', sans-serif;
    font-size: 2vw; /* Уменьшено на 20% */
    color: #fcb9c6;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
    padding-top: 20px;
    display: inline-block;
    letter-spacing: 0.1em;  /* Увеличиваем межбуквенный интервал */
    transition: all 0.3s ease;
    position: relative;
    line-height: 1.2; /* Увеличиваем межстрочный интервал */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);  /* Черная тень для контраста */
    padding: 10px 20px; /* Добавляем отступы вокруг текста */
    border-radius: 10px; /* Закругляем углы для лучшего визуального восприятия */
}

.big-background-title:hover {
    color: #ff80b3;
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    background-color: rgba(255, 255, 255, 0.7); /* Немного усиливаем фон при наведении */
}

/* Медиазапросы для обеспечения контроля над размером шрифта на мобильных устройствах */

@media screen and (max-width: 1024px) {
    .big-background-title {
        font-size: 6.4vw; /* Уменьшено на 20% */
    }
}

@media screen and (max-width: 768px) {
    .big-background-title {
        font-size: 7.2vw; /* Уменьшено на 20% */
    }
}

@media screen and (max-width: 480px) {
    .big-background-title {
        font-size: 10.24vw; /* Уменьшено на 20% */
    }

    .small-background-title {
        line-height: 1;
    }
}

@media screen and (max-width: 360px) {
    .big-background-title {
        font-size: 11.52vw; /* Уменьшено на 20% */
    }
}

@media screen and (max-width: 320px) {
    .small-background-title {
        font-size: 19.2px; /* Уменьшено на 20% */
    }
}

a.big-background-btn {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: transparent;
    border: 2px solid #fff;
    padding: 10px 14px;
    cursor: pointer;
    letter-spacing: 2px;
    text-align: center;
    display: inline-block;
    -webkit-transition: .4s background ease;
    -moz-transition: .4s background ease;
    -o-transition: .4s background ease;
    transition: .4s background ease;
}

.big-background-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.20);
}

.big-background-default-image {
    background: url(../images/sunset.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: 0;
    backface-visibility: hidden;
}

/* ATTRACTIVE BUTTON
================================================== */
.attractive-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ff6600; /* Яркий цвет фона */
    color: white; /* Белый текст */
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 50px; /* Скругленные углы */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Легкая тень */
    transition: all 0.3s ease;
    animation: pulse 2s infinite; /* Анимация пульсации */
}

.attractive-btn:hover {
    background-color: #ff3300; /* Цвет при наведении */
    transform: translateY(-5px); /* Эффект "поднятия" при наведении */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Увеличенная тень */
}

/* Анимация пульсации */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1); /* Увеличиваем кнопку на 10% */
    }
    100% {
        transform: scale(1);
    }
}

/* MEDIA QUERIES
================================================== */

@media screen and (max-width: 768px) {
    .about-section-title {
        line-height: 1;
    }
}

@media screen and (max-width: 480px) {
    .big-background-title {
        font-size: 58px;
    }

    .small-background-title {
        line-height: 1;
    }
}

@media screen and (max-width: 360px) {
    .big-background-title, #colorize {
        line-height: 1;
    }
}

@media screen and (max-width: 320px) {
    .small-background-title {
        font-size: 30px;
    }
}
