/********************* ACROSS ALL PAGES ************************/
html {
	scroll-behavior: smooth;
	-moz-user-select: none;
	-webkit-user-select: none;
	user-select: none;
	width: 100%;
    height: 100%;
	margin: 0px;
    padding: 0px;
	-webkit-overflow-scrolling: touch;
    overflow-x: hidden;
}

body {
    font-family: "Inter", sans-serif;
    width: 100%;
    margin: 0px;
    padding: 0px;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    overflow-x: hidden;
    background-color: #00273d;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Libre Baskerville", serif;
}

/* Nav bar*/
.custom-navbar {
    background-color: #00273d;
    font-family: "Inter", sans-serif;
    font-weight: bold;
}

.nav-link {
        color: #cdad7d;
        margin: 0px 10px 0px 10px; 
}

/* Nav Bar Hamburger Transformation */
.custom-navbar .navbar-toggler {
    border: none;
    box-shadow: none;
    width: 40px;          /* clickable area */
    height: 32px;
    padding: 0;
    position: relative;
}

.custom-navbar .navbar-toggler:focus {
    box-shadow: none;
}

/* The 3 hamburger lines */
.custom-navbar .toggler-icon {
    display: block;
    width: 22px;
    height: 3px;
    background-color: #ffffff;
    margin: 6px auto;     /* centers lines + spacing */
    transition: transform 0.25s ease, opacity 0.2s ease;
}

/* ===== OPEN STATE (turn into X) ===== */
/* When the menu is OPEN, Bootstrap removes .collapsed from the button */
.custom-navbar .navbar-toggler:not(.collapsed) .toggler-icon:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.custom-navbar .navbar-toggler:not(.collapsed) .toggler-icon:nth-child(2) {
    opacity: 0;
}

.custom-navbar .navbar-toggler:not(.collapsed) .toggler-icon:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}


/*=====HOME PAGE BODY====*/
#home {
    background-color: #00273d;
    min-height: 100svh;
    padding-bottom: 50px;
}

#Header {
    padding-top: 150px;
}

#headertextbox {
    width: auto;
    max-width: 250px;
    height: auto;
    border: 2px solid #cdad7d;
    padding: 15px 20px 8px 20px;    
    display: flex;
    align-items: center;
}

#Header h1 {
    color: #cdad7d;
    font-size: 25px;
}

#homepagebody {
    margin-top: 150px;
    max-width: 960px;
    padding: 0px 40px 0px 40px;
}

#homepagebody h2 {
    color: #cdad7d;
    font-size: 50px;
}

#homepagebody p {
    color: #eeead6;
    font-size: 20px;
    margin-top: 20px;
}

#homecontactusbutton {
    margin-top: 40px;
    width: 200px;
    height: 55px;
    color: #00273d; 
    background-color: #cdad7d;
    display: flex;
    justify-content: center; /* horizontal */
    align-items: center;     /* vertical */
    transition: all 250ms ease;
}
#homecontactusbutton:hover {
    background-color: #eeead6;

}
#homecontactusbutton:hover p {
}

#homecontactusbutton p{
    color: #00273d;
    font-family: "Inter", sans-serif;
    font-weight: bold;
    font-size: 20px;
    margin-top: 15px;
}

/* mobile styles */
@media (max-width: 576px) {
    #home {
    padding-bottom: 100px;
    }
    #homepagebody {
        padding: 0px 20px 0px 20px;
    }
    #homepagebody h1 {
    padding-top: 80px;
    }
    #homepagebody h2 {
        font-size: 32px;
    }
}

/*=-======== Services Section ==================*/

#services {
    background-color: #f4f1ec;
    min-height: 100svh;
    padding-bottom: 40px;
}

.pageheadercontainer {
    padding: 150px 0px 30px 0px;
    font-size: 45px;
}

#servicesheader h1 {
    color: #222344;
}

#servicecontentsection {
    padding-top: 20px;
}

.servicecolumncol {
    height: 400px;
    background-color: #e8d1ae;
    color: #222344;
    padding: 20px 15px 20px 15px;
}

#servicecol1 {
    background-color: #e8d1ae;
}
#servicecol2 {
    background-color: #dbbf94;
}
#servicecol3 {
    background-color: #cdad7d;
}
.servicecolumncol h2 {
    font-size: 20px;
    padding: 15px 0px 15px 0px;
}

/* Screen adjustments for column */
@media (max-width: 1400px) {
    .servicecolumncol {
        height: 440px;
    }
}
@media (max-width: 1200px) {
    .servicecolumncol {
        height: 460px;
    }
}
@media (max-width: 991px) {
    .servicecolumncol {
        height: 320px;
    }
    #servicecontentsection {
        padding-bottom: 40px;
    }
    #services {
        height: 100%;
    }
}
@media (max-width: 576px) {
    .pageheadercontainer {
        padding-top: 80px;
    }
    .servicecolumncol {
        width: 90vw;
        height: 390px;
    }
    #services {
        padding: 0px 20px 0px 20px;
    }
    
}


/*============= ABOUT US ==================*/

#about {
    min-height: 100svh;
}

#aboutusheader h1 {
    color: #cdad7d;
}

#aboutbodyrow p {
    font-size: 16px;
    color: #cdad7d;
}

#headshotcolumn img {
    max-width: 275px;
}

@media (max-width: 576px) {
    #about {
        padding: 0px 20px 0px 20px;
    }
    #headshotcolumn img {
    max-width: 200px;
    }
}


/*============= CONTACT US ==================*/

#contact {
    color: #cdad7d;
    padding: 30px 0px 30px 0px;
    margin: 0px 0px 0px 0px;
    height: auto;
}

#contactcontainer h3 {
    padding-bottom: 20px;
}

#contactcontainer {
    padding: 30px 0px 30px 0px;
}

#contacticoncol {
    margin: 0px 0px 0px 0px;
    max-width: 70px;
}
.bi {
    margin: 0px 40px 0px 10px;
}