﻿.header-logo{
    width: 14rem;
    padding-bottom: var(--size-base);
    padding-left: var(--size-3xl);
}

.header-section{
    position: relative;
    background-size: cover;
    background-position-x: center;
    height: 30rem;
}

.header-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  fill: currentColor;
}

.header-top-bar{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left{
    height: var(--size-9xl);
    width: 24rem;
    display: flex;
    align-items: flex-end;
    justify-content: start;
}

.header-right{
    display: none;
}

.header-socials {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-grow: 1;
    gap: var(--size-4xl);
    height: var(--size-4xl);
}

.social-icon{
    width: var(--size-2xl);
    height: var(--size-2xl);
    transition: width 0.3s, height 0.3s;
}

.social-icon:hover{
    width: var(--size-3xl);
    height: var(--size-3xl);
}

.header-navigation{
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-grow: 1;
    gap: var(--size-3xl);
    height: var(--size-4xl);
}

.navigation-link{
    font-size: var(--size-lg);
    text-decoration: none;
    font-family: var(--font-two);
    color: var(--clr-light);
}

.header-content{
    margin-top: var(--size-10xl);
}

.header-moral-solutions{
    padding-left: var(--size-3xl);
    letter-spacing: var(--size-xxs);
    margin-bottom: var(--size-base);
}

.header-welcome{
    margin-top: 0;
    padding-left: var(--size-3xl);
}

.header-right-hamburger{
    margin-top: var(--size-4xl);
    margin-right: var(--size-4xl);
    position: relative;
    z-index: 9999;
    cursor: pointer;
    padding: 0;
    background: none;
    border: none;
}

.hamburger-menu-icon{
    width: var(--size-3xl);
    height: var(--size-3xl);
    display: block;
}

.mobile-nav{
    position: absolute;
    top:0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    background-color: var(--clr-blue);
    display: none;
    justify-content: center;
    align-items: center;
}

.mobile-nav-menu{
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--size-base);
}

.mobile-navigation-link{
    font-size: var(--size-sm);
    text-decoration: none;
    font-weight: 600;
    color: var(--clr-light);
    letter-spacing: 0.05rem;
    transition: color 0.3s;
}

.mobile-navigation-link:hover{
    color: var(--clr-sea-blue);
}
