* {
    box-sizing: border-box;
}

:root {
    --cream: #FCF9F6;
    --red: #FF0000;
    --black: #202020;
}

body {
    font-family: "Roboto", sans-serif;
    color: var(--black);
    font-size: 16px;
    line-height: 1.5em;
    font-weight: 400;
    padding: 0;
    margin: 0;
    background-color: var(--cream);
    cursor: url("assets/noble-cursor.png") 16 16, auto;
}

a,
button {
    cursor: url("assets/noble-hover-cursor.png") 16 16, pointer;
}

body:active {
    cursor: url("assets/noble-click-cursor.png") 16 16, auto;
}




div.wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.25em;
}

/* HEADER Styles */
header {
    background-color: var(--cream);
    color: var(--red);
    padding: 20px 0;
}

header div.wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

p.name {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0;
}

p.name span.noble {
    font-family: "DM Serif Display", serif;
    font-style: italic;
    color: var(--black);
    font-weight: 400;
}

nav ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    gap: 60px;
    margin: 0;
    padding: 0;
}

nav a:link,
nav a:visited {
    color: var(--red);
    text-decoration: none;
    font-family: "Work Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.6;
}

/* HERO Styles */
#hero {
    min-height: 85vh;
    background-color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero div.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#hero h1 {
    font-family: "Roboto", sans-serif;
    font-size: 120px;
    font-weight: 900;
    letter-spacing: -2px;
    margin: 0;
    color: var(--red);
}

#hero h1 span.hero-noble {
    font-family: "DM Serif Display", serif;
    font-style: italic;
    color: var(--black);
    font-weight: 400;
}

#hero .arrow {
    font-size: 48px;
    color: var(--red);
    margin-top: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* RED BANNER Section */
#red-banner {
    background-color: var(--red);
    color: var(--black);
    padding: 120px 0 140px;
    position: relative;
    overflow: visible;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 80px), 50% 100%, 0 calc(100% - 80px));
}

.banner-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 100px;
}

.banner-text-top,
.banner-text-bottom {
    font-family: "Roboto", sans-serif;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 500;
    max-width: 300px;
}

.banner-text-top {
    text-align: left;
    position: absolute;
    top: -30px;
    left: 100px;
    z-index: 15;
}

.banner-text-bottom {
    text-align: right;
    position: absolute;
    bottom: -30px;
    right: 100px;
    z-index: 15;
}

.banner-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 550px;
    padding: 60px 0;
}

.my-mind {
    font-family: "Roboto", sans-serif;
    font-size: 200px;
    font-weight: 900;
    letter-spacing: -8px;
    margin: 0;
    padding: 0;
    color: var(--black);
    line-height: 0.9;
    text-align: center;
    white-space: nowrap;
}

.my-story {
    font-family: "Roboto", sans-serif;
    font-size: 200px;
    font-weight: 900;
    letter-spacing: -8px;
    margin: 0;
    padding: 0;
    color: var(--black);
    line-height: 0.9;
    text-align: center;
    white-space: nowrap;
}

.banner-center img.portrait {
    width: 140px;
    height: 180px;
    object-fit: cover;
    object-position: center 15%;
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* GALLERY Section */
#gallery {
    background-color: var(--cream);
    padding: 100px 0;
}

#gallery .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px 160px;
    padding: 0;
    justify-items: center;
    max-width: 100%;
    margin: 0 auto;
}

.gallery-item {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 30px;
    justify-content: flex-start;
}

.gallery-number-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.gallery-number {
    font-family: "Roboto", sans-serif;
    font-size: 200px;
    font-weight: 900;
    color: var(--black);
    line-height: 1;
    margin: 0;
    padding: 0;
}

.gallery-label {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.5px;
    margin: 8px 0 0 0;
    padding: 0;
    line-height: 1.3;
    text-transform: uppercase;
}

.gallery-item-content {
    display: flex;
    flex-direction: column;
    padding-bottom: 8px;
}

.gallery-item a {
    display: block;
}

.gallery-item img {
    width: 160px;
    height: 210px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-item a:hover img {
    transform: scale(1.05);
}

/* ABOUT Section */
#about {
    display: none;
}

#about div.wrapper {
    display: none;
}

div.about-left {
    display: none;
}

div.about-left img {
    display: none;
}

div.about-right {
    display: none;
}

div.about-right h2 {
    display: none;
}

span.creativejourney {
    display: none;
}

div.about-right p {
    display: none;
}

/* INSPO Styles */
#inspo {
    background-color: var(--red);
    padding: 100px 0;
    position: relative;
}

#inspo div.wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

#inspo blockquote {
    margin: 0;
    padding: 0;
    display: flex;
    background-color: var(--cream);
    max-width: 1400px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    height: 350px;
}

.quote-image {
    width: 32%;
    flex-shrink: 0;
}

.quote-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.quote-text {
    width: 68%;
    padding: 50px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

p.qoute {
    font-family: "DM Serif Display", serif;
    font-size: 64px;
    line-height: 1.2;
    font-style: italic;
    font-weight: 400;
    color: var(--black);
    margin: 0 0 30px 0;
    max-width: 100%;
    white-space: nowrap;
}

p.credit {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--red);
    margin: 0;
    text-align: center;
}

/* PROJECT Styles */
#projects {
    padding: 96px 20px;
    background-color: var(--black);
    color: var(--cream);
}

#projects .wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

#projects h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
    color: var(--cream);
}

#projects span.Projects {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

#projects span.Featured {
   font-family: "DM Serif Display", serif;
   font-style: italic;
   font-weight: 400;
   font-size: 0.8em;
}

div.cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin: 0 auto;
}

.card {
    display: flex;
    flex-direction: column;
    width: calc(50% - 20px);
    max-width: 580px;
    scale: 1;
    transition: 0.25s;
    color: var(--black);
    text-decoration: none;
}

.card:hover {
    scale: 1.05;
    transition: 0.25s;
}

.card img {
    width: 100%;
    object-fit: cover;
}

div.card-text {
    background-color: var(--cream);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    border: 1px solid var(--cream);
    color: var(--black);
}

div.card-text h4 {
    font-size: 1.5em;
    margin-bottom: 0.5em;
    font-weight: 600;
}

div.card-text h4 span.Editorial,
div.card-text h4 span.abstractions,
div.card-text h4 span.Symbol {
    font-family: "DM Serif Display", serif;
    font-style: italic;
    font-weight: 400;
}

div.card-text p {
    font-weight: 300;
    line-height: 1.6;
}

/* FOOTER Styles */
footer {
    background-color: var(--black);
    color: var(--cream);
    padding: 40px 0 30px;
}

footer div.wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

footer p.name {
    color: var(--red);
}

footer p.name span.noble {
    color: var(--cream);
}

footer nav a:link,
footer nav a:visited {
    color: var(--cream);
}

footer nav a:hover {
    opacity: 0.6;
}

div.social {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.social a img {
    width: 30px;
    transition: opacity 0.3s;
}

.social a:hover img {
    opacity: 0.4;
}

footer div.footer-bottom {
    align-items: flex-end;
    margin-top: 20px;
}

footer div.footer-bottom p {
    font-size: 9px;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

/* TABLET - 1080px and below */
@media only screen and (max-width: 1080px) {
    /* Header adjustments */
    header div.wrapper {
        padding: 0 30px;
    }
    
    nav ul {
        gap: 40px;
    }
    
    nav a:link,
    nav a:visited {
        font-size: 13px;
    }
    
    /* Hero adjustments */
    #hero h1 {
        font-size: 90px;
    }
    
    #hero .arrow {
        font-size: 40px;
    }
    
    /* Red Banner adjustments */
    #red-banner {
        padding: 100px 0 120px;
    }
    
    .banner-content {
        padding: 0 60px;
        max-width: 100%;
    }
    
    .my-mind,
    .my-story {
        font-size: 150px;
        letter-spacing: -6px;
    }
    
    .banner-center {
        min-height: 450px;
    }
    
    .banner-center img.portrait {
        width: 120px;
        height: 150px;
    }
    
    .banner-text-top {
        left: 60px;
        font-size: 16px;
    }
    
    .banner-text-bottom {
        right: 60px;
        font-size: 16px;
    }
    
    /* Gallery adjustments */
    #gallery .wrapper {
        padding: 0 40px;
    }
    
    .gallery-grid {
        gap: 80px 120px;
        width: 100%;
        justify-content: center;
    }
    
    .gallery-number {
        font-size: 180px;
    }
    
    .gallery-item img {
        width: 140px;
        height: 185px;
    }
    
    /* Quote section adjustments */
    #inspo {
        padding: 80px 0;
    }
    
    #inspo blockquote {
        height: 320px;
        max-width: 95%;
        margin: 0 auto;
    }
    
    p.qoute {
        font-size: 56px;
    }
    
    /* Projects adjustments */
    .cards {
        gap: 30px;
    }
    
    .card {
        width: calc(50% - 15px);
    }
    
    div.card-text {
        padding: 30px;
    }
    
    div.card-text h4 {
        font-size: 1.3em;
    }
    
    /* Footer adjustments */
    footer div.wrapper {
        padding: 0 30px;
    }
}

/* INTERMEDIATE TABLET - 900px and below */
@media only screen and (max-width: 900px) {
    /* Gallery adjustments for medium tablets */
    .gallery-grid {
        gap: 60px 80px;
        padding: 0 20px;
    }
    
    .gallery-number {
        font-size: 160px;
    }
    
    .gallery-item {
        gap: 20px;
    }
    
    .gallery-item img {
        width: 120px;
        height: 160px;
    }
    
    /* Red Banner adjustments */
    .my-mind,
    .my-story {
        font-size: 120px;
        letter-spacing: -4px;
    }
    
    .banner-center {
        min-height: 400px;
    }
    
    .banner-center img.portrait {
        width: 100px;
        height: 130px;
    }
    
    .banner-text-top,
    .banner-text-bottom {
        font-size: 15px;
        max-width: 250px;
    }
    
    /* Quote adjustments - Allow wrapping at this size */
    p.qoute {
        font-size: 38px;
        white-space: normal;
        line-height: 1.3;
    }
    
    .quote-text {
        padding: 30px 30px;
    }
    
    /* Projects adjustments - Create asymmetric grid layout */
    .cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 900px;
    }
    
    .card {
        width: 100%;
        max-width: none;
    }
    
    .card:first-child {
        grid-row: 1 / 3;
    }
    
    .card:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }
    
    .card:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }
    
    .card:nth-child(4) {
        grid-column: 1;
        grid-row: 3;
    }
}

/* MOBILE - 768px and below */
@media only screen and (max-width: 768px) {
    /* Header adjustments */
    header div.wrapper {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }
    
    header {
        padding: 15px 0;
    }
    
    nav ul {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav a:link,
    nav a:visited {
        font-size: 12px;
    }
    
    p.name {
        font-size: 18px;
    }
    
    /* Hero adjustments */
    #hero {
        min-height: 70vh;
    }
    
    #hero h1 {
        font-size: 80px;
        letter-spacing: -1px;
    }
    
    #hero h1 span.hero-noble {
        display: block;
        margin-top: 10px;
    }
    
    #hero .arrow {
        font-size: 42px;
        margin-top: 15px;
    }
    
    /* Red Banner adjustments */
    #red-banner {
        padding: 40px 0 60px;
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 50% 100%, 0 calc(100% - 40px));
    }
    
    .banner-content {
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        max-width: 100%;
    }
    
    .my-mind,
    .my-story {
        font-size: 100px;
        letter-spacing: -2px;
        white-space: pre-line;
        word-spacing: 100vw;
    }
    
    .banner-center {
        min-height: auto;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        order: 1;
        position: relative;
        margin: 40px 0 60px 0;
    }
    
    .banner-center img.portrait {
        width: 65px;
        height: auto;
        aspect-ratio: 4 / 5;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
    }

    .banner-text-top {
        position: static;
        text-align: center;
        font-size: 18px;
        max-width: 100%;
        margin: 0;
        padding: 0 30px;
        order: 2;
        line-height: 1.6;
    }
    
    .banner-text-bottom {
        position: static;
        text-align: center;
        font-size: 18px;
        max-width: 100%;
        margin: 0;
        padding: 0 30px;
        order: 3;
        margin-top: 30px;
        line-height: 1.6;
    }
    
    /* Gallery adjustments */
    #gallery {
        padding: 60px 0;
    }
    
    #gallery .wrapper {
        padding: 0 20px;
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0;
        width: 100%;
        margin: 0 auto;
    }
    
    .gallery-item {
        gap: 25px;
        justify-content: center;
    }
    
    .gallery-number {
        font-size: 140px;
    }
    
    .gallery-item img {
        width: 130px;
        height: 170px;
    }
    
    /* Quote section adjustments */
    #inspo {
        padding: 60px 20px;
    }
    
    #inspo blockquote {
        flex-direction: column;
        height: auto;
        max-width: 100%;
    }
    
    .quote-image,
    .quote-text {
        width: 100%;
    }
    
    .quote-image img {
        max-height: 300px;
        object-position: center top;
    }
    
    .quote-text {
        padding: 40px 20px;
    }
    
    p.qoute {
        font-size: 38px;
        line-height: 1.3;
        white-space: normal;
    }
    
    p.credit {
        font-size: 16px;
    }
    
    /* Projects adjustments */
    #projects {
        padding: 60px 20px;
    }
    
    #projects h2 {
        font-size: 2em;
        margin-bottom: 40px;
    }
    
    .cards {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .card {
        width: 100%;
        grid-row: auto;
        grid-column: auto;
    }
    
    div.card-text {
        padding: 25px;
    }
    
    div.card-text h4 {
        font-size: 1.2em;
    }
    
    div.card-text p {
        font-size: 14px;
    }
    
    /* Footer adjustments */
    footer {
        padding: 30px 0 20px;
    }
    
    footer div.wrapper {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
        text-align: center;
    }
    
    footer nav ul {
        justify-content: center;
    }
    
    footer div.footer-bottom {
        flex-direction: column-reverse;
        gap: 15px;
        margin-top: 15px;
    }
    
    div.social {
        gap: 30px;
        justify-content: center;
    }
    
    .social a img {
        width: 28px;
    }
    
    footer div.footer-bottom p {
        font-size: 10px;
    }
}

@media only screen and (max-width: 905px) {
    p.qoute {
        font-size: 48px;
        line-height: 1.25;
    }
}

@media only screen and (max-width: 515px) {
    p.qoute {
        font-size: 40px;
        line-height: 1.25;
    }
}

@media only screen and (max-width: 440px) {
    p.qoute {
        font-size: 35px;
        line-height: 1.25;
    }
}

@media only screen and (max-width: 400px) {
    p.qoute {
        font-size: 30px;
        line-height: 1.25;
    }
}

@media only screen and (max-width: 350px) {
    p.qoute {
        font-size: 28px;
        line-height: 1.25;
    }
}
