/* Web */

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 90px;
}

:root {
    --primary-color: rgb(232, 232, 246);
    --secondary-color: #140108;
    --background-color: rgb(249, 243, 243);
    --margic-color: blueviolet
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Utility Classes */


.container {
    width: 95%;
    margin: auto;
    margin-top: 100px;
}


.container-sm {
    width: 60%;
    margin: auto;
    margin-top: 100px;
}


.text-xxl {
    font-size: 2rem;
    color: var(--secondary-color);
    margin: 20px 0;
    text-align: center;
    font-family: "Nunito Sans";
}

.text-xl {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 20px;
    text-align: center;
    font-family: "Nunito Sans";
}



/* Body */

body {
    background-color: var(--background-color);
    font-family: "Poppins";
    margin-top: 0;
    padding: 0;
}


/* Nav Section */

header {
    background-color: #fff;
    position: fixed;
    z-index: 2000;
    width: 100%;
}



header nav {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 2rem;
    list-style-type: none;
    position: relative;
}

header .nav-links {
    display: flex;
    padding-right: 50px;
    column-gap: 20px;
    list-style: none;
}



header .nav-links li a {
    text-decoration: none;
    display: inline-block;
    opacity: .5;
    transition: all .15s ease-in-out;
}

header .nav-links li a:hover {
    opacity: 1;
    transform: scale(1.08);
}

nav .logo {
    opacity: .7;
    transition: all .15s;
}


nav .logo:hover {
    opacity: 1;
    transform: scale(.9);
    transform: all .15s;
}

header nav .logo {
    margin-right: auto;
}


.logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.logo a h1 {
    transform: translate(-50%, -50%);
    margin-left: 100px;
    letter-spacing: -3px;
}

/* Hero Section */

.hero {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;


}


.hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;

}


.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .2);
    z-index: 1;
}



.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    color: cyan;
    font-style: normal;
    font-weight: 100;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-family: "Nunito Sans";
    /* font-weight: 700; */
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7)
}


.explore {
    font-family: "Lavishly Yours";
    color: rgb(206, 44, 234);
}



/* MEDIA QUERIES */

/* header  */



.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle span:last-child {
    display: none;
}

@media (max-width: 768px) {

    header .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        right: 0px;
        background: var(--background-color);
        flex-direction: column;
        padding: 20px;
        border-radius: 8px;
        z-index: 20;
        color: var(--margic-color);
    }

    .nav-links.active {
        display: flex;
    }


    .menu-toggle {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .logo a h1 {
        font-size: 1.2rem;
    }
}




/* Destination Sections */


.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 16px;
}

.abiola {
    font-family: "";
    color: red;
}

.destination-grid div {
    overflow: hidden;
    position: relative;
}

.destination-grid img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 1.5s ease-in-out;
}

.destination-grid img:hover {
    transform: scale(1.03);
}



.destination-grid h3 {
    font-family: "Lavishly Yours";
}


.destination-grid img,
.destination-grid p {
    width: 100%;
    margin-top: 12px;
    border-radius: 12px;
}

/* Destination-Buttons */


.destination-grid button {
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
    outline: none;
    background-color: var(--primary-color);
    cursor: pointer;
    color: blueviolet;
    border: none;
}


.moreText {
    display: none;
}

.toggleBtn.less {
    color: red;
}

/* Map Section */


#map {
    height: 500px;
    width: 100%;
    margin-top: 35px;
}







/* About Me */


.about-me-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    color: rgb(57, 55, 55);
    background-color: rgb(230, 227, 227);
    margin-bottom: 20px;
    border-radius: 12px;
    scroll-margin-top: 200px;

}


.about-me {
    width: 100%;
    padding: 20px;
    text-align: justify;
}

.about-me h1,
.contact h1 {
    border-bottom: 2px solid black;
    padding: 12px;
    color: var(--margic-color);
}


.about-me p {
    margin-top: 20px;
}


.contact {
    width: 40%;
}


.contact-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 80px;
}