/* Discover Section Styles */
#discover {
    padding: 3rem 100px;
    background-color: black;
}

.carousel {
    width: 100%;
    margin: auto;
    background-color: black;
}

#carouselExampleIndicators {
    margin-top: 2rem;
    padding-bottom: 2rem;
}

#carouselExampleIndicators .carousel-inner img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    object-position: right;
    transition: transform 1s ease;
}

#carouselExampleIndicators .carousel-control-prev,
#carouselExampleIndicators .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(85, 83, 83, 0.4);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.3s ease;
}

#carouselExampleIndicators .carousel-control-prev:hover,
#carouselExampleIndicators .carousel-control-next:hover {
    background-color: rgba(255, 255, 255, .4);
}

#carouselExampleIndicators .carousel-control-prev-icon,
#carouselExampleIndicators .carousel-control-next-icon {
    color: black;
    width: 25px;
    height: 25px;
}

@media (max-width: 1200px) {
    #discover {
        padding: 0 50px;
    }
}

@media (max-width: 960px) {
    #discover {
        padding: 0 20px;
    }

    #carouselExampleIndicators .carousel-inner img {
        height: 50vh;
    }
}

@media (max-width: 500px) {
    #discover {
        padding: 0 10px;
    }

    #carouselExampleIndicators .carousel-inner img {
        height: 30vh;
    }
}

/* Title Styles */
.title-container {
    padding: .1rem 0;
    text-align: center;
}

.title {
    margin: 1rem;
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    letter-spacing: .2rem;
    color: #E5BC5D !important;
    stroke-width: 1px;
    text-transform: uppercase;
    transition: color 0.5s ease, text-shadow 0.3s ease;
    position: relative;
    display: inline-block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.title:hover {
    color: white;
    text-shadow: 0 0 2px currentColor, 0 0 5px currentColor;
}

.line-con {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: .5rem 0;
}

.line-1 {
    text-align: center;
    width: 100px;
    height: 2px;
    background-color: #E5BC5D !important;
}
