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

body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
    width: 100%;
}
.divider {
    width: 80px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.7);
    margin: 10px auto;
    border-radius: 2px;
}

.slide {
    position: relative;
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7); /* затемнення */
}

.slide:nth-child(1) {
    background-image: url(''); /* Заміни на своє фото */
}

.slide:nth-child(2) {
    background-image: url('');
}

/* Текст у слайді */
.content {
    text-align: center;
    color: white;
    z-index: 10;
}
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 10;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.slider-dots .dot.active {
    background-color: white;
    transform: scale(1.2);
}

.small-text {
				color: rgba(255, 255, 255, 0.65);
				text-transform: uppercase;
				font-size: 1rem;
				font-weight: 300;
				margin: 0;
				padding-bottom: 0.75rem;
				letter-spacing: .25rem;
}

.large-text {
    font-size: 2rem;
    margin-bottom: 0;
    color: #FFF;
    font-weight: 300;
    padding-left: 5vw;
    padding-right: 5vw;
}

/* Стиль для фото */
.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Відповідність розміру без спотворень */
    z-index: -1; /* Фото буде на фоні */
}

/* Решта стилів залишаються без змін */


@media (max-width: 768px) {
    .small-text {
        font-size: 0.8rem;
    }

    .large-text {
        font-size: 1.5rem;
    }
}

.scroll-down-indicator {
    position: absolute;
    bottom: 30px;      /* Відступ від нижнього краю */
    right: 30px;       /* Відступ від правого краю */
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    animation: bounce 2s infinite;
    z-index: 10;
    cursor: pointer;
}



/* Ефект "підскакування" */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(10px);
    }
    60% {
        transform: translateX(-50%) translateY(5px);
    }
}

.slider {
    touch-action: pan-y; /* або none, якщо повністю хочеш заблокувати touch */
    overscroll-behavior-x: contain; /* Блокує прокрутку/навігацію */
    scroll-snap-type: x mandatory;  /* Опційно — щоб слайди красиво приліпали */
}
