/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f8f9fa;
}

html, body {
    height: auto !important;
    overflow-y: auto !important;
    margin: 0;
    padding: 0;
}

h2 {
    font-size: 2rem;
    margin: 20px 0;
}

/* Hero Section Fix */
.hero {
    background: url('./images/customized-trip.webp') no-repeat center center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Enables parallax on desktop */
    color: white;
    padding: 110px 40px;
    position: relative;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Mobile Fix */
@media screen and (max-width: 768px) {
    .hero {
        background-attachment: scroll; /* Fixes stretching issue */
        background-size: cover; /* Changed to cover to fill the space */
        background-position: center; /* Ensure the center of the image is prioritized */
        min-height: 80vh; /* Increased from 60vh to give more vertical space */
        padding: 80px 20px; /* Adjusted padding for mobile */
    }

    .hero h1 {
        font-size: 2rem; /* Adjusted for mobile */
    }

    .hero p {
        font-size: 1rem; /* Adjusted for mobile */
    }
}



/* Ensuring no unwanted scrolling */
body, html {
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Dark Overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Increased opacity for better text readability */
    z-index: 0;
}

/* Hero Content */
.hero-content {
    position: relative;
    max-width: 600px;
    text-align: center;
    z-index: 1;
}

/* Headings */
.hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.2rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

/* Button */
.btn {
    display: inline-block;
    padding: 12px 25px;
    background: orange;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
}

.btn:hover {
    background: darkorange;
}


/* Benefits Section */
.benefits {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
}

.benefit {
    width: 30%;
    background: white;
    padding: 20px;
    margin: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.benefit i {
    font-size: 2rem;
    color: orange;
}

/* Steps Section */
.steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
}

.step {
    width: 30%;
    background: white;
    padding: 20px;
    margin: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.step i {
    font-size: 2rem;
    color: orange;
}

/* Contact Form */
.contact {
    background: #222;
    color: white;
    padding: 50px;
}

.contact input,
.contact textarea {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}

.contact button {
    padding: 10px 20px;
    border: none;
    background: orange;
    color: white;
    font-size: 1rem;
    cursor: pointer;
}

.footer__container {
    background: #141414;
    padding: 20px;
    text-align: center;
    width: 100%;
    position: relative;
    bottom: 0;
}

.customized-banner {
    width: 100%;
    height: 60vh;  /* Set a proper height */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
    .customized-banner {
        height: 40vh;  /* Reduce height on smaller screens */
        background-size: contain;
    }
}

.customized-banner {
    width: 100%;
    height: auto;
}

.customized-banner img {
    width: 100%;
    height: auto;
    max-height: 400px; /* Prevents excessive stretching */
    object-fit: cover; /* Ensures proper aspect ratio */
}

