.page {
    font-family: 'Sweet Sans Pro', sans-serif;
    overflow: hidden;
}


/* ----------------------------------------Hero Section Styles----------------------------------------------- */
.maxwidthwrap {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

.page1 {
    position: relative;
    font-family: 'Sweet Sans Pro', sans-serif;
    height: 100vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(2, 12, 22, 0.2)), url('../images/homepage/homepagehero.jpg');
    background-size: cover;
    display: flex;
    align-items: center;
}


.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
}



.hero-content {
    z-index: 10;
    color: white;
    margin-left: 100px;
    text-align: left;
}


.hero h1 {
    position: relative;
    top: 90px;
    font-size: 120px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-weight: 200;
    position: relative;
    left: 8px;
    top: -185px;
    font-size: 35px;
}



/* --------------------------------------------------Button-------------------------------------------------------- */
.button-container {
    flex-direction: column;
    display: flex;
    gap: 30px;
    position: relative;
    margin-right: 100px;
}

.circle-btn {
    position: relative;
    z-index: 5;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    /* Removes default border */
    background-color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.circle-btn img {
    width: 75%;
    height: auto;
}

/* Hover effect for button */
.circle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}



/* ---------------------------------------------Map Section Styles----------------------------------------------- */
.map {
    flex-direction: column;
    height: 100vh;
    background: url('../images/homepage/street.jpg');
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}


/* Title */
.map-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    position: relative;
    width: 100%;
}

.map-content p {
    font-size: 45px;
}

/* Default styles for imagecontainer */
.imagecontainer {
    background: url('../images/homepage/lineho.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 900px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    position: relative;
    bottom: 100px;
    z-index: 10;
}



/* First map container */
.map-container1 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 300px;
    width: 100%;
    height: 80px;
    max-width: 1216px;
    position: absolute;
    bottom: 29%;
    left: 38%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Second map container */
.map-container2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 300px;
    width: 100%;
    height: 80px;
    max-width: 1216px;
    position: absolute;
    bottom: 42%;
    left: 60%;
    transform: translateX(-50%);
    z-index: 10;
}




/* Base styles for all locations */
.location {
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    text-decoration: none;
    /* This removes the underline */
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.location::before {
    content: '';
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50%;
    display: block;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}


/* Hover effect on the dot */
.location:hover::before {
    transform: scale(1.2);
    background-color: #ff6f61;
    opacity: 1;
}

/* Hover effect on the text */
.location:hover {
    transform: scale(1.2);
    color: #ff6f61;
    opacity: 1;
}



/* ------------------------------------------------------locationnnnnnnnn----------------------------------------------- */

/* Explore More Button */
.exploremore {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    padding: 10px 20px;
    background-color: #E6DFD5;
    border-radius: 25px;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s, transform 0.3s;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    /* Center horizontally with respect to its container */
}

/* Icon Styles */
.exploremore .right {
    margin-left: 10px;
    width: 20px;
    height: auto;
}

/* Text Styles */
.exploremore span {
    margin-left: 10px;
    color: #31312E;
    font-size: 20px;
}


/* Hover Effect */
.exploremore:hover {
    background-color: #f5c400;
    transform: translateX(-50%) scale(1.1);
    /* Apply scale without affecting position */
}



/* --------------------------------------------Interest Section Styles----------------------------------------------- */

.slider {
    font-family: 'Sweet Sans Pro', sans-serif;
    background-color: #020C16;
    color: #E6DFD5;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100vh;
}

.threeslider {
    display: flex;
    flex-direction: row;
}

.slide {
    min-width: 33.33%;
    /* Show three slides at once */
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease-in-out;
    text-align: center;
}

.slide img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.slide h1 {
    font-size: 32px;
    margin-bottom: 0px;
}

.slide p {
    font-weight: 200;
    font-size: 20px;
    color: #AAA297;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    display: block;
    /* Show controls in both desktop and mobile */
}

.slider-controls button {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    outline: none;
    display: none;
    /* hide it */
}

.slider-controls button.active {
    background-color: #333;
}

.nav-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    display: none;
    /* Hide navigation buttons initially */
}

.nav-buttons button {
    margin: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-buttons button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

@media (max-width: 1000px) {
    .hero {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .hero-content {
        margin: 0 100px;
        text-align: left;
    }

    .hero h1 {
        top: 45px;
        font-size: 100px;
    }

    .hero p {
        font-size: 30px;
    }

    .button-container {
        position: absolute;
        bottom: 30px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 90%;
        margin: 0 auto;
    }

    .circle-btn {
        margin: 0 30px;
        margin-bottom: 30px;
        /* Reduce the margin between buttons */
    }

    .button-container .circle-btn:first-child {
        align-self: flex-start;
    }

    .button-container .circle-btn:last-child {
        align-self: flex-end;
    }
}


@media (max-width: 900px) {


    /* -------------------------------------------------------Map------------------------------------------------------- */
    .map {
        height: 130vh;
        padding-bottom: 100px;
    }

    .map-content {
        padding-top: 100px;
    }

    .map-content p {
        font-size: 30px;
    }

    .explore {
        font-size: 16px;
        padding: 10px;
        width: auto;
    }

    .map-container {
        width: 100%;
        height: auto;
    }

    .imagecontainer {
        background: url('../images/homepage/linever.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        transform-origin: center;
        width: 100px;
        height: 700px;
        top: 10px;
    }

    .map-container1 {
        gap: 300px;
        flex-direction: column;
        bottom: 55%;
        left: 30%;
    }

    .map-container2 {
        gap: 300px;
        flex-direction: column;
        bottom: 35%;
        left: 75%;
    }

    .location {
        font-size: 20px;
        transform: scale(0.9);
        -webkit-tap-highlight-color: transparent;
    }

    .location:active {
        transform: scale(1.3);
        color: #ff6f61;
    }

    .location:hover::before,
    .location:active::before {
        transform: scale(1);
        background-color: #ff6f61;
    }

    /* Explore More Button */
    .exploremore {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 200px;
        padding: 10px 15px;
        background-color: #E6DFD5;
        border-radius: 25px;
        cursor: pointer;
        border: none;
        transition: background-color 0.3s, transform 0.3s;
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        /* Center horizontally with respect to its container */
    }

    /* Icon Styles */
    .exploremore .right {
        margin-left: 10px;
        width: 18px;
        height: auto;
    }

    /* Text Styles */
    .exploremore span {
        margin-left: 10px;
        color: #31312E;
        font-size: 18px;
    }


    /* Hover Effect */
    .exploremore:hover {
        background-color: #f5c400;
        transform: translateX(-50%) scale(1.1);
        /* Apply scale without affecting position */
    }
}

/* -------------------------------------------------------Mobile------------------------------------------------------- */

@media (max-width: 768px) {

    .hero h1 {
        top: -10px;
        left: 3px;
        font-size: 70px;
    }

    .hero p {
        font-size: 28px;
    }



    /* -------------------------------------------------------3 Circle------------------------------------------------------- */

    .slider {
        display: flex;
        overflow: hidden;
        position: relative;
        width: 100%;
        height: 100vh;
    }

    .slide {
        min-width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: transform 0.5s ease-in-out;
        text-align: center;
    }

    .slide img {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        margin-bottom: 20px;
    }

    .slide h1 {
        font-size: 30px;
    }

    .slide p {
        font-size: 20px;
    }

    .slider-controls {
        position: absolute;
        bottom: 50px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
    }

    .slider-controls button {
        display: flex;
        width: 12px;
        height: 12px;
        border: none;
        border-radius: 50%;
        background-color: #ccc;
        cursor: pointer;
        outline: none;
    }

    .slider-controls button.active {
        display: flex;
        background-color: #f5c400;
        border-radius: 30px;
    }

    .nav-buttons {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
    }

    .nav-buttons button {
        margin: 20px;
        background-color: rgba(0, 0, 0, 0.5);
        border: none;
        color: white;
        font-size: 1.5rem;
        padding: 10px;
        width: 50px;
        /* Equal width and height for a circle */
        height: 50px;
        border-radius: 50%;
        /* Makes the button circular */
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .nav-buttons button:hover {
        background-color: rgba(0, 0, 0, 0.7);
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 60px;
    }

    .hero p {
        font-size: 25px;
    }
}