@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Oswald:wght@500&display=swap");

/*This shud work*/
:root {
    --primary-color: #ecad29;
    --text-color: #ffffff;
}
body {
    margin: 0;
    background-color: #1a1a1a;
    color: var(--text-color);
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: "Inter", sans-serif;
}

.slider-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    backdrop-filter: blur(0.5px);
}

.card {
    position: absolute;
    left: 0;
    top: 0;
    /* background: linear-gradient(to right, #00000070 0%, #00000070 100%),
        url('../images/.JPG'); */
    background-position: center;
    background-size: contain;
    /* background-repeat: no-repeat; */
    opacity: 1;
    box-shadow: 6px 6px 10px 2px rgba(0, 0, 0, 0.6);
}
.card.active-blur {
    filter: blur(1px);
}

.card-content {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--text-color);
    padding-left: 16px;
}

.content-place {
    margin-top: 6px;
    font-size: 13px;
    font-weight: 500;
}
.content-title-1,
.content-title-2 {
    font-weight: 600;
    font-size: 20px;
    font-family: "Oswald", sans-serif;
}

.content-start {
    width: 30px;
    height: 5px;
    border-radius: 99px;
    background-color: var(--text-color);
}

.details {
    z-index: 22;
    position: absolute;
    top: 240px;
    left: 60px;
}

.details .place-box {
    height: 46px;
    overflow: hidden;
}

.details .place-box .text {
    padding-top: 16px;
    font-size: 20px;
    position: relative;
}

.details .place-box .text:before {
    top: 0;
    left: 0;
    position: absolute;
    content: "";
    width: 30px;
    height: 4px;
    border-radius: 99px;
    background-color: #fff;
}

.title-1,
.title-2 {
    font-weight: 600;
    font-size: 72px;
    font-family: "Oswald", sans-serif;
}

.title-box-1,
        .title-box-2 {
            margin-top: 2px;
            height: 100px;
            overflow: hidden;
        }

        .details > .desc {
            margin-top: 16px;
            width: 450px;
            line-height: 1.6;
        }

        .read-more-link {
            color: var(--primary-color);
            text-decoration: underline;
            cursor: pointer;
            font-weight: 500;
            margin-left: 8px;
        }

        .read-more-link:hover {
            color: #fff;
        }

        .indicator {
            position: fixed;
            left: 0;
            right: 0;
            top: 0;
            height: 5px;
            z-index: 60;
            background-color: var(--primary-color);
        }

        .pagination {
            position: absolute;
            left: 0px;
            top: 0px;
            display: inline-flex;
        }

        .pagination > .arrow {
            z-index: 60;
            width: 50px;
            height: 50px;
            border-radius: 999px;
            border: 2px solid #ffffff55;
            display: grid;
            place-items: center;
            cursor: pointer;
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
        }

        .pagination > .arrow:hover {
            border-color: var(--primary-color);
            background-color: rgba(236, 173, 41, 0.2);
        }

        .pagination > .arrow:nth-child(2) {
            margin-left: 20px;
        }

.pagination > .arrow svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    color: #ffffff99;
}

.progress-sub-container {
    margin-left: 24px;
    z-index: 60;
    width: 500px;
    height: 50px;
    display: flex;
    align-items: center;
}

.progress-sub-background {
    width: 500px;
    height: 3px;
    background-color: #ffffff33;
}

.progress-sub-foreground {
    height: 3px;
    background-color: var(--primary-color);
}

.slide-numbers {
    width: 50px;
    height: 50px;
    overflow: hidden;
    z-index: 60;
    position: relative;
}

.slide-numbers .item {
    width: 50px;
    height: 50px;
    position: absolute;
    color: #fff;
    top: 0;
    left: 0;
    display: grid;
    place-items: center;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-numbers .item:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.cover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    z-index: 100;
}

.artist-statement {
    padding: 90px;
    width: 100%;
    min-height: auto;
    max-height: 100vh;
    background-image: 
    linear-gradient(to right, #000000 0%, #ffffff36 100%),
    url('../images/Contact-bg.JPG');
    background-color: #6d482c, #d88e57;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: left;
    color: #ffffff;
}
.artist-statement h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 150px;
    color: #ffffff;
    line-height: 0.5;
}
.artist-statement h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    margin-bottom: 30px;
    color: #ffffff;
}
.artist-statement p{
    font-size: 17px;
    padding: 0 0 10px 30px;
    width: 50%;
}
