* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    list-style: none;
    text-decoration: none;
    text-transform: capitalize;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
}

:root {
    --main-color: #ffa343;
    --bg-color: #000;
    --text-color: #fff;
    --padding-top: 100px;
    --padding-bottom: 100px;
    --line-height: 28px;
    --transition: .4s;
}

::-webkit-scrollbar {
    width: 0.70rem;
}

::-webkit-scrollbar-track {
    border: 7px solid #292c3b;
    box-shadow: inset 0 0 2.5px 2px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    background-color: #d4d4d8;
}

::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
}

.container {
    width: 80%;
    margin: auto;
}

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

.btn {
    display: inline-block;
    color: var(--bg-color);
    background-color: var(--main-color);
    border: 2px solid transparent;
    padding: 10px 30px;
    border-radius: 5px;
    transition: var(--transition);
}

.btn:hover {
    transform: translateX(20px);
    background-color: transparent;
    color: var(--text-color);
    border-color: var(--main-color);
}

@media (max-width:992px) {
    .container {
        width: 95%;
    }

    .btn {
        padding: 8px 20px;
    }
}

.landing {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(imges/Background.png);
    background-position: bottom center;
    background-size: cover;
}

/* --------------header------------------ */
header {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
}

header .logo {
    color: var(--text-color);
    font-size: 30px;
}

header nav ul {
    display: flex;
}

header nav ul a {
    display: inline-block;
    color: var(--text-color);
    padding: 8px 15px;
    transition: var(--transition);
}

header nav ul a:hover {
    color: var(--main-color);
}

header .media {
    display: flex;
    align-items: center;
    gap: 10px;
}

header .media a {
    color: var(--text-color);
    font-size: 17px;
    transition: var(--transition);
}

header .media a:hover {
    color: var(--main-color);
}

header .media .menu-icon {
    font-size: 25px;
    display: none;
    cursor: pointer;
}

@media (max-width:768px) {
    header .media .menu-icon {
        display: block;
    }

    header nav ul {
        position: absolute;
        top: 110%;
        right: 0;
        width: 50%;
        flex-direction: column;
        text-align: center;
        background-color: #555;
        z-index: 1000;
        overflow: hidden;
        border-radius: 20px;
        transition: var(--transition) linear;
    }

    header nav ul li {
        width: 100%;
        padding: 10px;
    }

    header nav ul li a {
        width: 100%;
    }
}
@media (min-width:769px) and (max-width:992px) {
    header nav ul li a {
        font-size: 14px;
    }
}
/* ----------home--------------- */
.home {
    height: 80%;
    display: flex;
    align-items: center;
}

.home .text {
    width: 550px;
    max-width: 100%;
}

.home .text h1 {
    font-size: 70px;
    font-weight: 800;
    letter-spacing: 1px;
}

.home .text p {
    line-height: var(--line-height);
    opacity: .7;
    margin-bottom: 15px;
}

@media (max-width:768px) {
    .home .text h1 {
        font-size: 50px;
    }
}
@media (min-width:769px) and (max-width:992px) {
    .home .text h1 {
        font-size: 60px;
    }
}

/* -------sub-services------------- */
.sub-services {
    padding-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, auto));
    gap: 30px;
    align-items: center;
    text-align: center;
}

.sub-services .card .image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin: auto;
}

.sub-services .card .image img {
    transition: var(--transition);
}

.sub-services .card h4 {
    margin-top: 15px;
    transition: var(--transition);
}

.sub-services .card:hover h4 {
    color: var(--main-color);
}

.sub-services .card:hover .image img {
    transform: scale(1.3);
}

/* ---------------about--------------- */
.about {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: center;

}

.about .image {
    width: 450px;
    border-radius: 10px;
    overflow: hidden;
}

.about .text p:first-of-type {
    color: var(--main-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about .text h2 {
    font-size: 45px;
    font-weight: 700;
}

.about .text p:last-of-type {
    margin: 15px 0;
    opacity: .7;
    line-height: var(--line-height);
}

@media (max-width:768px) {
    .about {
        grid-template-columns: 1fr;
    }

    .about .image {
        width: 70%;
        margin: auto;
    }

    .about .text h2 {
        font-size: 30px;
    }

    .about .text p {
        font-size: 15px;
    }
}

/* ------------tours----------- */
.tours {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
}

.tours .title h2 {
    font-size: 45px;
    text-align: center;
}

.tours .cards-container {
    margin: 50px 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, auto));
    grid-gap: 30px;
    align-items: center;
}

.tours .cards-container .card {
    position: relative;
    transition: var(--transition);
}

.tours .cards-container .card:hover {
    transform: scale(.95);
}

.tours .cards-container .card .image {
    border-radius: 20px;
    overflow: hidden;
    filter: brightness(50%);
    transition: var(--transition);
}

.tours .cards-container .card .image:hover {
    filter: brightness(100%);
}

.tours .cards-container .card h3 {
    position: absolute;
    bottom: 20%;
    left: 20%;
}

.tours a {
    display: block;
    width: fit-content;
    margin: auto;
}

/* ----------culture------------- */
.culture {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: center;

}

.culture .image {
    width: 450px;
    border-radius: 10px;
    overflow: hidden;
}

.culture .text p:first-of-type {
    color: var(--main-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.culture .text h2 {
    font-size: 45px;
    font-weight: 700;
}

.culture .text p:last-of-type {
    margin: 15px 0;
    opacity: .7;
    line-height: var(--line-height);
}

@media (max-width:768px) {
    .culture {
        grid-template-columns: 1fr;
    }

    .culture .image {
        width: 70%;
        margin: auto;
    }

    .culture .text h2 {
        font-size: 30px;
    }

    .culture .text p {
        font-size: 15px;
    }
}

/* -------------contact--------------- */
.contact {
    padding-top: 50px;
    padding-bottom: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 3rem;
    align-items: center;
}

.contact .text h2 {
    font-size: 35px;
    margin-bottom: 5px;
}

.contact .text p {
    opacity: .7;
    font-size: 15px;
}

.contact form {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact form input[type='email'] {
    width: 400px;
    max-width: 100%;
    padding: 10px 20px;
    border: none;
    outline: none;
    border-radius: 5px;
    caret-color: var(--main-color);
    background-color: #292c3b;
    color: var(--text-color);
}
.contact form input[type='email']::placeholder {
    color: var(--text-color);
}
.contact form input[type='submit'] {
    cursor: pointer;
}
@media (max-width:768px) {
    .contact {
        grid-template-columns: 1fr;
    }
    .contact form {
        flex-direction: column  ;
    }
    .contact form input[type='email'] {
        width: 100%;
    }
}
/* ---------------footer------------- */
footer {
    padding-top: 50px;
    padding-bottom: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, auto));
    grid-gap: 2rem;
    align-items: center;
}

footer .col h3 {
    margin-bottom: 5px;
}

footer .col ul a {
    display: inline-block;
    color: var(--text-color);
    opacity: .5;
    width: 100%;
    margin-bottom: 10px;
    font-size: 15px;
    transition: var(--transition);
}

footer .col ul a:hover {
    transform: translateX(25px);
    opacity: 1;
}

footer .col-4 ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

footer .col-4 ul li {
    cursor: pointer;
}

footer .col-4 ul i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    background: #292c3b;
    border-radius: 50%;
    font-size: 17px;
    transition: var(--transition);
}

footer .col-4 ul li:hover i {
    background-color: var(--main-color);
}
.copyright {
    padding-bottom: 20px;
}
.copyright p {
    opacity: .5;
    font-size: 16px;
    text-align: center;
}