@import url("colors.css");

html {
    /* background-color: #FAF4EF; */
    color: var(--dark-slate-gray);
}

body {
    font-family: "Montserrat", sans-serif;
    margin: 0px;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.super-container {
    padding-bottom: 20px;
}

/* Nav styles */
.nav-wrapper {
    background-color: var(--isabelline);
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
    flex: 1;
    /* Always visible when scrolling */
    /* position: fixed; */
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    max-height: 100px;
}

.right-side {
    display: flex;
    height: 100%;
}

.contact-bar {
/*     margin-top: 120px; */
    background-color: var(--isabelline);
    display: flex;
    justify-content: end;
    color: var(--battleship-gray);
    padding-right: 37px;
    box-shadow: 0px 5px 10px var(--cinereous); 
    -webkit-clip-path: inset(0px 0px -20px 0px); 
    clip-path: inset(0px 0px -20px 0px);
    padding-top: 10px;
}

.contact-detail {
    padding: 5px;
}

.social-icon-wrapper img {
    padding-right: 15px;
    width: 29px;
    height: 29px;
}

.nav-link-wrapper {
    margin-right: 20px;
    font-size: 1em;
    text-transform: uppercase;
    height: 22px;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.5s;
    flex-shrink: 0;
}

.nav-link-wrapper a {
    color: #8a8a8a;
    text-decoration: none;
    transition: color 0.5s;
}

.nav-link-wrapper:hover {
    border-bottom: 1px solid var(--dark-slate-gray);
}

.nav-link-wrapper a:hover {
    color: var(--dark-slate-gray);
}

.active-nav-link {
    border-bottom: 1px solid var(--dark-slate-gray);
}

.active-nav-link a {
    color: var(--dark-slate-gray) !important;
}

.left-side {
    min-width: 100px;
    height: fit-content;
    max-width: 40%;
}

.logo img {
    width: 100%;
    max-width: 500px;
}

/* Small menu bar */

/* Hide the menu by default */
#menu {
    display: none;
    background-color: var(--dark-slate-gray);
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 300px;
    padding: 20px;
    z-index: 1000;
    font-size: 1.3em;
}

/* Style the links */
#menu ul {
    list-style-type: none;
    padding: 0;
}

#menu ul li {
    margin-bottom: 20px;
    color: var(--isabelline);
}

#menu a {
    color: var(--isabelline);
    text-decoration: none;
    font-size: 1.8em;
}

/* Button styles */
#menu-button {
    font-size: 1.4em;
    background-color: var(--dark-slate-gray);
    color: var(--isabelline);
    border: none;
    padding: 15px 25px;
    cursor: pointer;
}

/* Hide the menu by default */
.hidden {
    display: none;
}

@media (max-width: 1200px) {
    .right-side {
        display: none;
    }

    .contact-bar {
        display: none;
    }
}

@media (min-width: 1201px) {
    .small-nav-wrapper {
        display: none;
    }
}

/* Regular pages */
.header-wrapper {
    margin-top: 50px;
    padding-top: 38px;
    padding-left: 48px;
}

.content-wrapper {
    padding-left: 48px;
    padding-right: 38px;
    padding-bottom: 20px;
}

.super-main-content-wrapper {
    display: flex;
    justify-self: center;
    flex-direction: column;
    justify-content: center;
}

/* Footer */
footer {
    margin-top: auto;
    background-color: var(--jet);
    color: var(--isabelline);
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    font-size: 0.9em;
}

.right-footer {
    display: flex;
}

.nav-link-wrapper-footer {
    margin-right: 20px;
    text-transform: uppercase;
    height: 22px;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.5s;
    flex-shrink: 0;
}

.nav-link-wrapper-footer a {
    color: var(--champagne-pink);
    text-decoration: none;
    transition: color 0.5s;
}

.nav-link-wrapper-footer:hover {
    border-bottom: 1px solid var(--isabelline);
}

.nav-link-wrapper-footer a:hover {
    color: var(--isabelline);
}

.active-nav-link-footer {
    border-bottom: 1px solid var(--isabelline);
}

.active-nav-link-footer a {
    color: var(--isabelline) !important;
}

/* Mobile */
.mobile {
    font-size: 1.2em;
}

.mobile .header-wrapper {
    font-size: 1.2em;
}

.mobile footer {
    font-size: 1.1em;
}

.mobile .social-icon-wrapper img {
    width: 50px;
    height: 50px;
    padding-right: 25px;
}