@import url(https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@200;400;700&display=swap);

* {
    padding: 0;
    margin: 0;
}

:root {
    --black: #000000;
    --white: #FFFFFF;
    --brown: #817468;
    --light-gray: #CCCCCC;
    --gray: #666666;
}

body {
    color: var(--black);
    font-family: "Roboto Slab", serif;
}

a {
    color: var(--light-gray);
}

h1 {
    font-size: 54px;
    color: var(--white);
}

p {
    color: var(--white);
}

.home {
    height: 100vh;
    background-image: url(/assets/hero.webp);
    background-size: cover;

}

.about {
    padding-block: 6rem;
    max-width: 1280px;
    margin: auto;
}


.ab {
    display: grid;
    grid-template-areas: 'a2 a1';
    gap: 1rem;
    max-width: 900px;
    margin: auto;
    padding: 1rem;
}

.triogrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;

}


.menu {
    height: 90vh;

}

.story {
    max-width: 1280px;
    margin: auto;
}

.storygrid {
    display: grid;
    grid-template-areas: 'p1 space' 'space2 p2' 'p3 space3';
    padding: 1rem;
    gap: 1rem;
    justify-content: center;
}

.testimonials {
    padding-block: 9rem;
    background-color: #3B262C;
}

.reach {
    height: 90vh;
    background-image: url(/assets/reach.webp);
    background-size: cover;
}

footer {
    background-color: #272727;
    padding-block: 1rem;

}

.infooter {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: space-around;
    padding: 1rem;
    border-bottom: 1px solid #666666;
    max-width: 1280px;
    margin: auto;
}

.inside {
    background-color: rgb(0 0 0 / 0.3);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.insidee {
    background-color: rgb(0 0 0 / 0.6);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    top: 0px;
    position: fixed;
    width: 100%;
    z-index: 10;
}

nav {
    display: flex;
    max-width: 1280px;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    height: 4rem;
    padding-inline: 1rem;
}

ul {
    display: flex;
    list-style-type: none;
}

li {
    padding-inline: 1rem;
    color: var(--white);
}

img {
    width: 100%;
    height: auto;
}

.btn {
    all: unset;
    color: #FABC3F;
    background-color: #FABC3F;
    color: #000000;
    padding: 0.6rem;
    border-radius: 24px;

}

.btn:hover {
    background-color: #FABC3F;
    color: #000000;
    cursor: pointer;
}

.pdn {
    padding-left: 0;
}

.btng {
    all: unset;
    color: #FABC3F;
    border: 2px solid #FABC3F;
    padding: 0.6rem;
    border-radius: 24px;
}


.btng:hover {
    background-color: #FABC3F;
    color: #000000;
    cursor: pointer;
}

a {
    all: unset;
    color: var(--white);
}

a:hover {
    cursor: pointer;
}

.hdn {
    display: block;
    display: flex;
}

.ndh {
    display: none;
}

.parentt {
    height: 800px;
    max-width: 1000px;
    margin: auto;
    position: relative;
}

.t1 {
    position: absolute;
    top: 0px;
    left: 0;
    width: 200px;
    height: 200px;
    background-color: #3B262C;
}

.t2 {
    width: 400px;
    position: absolute;
    top: 25px;
    left: 25px;
}

.t3 {
    position: absolute;
    top: 200px;
    right: 0;
    width: 200px;
    height: 200px;
    background-color: #3B262C;
}

.t4 {
    width: 400px;
    position: absolute;
    top: 225px;
    right: 25px;
}

.t5 {
    position: absolute;
    top: 515px;
    left: 225px;
    width: 200px;
    height: 200px;
    background-color: #3B262C;
}

.t6 {
    width: 400px;
    position: absolute;
    top: 425px;
    left: 0px;
}

.herot {
    padding-top: 9rem;
    text-align: center;
}

@media only screen and (max-width: 700px) {

    .pdn {
        padding-left: 2rem;
    }

    h1 {
        font-size: 48px;
    }

    .insidee {
        align-items: start;
    }

    .herot {
        padding-top: 6rem;
        font-size: 75px;
    }

    .parentt {
        height: 1050px;
    }

    .t1 {
        top: 0px;
        left: 0;
        width: 200px;
        height: 200px;
    }

    .t2 {
        width: 360px;
        top: 25px;
        left: 25px;
    }

    .t3 {
        top: 350px;
        right: 0;
        width: 200px;
        height: 200px;
    }

    .t4 {
        width: 360px;
        top: 375px;
        right: 25px;
    }

    .t5 {
        top: 790px;
        left: 185px;
        width: 200px;
        height: 200px;
    }

    .t6 {
        width: 360px;
        top: 725px;
        left: 0;
    }


    .ab {
        grid-template-areas: 'a1' 'a2';
    }

    .triogrid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .infooter {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 3rem;
    }

    .storygrid {
        grid-template-areas: 'p1' 'p2' 'p3';
    }

    .hdn {
        display: none;
    }

    .ndh {
        display: block;
    }
}

.carousel-container {
    max-width: 100%;
    overflow: hidden;
    margin: auto;
    position: relative;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
}


.carousel-dot-container {
    text-align: center;
    margin-top: 10px;
}

.carousel-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #bbb;
    margin: 0 5px;
    cursor: pointer;
}

.carousel-dot.active {
    background-color: #FABC3F;
}

.hidden {
    display: none;
}