/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 1550px;
    margin: auto;
}

h1, h2, h3, h4, h5, h6, button {
    font-family: 'Poppins', sans-serif;
}

h1 {
    font-size: 41px;
    text-align: 45px;
}

h2 {
    font-size: 34px;
}

h3 {
    font-size: 25px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

p, span {
    font-size: 16px;
}

button {
    font-size: 18px;
}


header, footer, main {
    width: 100%;
}

header {
    background: #fff;
    color: #fff;
}
header .container div h3 {
    margin-right: 50px;
}
header .container {
    align-items: center;
    display: flex
;
    justify-content: center;
    gap: 100px;
}

header img.logo {
    height: 50px;
}

header nav {
    display: flex;
    gap: 15px;
}

header nav a {
    color: #061A3A;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

header nav a:hover {
    background-color: #ff7c5b;
    color: #fff;
}

footer {
    background: #061A3A;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    text-align: center;
}

footer img.logo {
    height: 40px;
    margin-bottom: 10px;
}

footer div {
    flex: 1;
}

footer button {
    background: #ff7c5b;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

footer button:hover {
    background: #061A3A;
}
.footer-section {
    display: flex
;
}

.footer-section div {
    width: 33.33%;
}

.fb-col img, .fb-col button {
    display: block;
}
.fb-col img {
    margin-bottom: 15px;
}

main .hero {
    background: url('images/banner-1.jpg') no-repeat center/cover;
    color: #fff;
    text-align: center;
    padding: 140px 20px;
}

main .services, main .tour-packages {
    padding: 60px;
    text-align: center;
}

main .service, main .package {
    display: inline-block;
    width: 30%;
    margin: 10px;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    overflow: hidden;
}
main .service div, main .package div {
    padding: 0 20px;
}

main .service img, main .package img {
    width: 100%;
    display: block;
}
.sec-wrap {
    max-width: 1300px;
    margin: auto;
}

.primary-btn {
    background: #ff7c5b;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 10px;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}

.primary-btn:hover {
    background-color: #061A3A;
}

main .package button {
    background: #ff7c5b;
    color: #fff;
    border: none;
    padding: 10px 15px;
    margin: 10px;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    width: calc(100% - 20px);
    text-align: center;
}

main .package button:hover {
    background: #061A3A;
}


main .contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

main .contact h1 {
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}

main .contact p {
    text-align: center;
    max-width: 400px;
    margin: 0 auto 15px auto;
}

main .contact form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

main .contact form input,
main .contact form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    color: #333;
    transition: border-color 0.3s ease;
}

main .contact form input:focus,
main .contact form textarea:focus {
    border-color: #ff7c5b;
    outline: none;
}

main .contact form textarea {
    height: 150px;
    resize: none;
}

main .contact form button {
    background: #ff7c5b;
    color: #fff;
    border: none;
    padding: 15px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

main .contact form button:hover {
    background: #061A3A;
}


.why-travel {
    text-align: center;
}

.why-travel h6 {
    font-size: 16px;
    color: #ff7c5b; 
    text-transform: uppercase;
    margin-bottom: 10px;
}

.features-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.feature {
    width: 300px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: #fff;
    transition: transform 0.3s;
}

.feature-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    margin: -30px auto 10px; /* Pull up over image */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 30px;
    height: 30px;
}

.feature h4 {
    font-weight: bold;
    color: #343a40;
    margin: 30px 0;
    padding: 0 10px;
}

main .tour {
    background: url('images/paris.jpg') no-repeat center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    margin: auto;
}

.tour-about {
    display: flex
;
    gap: 80px;
    padding: 30px 0px;
}
.tour-about form {
    margin-top: -250px;
}

.tour-about .overview {
    width: 70%;
    margin: 0px 20px;
}
.tour-about .contact {
    width: 30%;
    margin: 0px 20px;
}
.gallery {
    text-align: center;
}

.gallery h1 {
    font-size: 25px;
    margin-bottom: 20px;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.gallery-grid img {
    width: 230px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.gallery-grid img:hover {
    transform: scale(1.1);
}


/* Responsive Design */
@media (max-width: 768px) {
    header .primary-btn {
        margin-bottom: 30px;
    }
    header .container {
        gap: 15px;
    }
    main .contact {
        padding: 10px;
    }


    main .contact form {
        padding: 20px;
    }
}

@media (max-width: 480px) {


    main .contact form {
        padding: 15px;
    }

    main .contact form input,
    main .contact form textarea {
        padding: 10px;
    }

    main .contact form button {
        padding: 12px;
    }
}


@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    main .service, main .package {
        max-width: 500px;
        width: 100%;
    }
    header nav {
        margin-bottom: 10px;
    }
    .tour-about .overview {
        width: 90%;
    }
    .tour-about .contact {
        width: 90%;
    }

    .tour-about {
        flex-direction: column;
    }

    .tour-about form {
        margin-top: 0px;
    }
    .footer-section {
        flex-direction: column;
    }
    .footer-section div {
        margin: auto;
        width: 100%;
    }
    .footer-section div.fb-col img, .footer-section div button {
        margin: 10px auto;
    }


    footer {
        flex-direction: column;
        align-items: center;
    }

    footer div {
        flex: unset;
        text-align: center;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {

    main .hero {
        padding: 50px 10px;
    }

    footer div {
        margin-bottom: 10px;
    }
}