html{
    scroll-behavior: smooth;
    background-color: #ffffff;
}
h2, h3, h4, h5, h6, p, a, button, li{
    font-family: "Montserrat", sans-serif;
}

h1{
    font-family: "Montserrat", sans-serif;
    font-weight: lighter;
}


#contacts{
    background-image: url("img/main.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.white-btn {
    /* Додаємо плавний перехід для кольору та підкреслення */
    transition: background-color 0.3s ease-in-out, text-decoration 0.3s ease-in-out;
}

.white-btn:hover {
    /* Трохи затемнюємо фон: білий (bg-white) переходить у дуже світло-сірий */
    background-color: #f3f4f6 !important; /* Tailwind gray-100 */

    /* Додаємо підкреслення тексту */
    text-decoration: underline;

    /* Прибираємо екстремальне зменшення розміру */
    transform: none;
}
.blue-btn{
    background-color: #0B0B33;
    font-family: "Montserrat", monospace;
}

.speakers h2{
    color: #0B0B33;
}

header{
    background-image: url("img/main.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    background-attachment: fixed;
    overflow-x: hidden;
}


/* Контейнер для всієї секції */
.block-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

/* Фоновий блок */
.block-container {
    width: 100%;
    height: 350px; /* Висота контейнера */
    background-image: url("img/4.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: left;
    position: relative;
    border-radius: 20px;
}


/* Текстовий блок */
.block-content {

    color: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    text-align: left;
    max-width: 300px;
    width: 90%;
}


.speaker-card {
    position: relative;
    border-radius: 20px;
    filter: grayscale(100%);
}

.speaker-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}


.services{
    /*background-color: rgba(4, 0, 128, 0.91);*/
    /*background-image: url("img/3.jpg");*/
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/
    /*background-position: center;*/
}

.service-card {
    padding: 1.5rem;
    border-radius: 20px;
    color: black;
    text-align: left;
}

.service-card h3 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.service-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.875rem;
    line-height: 1.6;
}

.service-card:first-child {
    background-color: rgba(5, 0, 159, 0.91);
    color: white;

}


.form-container{
    border: 1px solid rgba(255, 255, 255, 0.25);
}

input{
    background-color: rgba(255, 255, 255, 0.33);
    height: 40px;
}
label{
    font-family: "Montserrat", sans-serif;
    display: flex;
    align-items: center;
    gap: 4px;

}

.btn-blue{
    background-color: rgba(5, 0, 159, 0.91);
    border-radius: 20px;
}

.proposal {
    background: linear-gradient(to bottom, #efefef, #d2d2d2);
    width: 350px;
    padding: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .proposal {

        width: 250px;

    }
    header{
        background-image: url("img/mob.jpg");

    }
    header, #contacts {
        background-attachment: scroll !important;
    }
}