@charset "UTF-8";


@font-face {
    font-family: "Futura";
    src: url("font/FuturaStd-Book.WOFF") format("woff");
}

@font-face {
    font-family: "Futura";
    src: url("font/FuturaStd-Bold.WOFF") format("woff");
    font-weight: bold;
}

@font-face {
    font-family: "Futura";
    src: url("font/FuturaStd-Oblique.WOFF") format("woff");
    font-style: italic, oblique;
}

div {
    color: #333;
    font-family: "Futura", sans-serif;
    font-size: 15px;
    letter-spacing: .5px;
}

body {
    padding: 0;
    margin: 0;
}

#header h1 {
    text-align: center;
    font-size: 3rem;
    padding: 2rem;
    margin: 0;
}

#header h2 {
    text-align: center;
    font-size: 1rem;
    padding: 2rem;
    margin-top:0;
    margin-bottom: 1rem;
}

#header h3 {
    text-align: center;
    font-size: 1rem;
    padding: 1rem;
    margin: 0;
}

.wrapper {
    width: 1000px;
    margin: 0 auto;
}

.wrapper .description {
    width: 150px;
}

.description .callout {
    width: 100%;
    height: 150px;
    box-sizing: border-box;
    border: 4px solid #333;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.1rem;
    line-height: 1.1rem;
    letter-spacing: -1px;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
}

nav {
    width: 100%;
    height: 12rem;
    padding-bottom: 2.5rem;
    box-sizing: border-box;
    background-color: white;
}

nav .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 100%;
    background-color: inherit;
}

nav .wrapper #projectName {
    width: 300px;
    height: 100px;
}

#projectName .box {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    border: 4px solid #333;
    padding: 1rem;
}

nav .wrapper #projectName h1 {
    font-family: "Futura", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 2.75rem;
    letter-spacing: -1px;
}

nav .wrapper #projectName h2 {
    font-family: "Futura", sans-serif;
    font-style: italic;
    font-size: 15px;
    padding-left: 4px;
}

nav .nav-items {
    display: flex;
}

nav .nav-item {
    padding: 0 10px;
}

nav .nav-item a {
    font-family: "Futura", sans-serif;
    font-size: 14px;
    padding: 0 2px;
    color: #333;
    text-decoration: none;
}

nav .nav-item a:hover {
    border-bottom: 4px solid #333;
}

section {
    width: 100%;
}

section .wrapper {
    display: flex;
    padding: 10rem 0;
}

/* **********************************
LETTERFORMS
********************************** */

#letterforms,
#classification,
footer {
    background-color: #efefef;
}

#letterforms .wrapper {
    display: flex;
    justify-content: center;
}

#letterforms .wrapper > a {
    width: 725px;
    height: 305px;
    background-color: white;
    background-repeat: no-repeat;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    box-sizing: border-box;
    border: 4px solid #333;
}

#letterforms .wrapper > a :hover #lowercase-letter .label {
    background-color: #ff0;
    background-repeat: no-repeat;
}

/* **********************************
PARAGRAPH
********************************** */

#paragraph .wrapper {
    display: flex;
    justify-content: space-between;

}


#paragraph .description p {
    line-height: 20px;
    font-size: 11px;
}

#paragraph .description span {
    font-weight: normal;
    font-size: 15px;
}

#theparagraph {
    width: 69%;
}

 #theparagraph p {
    font-family: 'Georgia';
    font-size: 1.2rem;
    line-height: 1.75rem;
    letter-spacing: 0.02rem;
    font-weight: 200;
    margin-bottom: 1.5em;
 }



/* **********************************
CLASSIFICATION
********************************** */


#classification .wrapper {
    display: flex;
    justify-content: space-between;
    padding:5rem;
}

.parent-box {
    width: 215px;
    height: 215px;
    background-color: white;
    box-sizing: border-box;
    border: 4px solid #333;
    position: relative;
}

.parent-box #classification1,
.parent-box #classification2,
.parent-box #classification3,
.parent-box #classification4 {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.parent-box:hover #classification1,
.parent-box:hover #classification2,
.parent-box:hover #classification3,
.parent-box:hover #classification4 {
    display: none;
}

.parent-box .info-hover {
    display: none;
}

.parent-box:hover .info-hover {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
    line-height: 20px;
    overflow-y: auto;
    box-sizing: border-box;
}


/* **********************************
EXPRESSIVE TYPE
********************************** */
#expressive .wrapper {
    display: flex;
    justify-content: space-between;
}

#expressive-type {
    height: 600px;
    width: 800px;
    box-sizing: border-box;
    border: 4px solid #333;
}


.label {
    background-color: #333;
    padding: 7px 4px 4px 7px;
    font-size: 11px;
    letter-spacing: 1px;
    color: white;
}

.flex-end {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
}

/* **********************************
FOOTER
********************************** */

footer {
    display: flex;
    height: 10rem;
    text-align: center;
    align-items: center;
}

footer p {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
}

/* **********************************
PROCESS PAGE
********************************** */

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.process-grid .image-link {
    text-decoration: none;
}

.process-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border: 4px solid #333;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.process-grid img:hover {
    transform: scale(1.02);
}

/* **********************************
FULL-SIZE IMAGE MODAL
********************************** */

.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 1000;
    overflow-y: auto;
    align-items: center;
    justify-content: center;
}

.image-modal:target {
    display: flex;
}

.image-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    max-width: 90%;
    max-height: 90vh;
}

.image-modal img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    margin-bottom: 2rem;
    border: none;
}

.back-button {
    align-self: flex-start;
    margin-bottom: 1.5rem;
    color: #333;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.back-button:hover {
    background-color: #333;
    color: white;
}

.image-description {
    color: #333;
    font-size: 1.1rem;
    text-align: center;
    margin-top: 1rem;
    max-width: 100%;
}


