* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Заголовки */
h1, h2, h3, h4, h5, h6,
.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Кнопки */
.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

body {
    font-family: 'Quicksand', sans-serif;

    background: #fff;
    color: #222;
    line-height: 1.5;
    font-size: 18px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ================== Кнопки ================== */
.btn {
    display: inline-block;
    background: linear-gradient(90deg, #006fff, #0052cc, #006fff);
    background-size: 300% 300%;
    color: #fff;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: transform 0.3s ease;
    animation: neonGlow 3s infinite, pulse 2.5s infinite;
    box-shadow: 0 0 3px rgba(0, 111, 255, 0.6), 0 0 6px rgba(0, 102, 255, 0.4);
}

.btn:hover {
    transform: scale(1.08);
}

/* Анимации кнопки */
@keyframes neonGlow {
    0% { background-position: 0% 50%; box-shadow: 0 0 10px #006fff, 0 0 20px #0052cc; }
    50% { background-position: 100% 50%; box-shadow: 0 0 10px #33c9ff, 0 0 20px #006fff; }
    100% { background-position: 0% 50%; box-shadow: 0 0 10px #006fff, 0 0 20px #0052cc; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.01); }
    100% { transform: scale(1); }
}

/* ================== Первый экран ================== */
.hero {
    position: relative;
    background: url('../images/banner.png') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    color: #fff;
    text-align: center;
    padding: 0 15px;
    padding-top: 10vh;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

/* ================== Блок о LORD ================== */
.about {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about img {
    max-width: 660px;
    border-radius: 30%;
    margin-bottom: 25px;
}

.about p {
    font-size: 1.5rem;
    line-height: 1.6;
}

/* ================== Заголовки секций ================== */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin: 50px 0 25px;
    font-weight: bold;
}

/* ================== Слайдер ================== */
.swiper {
    width: 100%;
    padding: 20px 0 50px;
}
.swiper-slide {
    background: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.swiper-slide iframe,
.swiper-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* ================== CTA ================== */
.cta {
    text-align: center;
    padding: 60px 20px;
}
.socials {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.socials a {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #006fff;
    border-radius: 50%;
    color: #006fff;
    font-size: 1.4rem; /* размер иконки */
    transition: all 0.3s ease;
}

.socials a:hover {
    background: #006fff;
    color: #fff;
}


/* ================== Футер ================== */
footer {
    background: #111;
    color: #888;
    text-align: center;
    padding: 20px;
    font-size: 1rem;
}

/* ================== Адаптив ================== */

/* 📱 Смартфоны */
@media (max-width: 767px) {
    body {
        font-size: 16px;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    .about img {
        max-width: 250px;
    }
    .about p {
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.4rem;
    }
    .swiper-slide iframe,
    .swiper-slide img {
        height: 250px;
    }
    footer {
        font-size: 0.85rem;
    }

    .section-title{
        margin-top: 10px;
    }

    .socials a {
        width: 50px;
        height: 50px;
    }
}

/* 📲 Очень маленькие экраны */
@media (max-width: 400px) {
    body {
        font-size: 14px;
    }
    .hero h1 {
        font-size: 1.4rem;
    }
    .about p {
        font-size: 0.9rem;
    }
    .section-title {
        font-size: 1.2rem;
    }
    .swiper-slide iframe,
    .swiper-slide img {
        height: 200px;
    }
    footer {
        font-size: 0.75rem;
    }
}

/* Общий контейнер для каруселей */
.swiper-wrapper-container {
    padding: 0 40px; /* отступы слева и справа на десктопе */
}

/* 📱 Смартфоны */
@media (max-width: 767px) {
    .swiper-wrapper-container {
        padding: 0 15px; /* меньше отступы */
    }
}

/* 📲 Очень маленькие экраны */
@media (max-width: 400px) {
    .swiper-wrapper-container {
        padding: 0 10px;
    }
}

/* ================== Стиль для стрілок Swiper ================== */
.swiper-button-next,
.swiper-button-prev {
    color: white;        /* червоний колір */
    width: 45px;           /* ширина кнопки */
    height: 45px;          /* висота кнопки */
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.5rem;       /* розмір стрілки */
    font-weight: bold;      /* зробити її товстішою */
}
