/* Нулиране на отстояния и рамки */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Основен фон */
body {
    background: linear-gradient(135deg, #f3bf3a, #f8f5f6, #cd3131);
    color: #fff;
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;        /* Центриране хоризонтално */
    justify-content: flex-start; /* Започваме от горната част */
    min-height: 100vh;          /* Запълва целия прозорец */
    padding-top: 40px;          /* Малко разстояние отгоре */
}

/* Лого-Wrapper – центриране на логото */
.logo-wrapper {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;

}

/* Лого */
.logo-wrapper img {
    width: 170px;    /* Фиксирана ширина */
    height: auto;
    display: block;
    border-radius: 50px;
}

/* Заглавие „Вие сте?“ */
.role-question {
    text-align: center;
    font-size: 2rem;
    font-family: 'Comic Sans MS', 'Poppins', cursive;
    font-weight: bold;
    color: #201115;  /* Червеникав текст */
    margin-bottom: 20px;
}

/* Контейнер за бутоните */
.role-buttons {
    display: flex;
    gap: 20px;       /* Разстояние между бутоните */
}

/* Общи стилове за бутоните */
.role-btn {
    width: 150px;
    padding: 12px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    border: none;             /* Махаме бордъра */
    transition: transform 0.3s;
}

/* Ефект при hover */
.role-btn:hover {
    transform: scale(1.05);
}

/* Червен бутон (Родител) */
.btn-parent {
    background-color: #c82620;
    color: #201115;
    border-radius: 50px;
}
.btn-parent:hover {
    background-color: #b30000;
}

/* Жълт бутон (Учител) */
.btn-teacher {
    background-color: #caa528;
    color: #201115;
    border-radius: 50px;
}
.btn-teacher:hover {
    background-color: #c89515;
}
