/* ---------------- Starter ---------------- */

.starter{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    min-height: 100vh;
    background: url("../assets/blue-bg.jpg") no-repeat center center fixed;
    background-size: cover;
    gap: 5% 0;
    position: relative;
    z-index: 1000;
}

.starter .logo-holder {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.starter .logo-holder a{
    line-height: 1;
}

.site{
    display: none;
    opacity: 0;
    transition: opacity 0.8s ease;

}

.site.visible {
    opacity: 1;
}


.starter .logo-holder {
    text-align: center;
    height: 0; /* Започваме с височина 0 */
    opacity: 0; /* Прозрачност 0 */
    overflow: hidden; /* За да избегнем съдържанието извън контейнера */
    animation: show-height-opacity 0.8s ease-in-out forwards; /* Добавяме анимация */
}

.starter .logo-holder p{
    font-family: 'Roobert';
    font-size: 30px;
    color: #fff;
    line-height: 1;
}

.playbook .top-part, .playbook .bottom-part{
    font-family: 'SSportsD';
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 16px;
}

.playbook .top-part{
    position: relative;
    right: -70px;
    margin-bottom: 30px;
}
.playbook .bottom-part{
    position: relative;
    left: -70px;
    margin-top: 30px;
}

.playbook .top-part span::before,
.playbook .bottom-part span::before {
    content: '';
    display: block;
    height: 2px;
    background-color: #fff;
    width: 0; /* Започваме с дължина 0 */
    animation: grow-line 0.8s ease-in-out forwards; /* Анимация при появяване */
    animation-delay: 0.8s;
}

.playbook .top-part span,
.playbook .bottom-part span {
    display: flex;
    flex: 1;
    position: relative;
    height: 2px;
}


.starter .text-container{
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
}

.starter .text-container h2{
    font-family: 'SkyText extended';
    font-weight: 500;
    font-size: 28px;
    color: #fff;
    margin-bottom: 10px;
}

.text-container p{
    font-family: 'SkyText', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #fff;
}

.buttons-holder{
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn-with-text{
    width: 280px;
    text-align: center;
    color: #fff;
}

.btn-with-text a{
    display: inline-block;
    padding: 10px 20px;
    background-color: #E71312;
    color: #fff;
    font-family: 'SSportsD';
    font-weight: 700;
    font-size: 28px;
    border-radius: 5px;
    text-decoration: none;

}

.btn-with-text p{
    font-family: 'SkyText extended', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #fff;
    margin-top: 10px;
}

.scroll-section{
    color: #fff;
    font-family: 'SkyText';
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}

.scroll-section img {
    margin-top: 10px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    animation: bounce-once 0.6s cubic-bezier(0.25, 1, 0.5, 1); /* Анимация при зареждане */
    animation-delay: 1.6s; /* Започва след grow-line и wobble */
}


.scroll-section img:hover {
    animation: bounce-once 0.6s cubic-bezier(0.25, 1, 0.5, 1); /* Същата анимация при hover */
}



