@charset "UTF-8";
/* CSS Document */
*{
	margin: 0;
	padding: 0;
	font-size: 100%;
	box-sizing: border-box;
	vertical-align: baseline;
}

html {
    scroll-behavior: smooth;
}



/* FONTS */
body {
    font-family: museo-sans;
}

#coverbtn {
    letter-spacing: 0.1rem;
}

#wordmark {
    font-family: warbler-display;
    font-variant: small-caps;
    font-size: 2rem;
    letter-spacing: 0.2rem;
}

nav {
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
}

h1 {
    font-family: warbler-display;
    font-variant: small-caps;
    font-weight: 100;
    font-size: 2rem;
    letter-spacing: 0.3rem;
}

h2 {
    font-family: warbler-display;
    font-variant: small-caps;
    font-weight: 300;
    font-size: 2rem;
    letter-spacing: 0.2rem;
}

#section1 a, #section2 a {
    letter-spacing: 0.1rem;
}

footer h3 {
    font-size: 1rem;
    text-transform: uppercase;
}



/* GENERAL */
body {
    margin: auto;
}


/* HEADER */
header {
    position: fixed;
    width: 100%;
    top: 0;

    z-index: 100;
}

header:hover {
    background-color: #1E3A5F;
}

header .container {
    width: 90vw;
    margin: auto;

    padding-bottom: 1vw;

    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

/* WORDMARK */
header #wordmark a {
    text-decoration: none;
    color: white;
}

/* NAVIGATION BAR */
header nav {    
    display: flex;
    justify-content:space-between;
    align-items: center;
}

header nav li {
    display: inline-flex;
}

header nav .optical {
    padding-left: 20px;
}

header nav a {
    text-decoration: none;
    color: white;

    transition: all 0.2s ease-in-out;
}

nav a:hover {
    color: #3E6990;
}

/* DROP DOWN MENU */
header nav ul {
    list-style: none;

    position: relative;
    text-align: center;
}

header nav li {
    width: 9vw;
}

header nav ul li a { 
    display: block; 

    padding: 10px 10px; 
    margin: auto;

    text-decoration: none; 

    z-index: 99;
} 

header nav ul li:hover>ul {
    display: block; /*to show the dropdown menus*/

    padding-bottom: 1%;
    padding-top: 2.5vw;

    background-color: #1E3A5F;
}

header nav ul ul {
    display: none;
    position: absolute;
    z-index: 98;
}

header nav ul ul li {
    display: block;
}


/* UTILITIES */
#utilities {
    margin-left: 2vw;
    display: flex;
    align-items: center;
}

#utilities p {
    margin: 0 0.5vw;
}

/* MAIN */
main {
    margin-bottom: 5vw;
}

/* MAIN PIC SECTION */
.mainpicsection {
    position: relative;

    height: 150vh; /* allow space for sticky .img_box */
}

.mainpicsection .img_box {
    height: 100vh;
    overflow: hidden;

    display: flex;

    position: sticky;
    top: 0;
}

.mainpicsection img {
    width: 50%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

h1 {
    width: 100%;

    position: absolute;
    bottom: 33%;

    text-align: center;
    color: white;
}

.mainpicsection .link_box {
    width: 100%;
    text-align: center;

    position: absolute;
    bottom: 25%;
}

#shopCover .text_box {
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

#shopCover.scrolled .text_box {
    opacity: 1;
}


/* SECTION 1 & 2 */
#section1, #section2 {
    margin-top: 0.5vw;

    display: flex;
    justify-content: end;
    align-items: center;
    gap: 0.5vw;

    overflow: hidden;
}

#section1 div, #section2 div {
    position: relative;
}

#section1 .img_box, #section2 .img_box {
    width: 32vw;
    height: 50vw;
    overflow: hidden;
}

#brandmark {
    width: 33.35vw;
}

#brandmark .img_box {
    width: 300px;
    height: 300px;
    overflow: hidden;
    
    margin: auto;
}

#section1 img, #section2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#section2 #section2-mens {
    width: 66.6vw;
}

#section2-mens img {
    object-position: bottom;
}

#section1 .text_box, #section2 .text_box {
    padding: 8vw 0;

    width: 100%;
    height: 50%;
    position: absolute;
    bottom: 0;

    text-align: center;
    color: white;

    pointer-events: none;
}

#section1 h2, #section2 h2 {
    padding-bottom: 3vw;
}


#section1 .img_box, #section2 .img_box {
    transition: scale 0.3s ease-in-out;
}

#section1 > div:not(:first-child):hover .img_box, #section2 div:hover .img_box {
    scale: 1.01;
}

/* SHOP BUTTON HOVER EFFECT */
.Btn-wEffect {
    padding: 1vw 2vw;

    width: 20%;
    border: 1px solid white;
    text-decoration: none;

    color: white;
    transition: all 0.5s ease-in-out;

    position: relative;

    z-index: 0;
}

.Btn-wEffect::before {
    content: "";
    width: 0px;
    height: 100%;
    background-color: white;

    position: absolute;
    bottom: 0;
    left: 0;

    transition: all 0.5s ease-in-out;

    z-index: -1;
}

.Btn-wEffect:hover::before {
    width: 100%;
}

.Btn-wEffect:hover {
    color: #1E3A5F;
}

/* FOOTER */
footer {
    padding-top: 3vw;
    background-color: #EEEEEE;
    color: black;
}

footer .container {
    width: 90vw;
    margin: auto;
}

footer #wordmark {
    color: #1E3A5F;
}

#footer_grid {
    display: grid;
    grid-template-columns: 70% 30%;
    grid-template-rows: auto;
    grid-template-areas: 
        "nav logo";
}

footer nav {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    padding-top: 3vw;
    padding-bottom: 3vw;
    padding-right: 15vw;

    grid-area: nav;
}

footer nav a {
    text-decoration: none;
    color: black;
    
    transition: all 0.2s ease-in-out;
    
}

footer nav section div {
    padding-bottom: 1vw;
}

footer h3 {
    padding-bottom: 3vw;
}

footer p {
    padding-bottom: 1vw;
}

#logo_box {
    width: 20vw;

    margin: auto;
    margin-top: 3vw;

    grid-area: logo;
}

#logo_box img {
    width: 100%;
}