html {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

@font-face {
    font-family: Poppins;
    font-weight: 900;
    font-display: auto;
    src: url("./Fonts/Poppins/Poppins-Bold.ttf");
}

@font-face {
    font-family: Poppins;
    font-weight: 600;
    font-display: auto;

    src: url("./Fonts/Poppins/Poppins-Regular.ttf");
}

@font-face {
    font-family: Poppins;
    font-weight: 300;
    font-display: auto;

    src: url("./Fonts/Poppins/Poppins-ExtraLight.ttf");
}

@font-face {
    font-family: Rajdhani;
    font-weight: 900;
    font-display: auto;

    src: url("./Fonts/Rajdhani/Rajdhani-Bold.ttf");
}

@font-face {
    font-family: Rajdhani;
    font-weight: 600;
    font-display: auto;

    src: url("./Fonts/Rajdhani/Rajdhani-Regular.ttf");
}

@font-face {
    font-family: Rajdhani;
    font-weight: 300;
    font-display: auto;

    src: url("./Fonts/Rajdhani/Rajdhani-Light.ttf");
}

@font-face {
    font-family: Lobster;
    font-weight: 600;
    font-display: auto;

    src: url("./Fonts/Lobster.ttf");
}

:root {
    --font-primary: Lobster;

    --font-secondary: Poppins;

    --text-color: rgb(255, 253, 242);
    --text-color-dark: #27211d;

    --background-color: #d5cab7;
    --background-color-darker: #1d1a18;

    --color-button-light: #f3f3e4;
    --color-button-dark: #161514;

    /*Blob effect vars*/
    --blob-radius: 900px;
    --blob-blendmode: hard-light;
}

* {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 16px;
    box-sizing: border-box;
    color: var(--text-color);
    padding: 0;
    margin: 0;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

a {
    text-decoration: none;
}

h2 {
    font-family: var(--font-primary);
    font-size: 1.75rem;
}

h3 {
    font-family: var(--font-secondary);
    color: var(--text-color);
    font-size: 1.25rem;
}

h4 {
    font-family: var(--font-secondary);
    font-size: 1rem;
}

p {
    font-family: var(--font-primary-light);
    font-size: 1rem;
}

.smaller-p {
    font-size: 0.7em;
}

/*Page layout setup
  */
body {
    background-color: var(--background-color);
}

main {
    display: flex;
    flex-direction: column;
    height: 100vh;
    scroll-snap-type: y mandatory;
    overflow: scroll;
    scroll-behavior: smooth;
}

/*Header and nav links*/
header {
    display: flex;
    position: absolute;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
    background-color: rgba(29, 26, 22, 0.4);
    z-index: 6;
}

nav {
    display: flex;
    position: relative;

    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.logo {
    display: flex;
    justify-content: center;
    width: 9rem;
    margin-left: 1.5rem;
}

.logo img {
    width: 100%;
}


.hamburger_menu-btn {
    position: relative;
    width: 2rem;
    height: 2rem;
    margin-right: .75rem;
}

.hamburger_menu-btn:hover {
    cursor: pointer;
}

.hamburger_menu-btn span {
    position: absolute;
    width: 100%;
    height: .2rem;
    border-radius: 100px;
    background-color: #f3f3e4;
    box-shadow: 0 1.2px 1px 0 #161514c9;
    top: 20%;
    left: 0%;
    transform: translateY(-50%);
    transition: all .3s;
}

.hamburger_menu-btn span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger_menu-btn span:nth-child(3) {
    top: 80%;
    transform: translateY(-50%);
}

.hamburger_menu-btn:hover span {
    background-color: rgb(221, 171, 54);
    box-shadow: 0 2px 2px 0 #161514c9;
}



.nav-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: start;

    position: absolute;
    top: 120%;

    width: 100%;
    height: 100vh;
    max-width: 720px;

    background-color: #27211d00;
}

.nav-menu.active {
    display: flex;
    background-color: #27211d;

    padding: 2rem;
}

.nav-menu ul {
    display: flex;

    flex-direction: column;
    align-items: center;

    width: 100%;
    height: 100%;
}

.nav-menu li {
    display: flex;

    width: 100%;
    height: 4rem;

    justify-content: center;
    align-items: center;

    list-style-type: none;
}

.nav-menu a {
    font-family: Poppins;
    font-size: 1.25rem;
    letter-spacing: 0.25px;

    color: antiquewhite;

    transition: color ease-out .08s .04s;
}



nav a:hover {
    color: rgb(230, 187, 95);
}

nav a::after {
    content: '';
    display: flex;
    position: absolute;
    top: 100%;
    width: 0%;
    height: 1px;
    background-color: rgb(224, 175, 67);
    transition: width ease-in-out .08s .01s;

}

nav a:hover::after {
    display: flex;
    position: absolute;
    left: 0%;
    top: 100%;
    width: 100%;
}

footer {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 1rem;
    background-color: rgb(20, 19, 18);
    scroll-snap-align: center;
}

.footer-about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-about h4 {
    text-align: center;
}

#footer p {
    font-size: .8rem;
    max-width: 20rem;
    font-family: Rajdhani;
    font-weight: 600;
    text-align: center;
    margin: .2rem;

}

.footer-contactInfo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem 0;
    justify-content: center;
}

.footer-contactInfo a {
    margin: .25rem;
}

/*Layout classes*/

.page-section {
    display: flex;
    flex-direction: column;

    justify-content: space-around;
    align-items: center;

    width: 100%;
    padding: 5%;
    height: fit-content;

    scroll-snap-align: center;

    animation: fadein 2s;
}

.col {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 90%;
    max-width: 1600px;
    align-items: center;
    margin-left: auto;
    margin-right: auto;

}

.row {
    display: flex;
    flex-direction: column;
    justify-content: center;

    width: fit-content;
}

/*Individual sections*/

/*Hero section*/
#banner {
    position: relative;
    min-height: 100vh;
}

#banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("/Assets/Images/banner.jpg?v=1.1") no-repeat;
    background-size: cover;
    filter: sepia(50%) brightness(40%) contrast(90%);

    background-position: top;
}

.title h1 {
    position: absolute;
    left: -9999px;
    font-weight: 900;
    color: rgb(252, 241, 210);
}

#banner img {
    width: 100%;
}


/*Services section*/
#services {
    position: relative;
    padding: 5rem;
}

#services .text_tax {
    content: "*All prices includes taxes.";
    font-family: Rajdhani;
    font-size: 1rem;
    color: red;
    margin: 1.5rem 0;
}

#services h2 {
    color: var(--text-color-dark);
}

.services-grid {
    position: relative;
    display: grid;
    height: 100%;
    gap: 1rem 5rem;
}

.services-card {
    display: flex;
    width: 100%;
    height: 100%;


    align-items: start;
    justify-content: start;

    flex-direction: column;
}

.service-title {
    width: 100%;
}

.service-list {
    width: 100%;
    list-style-type: none;
    align-items: start;
}

.service-list li,
.service-title {
    display: flex;
    justify-content: space-between;
    margin-top: .5rem;
    border-bottom: solid 1px black;
}

.services-card h2 {
    text-align: left;

    font-family: Poppins;
    font-weight: 900;
    font-size: 1.2rem;
}

.services-card h3 {
    position: relative;
    text-align: left;

    font-family: Rajdhani;
    font-weight: 900;
    font-size: 1rem;

    color: var(--text-color-dark);
}

.service-title h3 {
    text-align: end;
}

/*Gallery*/

#our-work {
    background-color: var(--background-color-darker);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(2, 10rem);
    grid-auto-rows: 10rem;
    grid-gap: 1rem;
    padding: 2rem;
    /* box-shadow: -25px -25px rgba(255, 255, 255, 0.7), 25px 25px 0px 0px rgba(0, 0, 0, 0.5); color within gap,couldnt remove*/
}

.gallery-item {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery .image {
    width: 100%;
    height: 100%;
    clip-path: polygon(5% 0%, 97% 2%, 100% 97%, 0% 100%, 0% 90%);
    border-right: 0;
    overflow: hidden;
}


.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 0%;
    transition: .5s ease-in-out;

    filter: hue-rotate(-20deg) contrast(.75);
}

.gallery img:hover {
    transform: scale(1.5);
}

.w-2 {
    grid-row: span 2;
    margin-top: 20px;
    height: 300px;
}


/*Find us*/

#find-us {
    position: relative;
    color: var(--text-color);
}

#find-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: var(--background-color-darker);
    background-size: cover;
    background-position: center;
}

.map_store {
    width: 40rem;
    max-width: 100%;
}


.findUs-hours {
    width: 100%;
    max-width: 400px;
}

.findUs-hours h2 {
    font-size: 2rem;
    color: var(--text-color);
    border-bottom: solid 1px rgb(255, 255, 255);
    font-weight: 300;
    padding: .75rem;
    margin-bottom: 1rem;
}

.findUs-hours h3 {
    color: var(--text-color);
    font-weight: 300;
    font-size: 1rem;
}

.findUs-hours {
    display: flex;
    flex-direction: column;

    text-align: center;

    padding: .1rem 1.5rem;

    border-bottom: solid 1px rgb(255, 255, 255);
}

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

.shop-details {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
    margin-left: 1rem;
    align-items: center;
    justify-content: center;
}

.shop-details h3 {
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 300;
    text-wrap: nowrap;
    text-align: start;
}

.developer_wm,
.developer_wm a {
    border-bottom: #c5c5c5 solid 1px;
    margin-top: 2rem;
    font-size: 1rem;
    font-size: .7rem;
    max-width: 20rem;
    font-family: Rajdhani;
    font-weight: 600;
}

@media screen and (min-width:720px) {
    html {
        font-size: 14px;
    }

    .logo {
        display: flex;
        justify-content: center;
        width: 10rem;
        margin-left: 1.5rem;
    }

    .hamburger_menu-btn {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;

        position: relative;

        height: auto;

        margin-right: .5rem;

        align-items: center;
        justify-content: end;
    }

    .nav-menu ul {
        width: 80%;

        flex-direction: row;
        justify-content: space-around;
    }

    nav a {
        position: relative;
        margin: 0 0.1rem;
        font-weight: 300;
        font-size: 1.2rem;
    }

    footer {
        display: flex;
        flex-direction: row;
    }

    h2 {
        font-size: 3rem;
    }

    .col {
        flex-direction: row;
    }

    .row-100 {
        display: flex;

        width: 100%;
    }

    .row-70 {
        display: flex;
        width: 70%;
    }

    .row-50 {
        display: flex;
        width: 50%;
    }

    .row-30 {
        display: flex;
        width: 33%;
    }

    .title h2 {
        width: 40%;
        font-size: 4rem;
    }

    #banner {
        position: relative;
    }

    #banner::before {
        background-size: 100%;
        background-position: 50% 30%;
    }

    .services-card h3 {
        margin-bottom: .6rem;
    }

    .gallery {
        grid-template-columns: repeat(3, 10rem);
        grid-auto-rows: 10rem;
        padding: 0;
    }

    .w-2 {
        grid-column: span 2;
        grid-row: span 2;
        margin-top: 0;
        height: auto;
    }

    .shop-details {

        margin-top: 0;
    }

    .findUs-details {
        flex-direction: row;
    }

    .findUs-hours {
        border-right: solid 1px rgb(255, 255, 255);
        border-bottom: none;
    }

    footer p {
        font-size: 1rem;
    }
}

@media screen and (min-width:920px) {
    html {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(350px, 1fr));
        grid-template-rows: repeat(2, 300px);
    }
}

@media screen and (min-width:1800px) {
    html {
        font-size: 18px;
    }

    .col {
        flex-direction: row;
        width: 80%;
    }
}