/* Custom styles to match the design */

/* -------global Css-------- */
body,
html {
    height: 100%;
    font-family: "Poppins", sans-serif;
    /* background-color: #f8f9fa; */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* ----------------Hero section Css--------- */

.hero-section {
    /* Using the airplane wing background image */
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('./img/background.webp');
    /* Calculate height minus navbar. Assumes navbar is approx 86px */
    min-height: calc(100vh - 86px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    padding: 4rem 0;
}

/* --- Hero Section Navbar --- */
.navbar {
    /* Solid white background */
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 1.25rem 0;
    /* Vertical padding */
}

/* Custom text logo to mimic the image */
.navbar .navbar-brand .logo-icon {
    font-size: 2rem;
    font-weight: 800;
    color: #0dcaf0;
    /* Teal color */
    display: inline-block;
    transform: translateY(4px);
    margin-right: 0.25rem;
}

.navbar .navbar-brand .brand-name {
    font-weight: 700;
    font-size: 1.5rem;
    color: #212529;
    /* Dark text color */
    display: inline-block;
    margin-left: 0.25rem;
}

.navbar .navbar-brand .tagline {
    font-size: 0.6rem;
    color: #6c757d;
    /* Gray color for tagline */
    display: block;
    line-height: 1;
    margin-left: 42px;
    /* Align under EscapeArt */
    margin-top: -5px;
}

.navbar .navbar-text {
    color: #000000 !important;
    /* Black color */
    font-weight: 400;
    /* Regular weight */
    font-size: 1.6rem;
    /* Matches font size in image */
}

/* --- Hero Section Content --- */
.hero-section .hero-content h1 {
    font-weight: 800;
    font-size: 3.5rem;
    /* Slightly larger text */
    line-height: 1.3;
}

.hero-section .text-custom-yellow {
    color: #f7b731;
    /* A gold/yellow color */
}

.hero-section .hero-content .lead {
    font-size: 1.15rem;
    font-weight: 400;
    max-width: 450px;
    margin-top: 1rem;
    margin-bottom: 2rem;
    color: #f1f1f1;
    /* Lighter text color for lead */
}

.hero-section .btn-custom-yellow {
    background-color: #f7b731;
    border: none;
    color: #333;
    font-weight: 700;
    padding: 0.75rem 1.75rem;
    /* More horizontal padding */
    border-radius: 0.5rem;
    font-size: 1rem;
}

.hero-section .btn-custom-yellow:hover {
    background-color: #e6a82a;
    color: #333;
}

/* --- Hero Section Form --- */
.hero-section .form-container {
    /* Dark, semi-transparent background from image */
    background-color: rgba(45, 52, 54, 0.5);
    padding: 2.5rem;
    border-radius: 1rem;
    /* Rounded corners */
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.3); */
}

.hero-section .form-container .form-control {
    background-color: #ffffff;
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 0.5rem;
    /* Slightly rounded corners for inputs */
}

.hero-section .form-container .form-control::placeholder {
    color: #6c757d;
}

.hero-section .form-container .btn-submit {
    background-color: #f7b731;
    border: none;
    color: #333;
    font-weight: 700;
    padding: 0.8 0.85rem;
    width: 100%;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.hero-section .form-container .btn-submit:hover {
    background-color: #e6a82a;
}

/* Responsive adjustments for Hero */
@media (max-width: 992px) {
    .hero-section {
        min-height: auto;
        /* Allow height to be auto on smaller screens */
        text-align: center;
    }

    .hero-section .hero-content .lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-section .form-container {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-section .hero-content h1 {
        font-size: 2.5rem;
    }

    .navbar .navbar-brand {
        margin-right: 0;
    }

    .navbar .navbar-text {
        font-size: 1.2rem;
        /* Smaller contact text on mobile */
    }
}

/* ---------------Benifites / Features----------------- */
.features-section {
    padding: 4rem 0;
    text-align: center;
    background-color: #ffffff;
}

.features-section .feature-item {
    margin-bottom: 2rem;
}

.features-section .feature-icon-wrapper {
    width: 100px;
    /* Exact size for the circle */
    height: 100px;
    /* background-color: #f7b731; */ /* Using image instead */
    /* Yellow circle background */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    /* Center the icon and add bottom margin */
}

.features-section .feature-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.features-section .feature-title {
    font-size: 1.6rem;
    /* Title font size */
    font-weight: 700;
    /* Bold title */
    color: #212529;
    /* Dark text color */
    margin-bottom: 0.5rem;
}

.features-section .feature-title .highlight {
    color: #f7b731;
    /* Yellow highlight */
}

.features-section .feature-description {
    font-size: 0.8rem;
    /* Description font size */
    font-weight: 400;
    /* Regular weight */
    color: #6c757d;
    /* Gray text color */
    max-width: 250px;
    /* Limit width for description */
    margin: 0 auto;
    /* Center description text */
    line-height: 1.5;
}

/* --------------1st swiper css / Getaways ------------- */
.getaways-section {
    width: 100%;
    padding: 0rem 0;
    text-align: center;
    background-color: #fff;
    overflow: hidden;
}

.getaways-section .getaways-title {
    font-size: 2.8rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

.getaways-section .getaways-title .highlight {
    color: #f7b731;
}

.getaways-section .getaways-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: #6c757d;
    margin-bottom: 3rem;
}

/* --- Getaways Owl Carousel --- */
.getaways-section .owl-carousel .item {
    width: 280px;
    height: 280px;
    background-position: center;
    background-size: cover;
    border-radius: 50%;
    border: 6px solid #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    transition: transform 0.3s ease;
    padding: 20px;
}

.getaways-section .owl-carousel .item:hover {
    transform: scale(1.05);
}

.getaways-section .owl-carousel .owl-item.active.center .item {
    transform: scale(1.3); /* Center item is larger */
}

.getaways-section .owl-carousel .owl-stage {
    padding: 50px 0;
}

@media (max-width: 992px) {
    .getaways-section .owl-carousel .item {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 576px) {
    .getaways-section .owl-carousel .item {
        width: 160px;
        height: 160px;
    }
}

/* --- Getaways Book Now Button --- */
.getaways-section .btn-book-now {
    background-color: #f7b731;
    border: none;
    color: #333;
    font-weight: 700;
    padding: 0.9rem 2.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    margin-top: 3rem;
    transition: background-color 0.3s ease;
}

.getaways-section .btn-book-now:hover {
    background-color: #e6a82a;
    color: #333;
}


/* ----------------Its a big world / About----------------- */
.about-section {
    padding: 6rem 0;
}

.about-section .section-headline {
    font-size: 2.8rem;
    font-weight: 500;
    color: #000000;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.about-section .section-headline .highlight {
    color: #f7b731;
    /* Yellow highlight */
}

.about-section .section-subheadline {
    font-size: 1.1rem;
    font-weight: 400;
    color: #555;
    line-height: 1.6;
    max-width: 900px;
    /* Constrain width */
    margin: 0 auto 2rem auto;
    /* Center and add bottom margin */
    text-align: center;
}

.about-section .content-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1.5rem;
}

.about-section .content-title .highlight {
    color: #f7b731;
}

.about-section .content-text {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.about-section .btn-view-more {
    background-color: #f7b731;
    border: none;
    color: #333;
    font-weight: 700;
    padding: 0.8rem 2.2rem;
    border-radius: 30px;
    /* Fully rounded button */
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.about-section .btn-view-more:hover {
    background-color: #e6a82a;
    color: #333;
}

.about-section .about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
    /* Rounded corners for the image */
}

/* Responsive adjustments for About */
@media (max-width: 767.98px) {
    .about-section {
        padding: 3rem 0;
    }

    .about-section .section-headline {
        font-size: 2rem;
    }

    .about-section .section-subheadline {
        margin-bottom: 3rem;
    }

    .about-section .content-title {
        margin-top: 2rem;
    }

    .about-section .about-image {
        margin-top: 2rem;
    }
}


/* --------------Testimonial------------- */
/* Using the .testimonials-section-1 class from your HTML */
.testimonials-section-1 {
    /* Using a blurred beach placeholder image */
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('./img/Background.png');
    
    background-size: cover;
    background-position: center;
    padding: 7rem 0;
    overflow: hidden; /* Prevent carousel overflow */
}

/* Using the .section-title-1 class from your HTML */
.testimonials-section-1 .section-title-1 {
    font-size: 2.8rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 4rem;
    text-align: center;
}

/* Using the .highlight-1 class from your HTML */
.testimonials-section-1 .section-title-1 .highlight-1 {
    color: #f7b731; /* Yellow highlight */
}

/* --- Equal Height Fix for Testimonial Carousel --- */
.testimonials-section-1 .owl-stage {
    display: flex;
}

.testimonials-section-1 .owl-item {
    display: flex;
    flex: 1 0 auto;
}

.testimonials-section-1 .item {
    display: flex;
    flex: 1;
}

.testimonials-section-1 .testimonial-item {
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    flex: 1;
}
/* --- End Equal Height Fix --- */


/* Style for each carousel item */
.testimonials-section-1 .owl-item .item {
    padding: 1rem 0.5rem; /* Padding for shadow/glow */
}

.testimonials-section-1 .testimonial-item {
    background: rgba(255, 255, 255, 0.95); /* Near-solid white */
    border-radius: 180px; /* This creates the elongated pill shape */
    padding: 3.3rem 3.3rem;
    /* box-shadow: 0 10px 40px rgba(231, 204, 1, 0.5); */
    border: 18px solid rgba(155, 152, 119, 1);
    backdrop-filter: blur(8px); /* Glassmorphism effect */
    overflow: hidden; 
    outline-offset: 500px; 
}

.testimonials-section-1 .profile-header {
    display: flex;
    align-items: center;
    /* margin-bottom: 1rem; */ /* Replaced by hr margin */
}

/* Cleaned up image styles */
.testimonials-section-1 .profile-header img {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.testimonials-section-1 .profile-info {
    text-align: left; /* Align name and rating to the left */
    width: 100%;
}

.testimonials-section-1 .profile-info .name {
    font-weight: 700;
    font-size: 1.2rem;
    color: #212529;
    margin-bottom: 0.1rem;
}

.testimonials-section-1 .profile-info .rating {
    background: #f7b731;
    color: #333; /* Dark text on yellow bg */
    padding: 0.15rem 0.6rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
}

.testimonials-section-1 .profile-info hr {
    border-color: #e0e0e0;
    margin: 0.8rem 0;
    border-top-width: 2px;
}

.testimonials-section-1 .testimonial-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    line-height: 1.7;
    text-align: left; /* Re-align text to match original design */
    padding-top: 1rem; /* Add space between hr and text */
}

/* Styling for Owl Carousel dots */
.testimonials-section-1 .owl-theme .owl-dots .owl-dot.active span,
.testimonials-section-1 .owl-theme .owl-dots .owl-dot:hover span {
    background: #f7b731;
}

.testimonials-section-1 .owl-theme .owl-dots .owl-dot span {
    background: #fff;
    opacity: 0.8;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
