@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Old+Standard+TT:ital,wght@0,400;0,700;1,400&family=Roboto+Slab:wght@100..900&display=swap');

* {
    padding: 0;
    margin: 0;
}

:root {
    --black: #000000;
    --white: #FFFFFF;
    --main-scheme: #FF00B7;
    --secondery: #FEF8F8;
    --brown: #817468;
    --gray: #666666;
    --light-gray: #CCCCCC;
}

body {
    color: var(--black);
    font-family: 'Nunito Sans', Helvetica, sans-serif;
}

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

a:hover {
    cursor: pointer;
    color: var(--main-scheme);
}

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

li a:hover {
    cursor: pointer;
    color: var(--black);
    border-bottom: 3px solid var(--main-scheme);
    padding-bottom: 3px
}


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

h2 {
    font-family: 'Nunito Sans', Helvetica, sans-serif;
    font-family: "Old Standard TT", serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--main-scheme);
}

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

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

.about {
    background-color: var(--secondery);
    padding: 1rem;
}


.aboutgrid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: auto;
    padding: 1rem;
    gap: 3rem;
}

.services {
    padding: 1rem;
    background-color: #FFF;
}

.servicesgrid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    max-width: 1280px;
    margin: auto;
    padding: 1rem;
    gap: 3rem;
}

.serviceitems1 {
    max-width: 250px;
    height: 300px;
    object-fit: cover;
    border-radius: 400px 400px 0px 0px;
}

.serviceitems1:hover {
    border-radius: 120px 0px 120px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.serviceitems2 {
    max-width: 250px;
    height: 300px;
    object-fit: cover;
    border-radius: 0px 0px 400px 400px;
}

.serviceitems2:hover {
    border-radius: 120px 0px 120px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.serviceitems3 {
    max-width: 250px;
    height: 300px;
    object-fit: cover;
    border-radius: 0px 0px 400px 400px;
}

.serviceitems3:hover {
    border-radius: 120px 0px 120px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.serviceitems4 {
    max-width: 250px;
    height: 300px;
    object-fit: cover;
    border-radius: 400px 400px 0px 0px;
}

.serviceitems4:hover {
    border-radius: 120px 0px 120px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.testimonial {
    padding: 1rem;
    background-color: var(--secondery);
}

.gallery {
    background-color: var(--white);
    padding-block: 3rem;
}

.galleryslider {
    overflow-x: scroll;
    margin: auto;
}

.insideslider {
    display: flex;
    width: 1000px;
    height: 480px;
}

.galleryitems {
    width: 480px;
    height: 480px;
}

footer {
    border-top: 3px solid var(--main-scheme);
    padding-block: 1rem;
}

.footergrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 1000px;
    margin: auto;
    padding: 1rem;
}

.tstgrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 1280px;
    margin: auto;
    padding: 1rem;
}

.inside {
    /* background-color: rgb(0 0 0 / 0.3); */
    max-width: 1280px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-inline: 1rem;
    margin: auto;
}

header {
    background-color: #fee5f4;
    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: #fff;
    background-color: var(--main-scheme);
    padding-block: 0.6rem;
    padding-inline: 1rem;
    border-radius: 24px 0 24px 0;
    width: fit-content;
}

.btn:hover {
    color: var(--main-scheme);
    background-color: var(--secondery);
    border: 1px solid var(--main-scheme);
    cursor: pointer;
}

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

.ndh {
    display: none;
}

.herot {
    color: var(--black);
}

.insideabout {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

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

    .insideabout {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        text-align: center;
        margin: auto;
    }

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

    .hdn {
        display: none;
    }

    .ndh {
        display: block;
    }

    .home {
        background-image: url(/assets/herom.png);
        background-color: #faf7f8;
    }


    .aboutgrid {
        flex-direction: column-reverse;
    }

    .inside {

        justify-content: space-around;

    }

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

    }

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

    }

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

    .insideslider {
        display: flex;
        width: 1000px;
        height: 200px;
    }

    .galleryitems {
        width: 200px;
        height: 200px;
    }

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

    .txtsmall {
        font-size: 30px;
    }

    .serviceitems1 {
        max-width: 200px;
        height: 250px;
        object-fit: cover;
        border-radius: 400px 400px 0px 0px;
    }



    .serviceitems2 {
        max-width: 200px;
        height: 250px;
        object-fit: cover;
        border-radius: 0px 0px 400px 400px;
    }



    .serviceitems3 {
        max-width: 200px;
        height: 250px;
        object-fit: cover;
        border-radius: 0px 0px 400px 400px;
    }



    .serviceitems4 {
        max-width: 200px;
        height: 250px;
        object-fit: cover;
        border-radius: 400px 400px 0px 0px;
    }


}

.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;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}


.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: var(--main-scheme);
}

.hidden {
    display: none;
}

svg:hover {
    fill: var(--main-scheme);
}