/************************** General Styles **************************/
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #fff5f8, #ffe5d9);
    color: #333;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #b56576;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: 'Poppins', sans-serif;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/************************** Hero Section **************************/
.hero {
    height: 100vh;
    background: linear-gradient(to bottom right, #b56576, #ffe5d9);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 4rem;
    letter-spacing: 2px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.2rem;
    margin: 20px 0;
}

.button {
    background: #c9a26c;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.15);
}

.button:hover {
    background: #b28b5f;
    transform: scale(1.05);
}

/************************** Portfolio Section **************************/
.portfolio {
    padding: 80px 50px;
    text-align: center;
    background-color: #fff;
}

.portfolio h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.portfolio p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
}

.gallery-item {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 200px;
    border-radius: 10px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/************************** Services Section **************************/
.services {
    background: linear-gradient(to bottom, #fffaf0, #ffe5d9);
    padding: 80px 50px;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-cards {
    display: flex;
    gap: 30px;
    /*flex-wrap: wrap;*/
    justify-content: center;
    align-items: center;
}

.service-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 30px;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #b56576;
}

/************************** Testimonials Section **************************/
.testimonials {
    background: #f8e7ed;
    padding: 80px 50px;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Centered Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
    text-align: center;

}

.testimonials-carousel .carousel-item {
    width: 80%;
    height: auto;
    display: none;
    background: linear-gradient(to bottom left, #ffe5d9, rgba(255, 229, 217, 0.8), rgba(248, 231, 237, 0.5), #fff5f8);
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.testimonials-carousel .carousel-item img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 10px auto;
}

.testimonials-carousel .carousel-item.active {
    display: block;
}

.testimonials-carousel .carousel-prev,
.testimonials-carousel .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ff7d8a;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.testimonials-carousel .carousel-prev {
    left: 10px;
}

.testimonials-carousel .carousel-next {
    right: 10px;
}


/***************************END************************************************/


/* Carousel Styles */
.carousel {
    position: relative;
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.05);
}

.carousel-item {
    width: 100%;
    height: 400px;
    text-align: center;
    padding: 20px;
    display: none;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin: auto;
}

.carousel-item img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    
}

.carousel-item.active {
    display: block;
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ff7d8a;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}


/************************** Booking Form **************************************/
/*.booking {
    padding: 80px 50px;
    background: #fff;
    text-align: center;
}*/

.booking {
    padding: 100px 50px;
    background: linear-gradient(to bottom left, #ffe5d9, rgba(255, 229, 217, 0.8), rgba(248, 231, 237, 0.5), #fff5f8);
    text-align: center;
    border-radius: 20px;
    /*box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);*/
    max-width: 850px;
    margin: 50px auto;
    backdrop-filter: blur(8px); /* Adds a smooth translucent effect */
}

.booking h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/*.booking-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}*/

.booking-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    gap: 20px;
    text-align: left;
    max-width: 500px;    
}

.booking-form label {
    font-size: 1rem;
    color: #666;
    text-align: left;
}

/*.booking-form input, .booking-form select, .booking-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}*/


.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
    background: #fffaf0;
    font-family: 'Poppins', sans-serif;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    box-shadow: 0 0 8px rgba(191, 97, 118, 0.5);
    border-color: #b56576;
    outline: none;
    background: #fff;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: #aaa;
    font-style: italic;
}

.booking-form textarea {
    height: 120px;
    resize: none;
}


/*.booking-form button {
    background: #c9a26c;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
}*/

.booking-form button {
    width: 100%;
    background: #b56576;
    color: #fff;
    padding: 18px;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    font-family: 'Poppins', sans-serif;
}

.booking-form button:hover {
    background: #b28b5f;
}


/**********************************END*****************************************/

/**********************************Responsive**********************************/

/* General Styles for Smaller Screens */
@media (max-width: 768px) {
    body {
        font-size: 90%;
    }

    h1, h2, h3 {
        font-size: 90%;
        margin-bottom: 0.8rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Hero Section */
@media (max-width: 600px) {
    .hero {
        height: 70vh;
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }
}

/* Portfolio Section */
@media (max-width: 768px) {
    .portfolio {
        padding: 50px 0px;
    }

    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
}

/* Service Cards */
@media (max-width: 992px) {
    .service-card {
        width: 100%;
        margin-bottom: 20px;
    }

    .service-cards {
        flex-direction: column;
        align-items: center;
    }
}

/* Testimonials Section */
@media (max-width: 768px) {
    .testimonials {
        padding: 80px 0;
        width: 100%;
    }
    
    .testimonials-carousel {
        width: 100%;
    }    
    
    .testimonials-carousel .carousel-item {
        border-radius: 0px;
        margin: 0 auto;
        border-radius: 10px;
        width: 90%;
    }
    
    .carousel {
        width: 100%;
    }

    .carousel-item img {
        width: 150px;
        height: 150px;
    }

    .carousel-prev, .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        padding: 8px;
    }

    .carousel-prev {
        left: 5px;
    }

    .carousel-next {
        right: 5px;
    }
}

/* Booking Form */
@media (max-width: 768px) {
    .booking-form {
        max-width: 90%;
    }
}

/* Ultra-Small Devices (Portrait Mode) */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.8rem;
    }

    .button {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .carousel-item img {
        width: 120px;
        height: 120px;
    }

    .booking h2 {
        font-size: 1.8rem;
    }

    .booking-form button {
        font-size: 0.9rem;
        padding: 10px;
    }
}

/* Landscape Orientation */
@media (orientation: landscape) {
    .hero {
        height: 80vh;
    }

    .carousel {
        width: 75%;
    }

    .booking h2 {
        font-size: 2rem;
    }
}

