/* Palette 
#fff    White
#ede8e2 Ivory
#ead5c4 Champagne
#d3a5a5 Rose Gold
#a78b88 Taupe
#b47377 Mauve
#675553 Leather
*/



/* Hero Section */

.hero {
    position: relative;
    width: 100%;
    height: 85vh;
    margin-bottom: 30px;
    background-image: url('../images/Hero3.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: flex-end;  
    width: 100%;
    height: 100%;
    text-align: center;
    padding-bottom: 130px;  
}


.hero__text-strip {
    background-color: #000000bb; 
    padding: 20px 40px;
    width: 100%;
    display: inline-block;
}

.hero__text-strip h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ede8e2;
    margin-bottom: 0.5rem;
}

.hero__text-strip p {
    font-size: 1.5rem;
    color: #ede8e2;
    margin: 0;
}

/* Photo Carousel */

.carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease;
}

.carousel-slide {
    flex-shrink: 0;
    width: 260px;
    margin-right: 20px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #ffffff;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #b47377;
    color: #ffffff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.carousel-btn:hover {
    background-color: #d3a5a5;
}

.carousel-btn:disabled {
    opacity: 0.4;
    cursor: default;
}

.carousel-btn__left {
    left: 10px;
}

.carousel-btn__right {
    right: 10px;
}

/* Testimonials */

.testimonial__carousel {
    margin-top: 30px;
}

.testimonial__title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #674636;
}

.testimonial__track {
    display: flex;
    transition: transform 0.4s ease;
}

.testimonial__card {
    flex-shrink: 0;
    width: 360px;
    margin-right: 20px;
    background-color: #ead5c4;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #674636;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
    max-height: 220px;
}

.testimonial__stars {
    font-size: 1.3rem;
        color: #b47377;
    margin-bottom: 15px;
}

.testimonial__text {
    font-size: 1rem;
    line-height: 1.6;
    color: #675553;
    margin-bottom: 20px;
}

.testimonial__name {
    font-weight: 600;
    color: #675553;
    font-size: 0.95rem;
}

/* For smaller screens */

@media (max-width: 650px) {

    
    
    .carousel-slide {
        width: 180px;
    }

    .testimonial__card {
        width: 280px;
    }

    

    

}

