/* —— layout reset —— */
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #0f0f0f;
}

/* —— image slider —— */
.image-slider {
    height: 100vh;
    width: 100%;
}
.image-slide {
    height: 100vh;
}
.slick-slide {
    transition: transform 0.7s cubic-bezier(0.84, 0, 0.08, 0.99);
}
.slick-slide.slick-center {
    transform: scale(1.2);
    transition: transform 0.8s 1.4s cubic-bezier(0.84, 0, 0.08, 0.99);
}

/* —— text slider —— */
.text-slider-wrapper {
    position: absolute;
    top: 30%;
    width: 100%;
    z-index: 2;
}
.text-slide h1 {
    font-family: "Cinzel", serif;
    font-weight: 300;
    font-size: 64px;
    color: #fff;
    padding-left: 10%;
    text-transform: uppercase;
    line-height: 1.1;
}

/* —— UI bits —— */
.slider-control {
    position: absolute;
    bottom: 4%;
    left: 15%;
    transform: translate(-50%, -50%);
    display: flex;
    z-index: 2;
}
button {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 24px;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    margin: 0.4em;
}

/* —— decorative bars —— */
.block-1,
.block-2,
.block-3,
.overlay {
    position: fixed;
    top: 0;
    height: 100vh;
}
.block-1 {
    width: 5%;
    left: 0;
    background: #0f0f0f;
    z-index: 1;
}
.block-2 {
    width: 25%;
    left: 25%;
    background: #0f0f0f;
    z-index: 1;
}
.block-3 {
    width: 5%;
    right: 0;
    background: #0f0f0f;
    z-index: 1;
}
.overlay {
    width: 20%;
    left: 5%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

/* —— responsive tweaks —— */
@media (max-width: 990px) {
    .block-2,
    .overlay {
        display: none;
    }
    .block-1 {
        width: 50%;
    }
    .block-3 {
        width: 12%;
    }
    .text-slide h1 {
        font-size: 30px;
    }
    .text-slider-wrapper {
        top: 50% !important;
    }
    .slider-control {
        left: 22.5%;
    }
}
