/* @import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --rosegold: #b76e79;
    --rosegold-light: #d6a5aa;
    --maroon: #800020;
    --silver: #c0c0c0;
    --white: #ffffff;
    --font-family: 'Noto Serif', sans-serif;
}

* {
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}


header {
    position: sticky;
    top: 0;
    width: 100%;
    height: 80px;
    background: var(--maroon);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
    z-index: 9999;
}

@media (min-width: 900px) {
    header {
        transition: top 1s ease-in-out;
    }

    header.scrolled {
        transition: top 0.9s ease-in-out;
        top: -80px; 
    }
}

.logo {
    width: 100%;
    background-color: var(--maroon);
    margin: 0;
}

.logo-a {
    width: 9%;
    margin: 0;
    background-color: var(--maroon);
}

@media (max-width: 1450px) {
    .logo-a {
        width: 10%;
    }
}

@media (max-width: 1200px) {
    .logo-a {
        width: 11%;
    }
}

@media (max-width: 1100px) {
    .logo-a {
        width: 12%;
    }
}

@media (max-width: 1000px) {
    .logo-a {
        width: 12.5%;
    }
}

@media (max-width: 900px) {
    .logo-a {
        width: 13%;
    }
}

@media (max-width: 800px) {
    .logo-a {
        width: 13.5%;
    }
}

@media (max-width: 700px) {
    .logo-a {
        width: 14%;
    }
}

@media (max-width: 600px) {
    .logo-a {
        width: 15.5%;
    }
}

@media (max-width: 550px) {
    .logo-a {
        width: 18%;
    }
}

@media (max-width: 500px) {
    .logo-a {
        display: none;
    }
}




/* HAMBURGER */

.hamburger {
    display: none;
}

/* HAMBURGER END */






/* NAVIGATION LINKS */

.nav-bar ul {
    display: flex;
}

.services-a {
    display: flex;
    align-items: center;
    color: var(--silver);
    font-size: 20px;
    padding: 10px 25px;
    background-color: var(--maroon);
}

.services-a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease-in-out;
}

.services-a:hover {
    color: var(--white);
    transition: 0.3s ease;
}

/* NAVIGATION LINKS END */





/* LINK UNDERLINES & HOVER EFFECTS */

.services-a-h::before {
    content: "";
    position: absolute;
    display: flex;
    align-items: center;
    width: 55%;
    height: 3px;
    bottom: 10%;
    background-color: #ffffff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.services-a-p::before {
    content: "";
    position: absolute;
    display: flex;
    align-items: center;
    width: 65%;
    height: 3px;
    bottom: 10%;
    background-color: #ffffff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.services-a-w::before {
    content: "";
    position: absolute;
    display: flex;
    align-items: center;
    width: 60%;
    height: 3px;
    bottom: 10%;
    background-color: #ffffff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.services-a-o::before {
    content: "";
    position: absolute;
    display: flex;
    align-items: center;
    width: 52%;
    height: 3px;
    bottom: 10%;
    background-color: #ffffff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.services-a-a::before {
    content: "";
    position: absolute;
    display: flex;
    align-items: center;
    width: 60%;
    height: 3px;
    bottom: 10%;
    background-color: #ffffff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.services-a:hover::before {
    transform: scaleX(1);
}

.nav-links .active {
    transition: 0.3s ease-in-out;
    color: var(--white);
}

.nav-links .active:hover {
    color: var(--silver);
    transition: 0.3s ease;
}

.nav-links .active::after {
    content: "";
    position: absolute;
    display: flex;
    align-items: center;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    top: 7%;
    background-color: #ffffff;
    transition: transform 0.3s ease;
    transform-origin: center;
}

/* LINK UNDERLINES & HOVER EFFECTS END */




/* CONTACT BUTTON */

.cta {
    padding: 7px 23px;
    border-radius: 30px;
    background-color: var(--silver);
    font-family: var(--font-family);
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: var(--maroon);
    border: none;
    /* border: 1px solid var(--silver); */
    background-color: var(--silver);
    transition: 0.3s ease-in-out;
}

.cta:hover {
    background-color: var(--rosegold);
    color: var(--silver);
    transition: 0.3s ease;
}

/* CONTACT BUTTON END */




/* MEDIA QUERIES HEADER */

@media only screen and (max-width: 1320px) {
    header {
        padding: 0 50px;
    }
}

@media only screen and (max-width: 1100px) {
    header {
        padding: 0 30px;
    }
}

@media only screen and (max-width: 900px) {
    .cta {
        display: none;
    }
    
    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger .line {
        width: 30px;
        height: 3px;
        background-color: var(--silver);
        margin: 6px 0;
    }

    .nav-bar {
        height: 0;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        width: 100%;
        background: var(--maroon);
        transition: 0.5s;
        transition-delay: 0.2s;
    }

    .nav-bar.active {
        height: 100vh;
        transition: 0.4s;
    }

    .nav-bar ul {
        display: block;
        width: fit-content;
        margin: 80px auto 0 auto;
        text-align: center;
        transition: 0.2s;
        display: none;
    }

    .nav-links {
        display: none;
    }

    .nav-bar.active .nav-links {
        transition: 0.2s;
        transition-delay: 0.2s;
    }

    .nav-links.active {
        display: block;
        transition: 0.2s;
        transition-delay: 0.2s;
    }

    .nav-bar ul li a {
        margin-bottom: 12px;
    }
}

/* MEDIA QUERIES HEADER END */



/* FOOTER */

footer {
    position: relative;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: auto;
    background-color: var(--maroon);
    padding: 60px 10%;
    z-index: 9;

}

footer ul {
    list-style: none;
}

.footer-col {
    width: 25%;
}

.footer-col h4 {
    position: relative;
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 22px;
    color: var(--silver);
    text-transform: capitalize;
}

.footer-col h4::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--rosegold);
}

footer ul li:not(:last-child) {
    margin-bottom: 8px;
}

footer ul li a {
    font-size: 19px;
    text-transform: capitalize;
    color: var(--silver);
    text-decoration: none;
    transition: .4s;
}

footer ul li p {
    display: block;
    font-size: 19px;
    /* text-transform: capitalize; */
    color: var(--silver);
    text-decoration: none;
}

footer ul li a:hover {
    color: var(--white);
    padding-left: 2px;
}

.links a {
    display: inline-block;
    height: 44px;
    width: 44px;
    color: var(--silver);
    background-color: var(--maroon);
    text-align: center;
    line-height: 44px;
    border-radius: 50%;
    transition: .4s;
}

.links a:hover {
    color: var(--white);
    background-color: var(--rosegold);
}

@media(max-width: 740px) {
    .footer-col {
        width: 50%;
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-col h4::before {
        all: unset;
    }
}

@media(max-width: 555px) {
    .footer-col {
        width: 100%;
    }
}

/* FOOTER END */


::-webkit-scrollbar {
    display: none;
}