/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    color: #ffffff;
    background-color: #0e0e0e;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Menu Component */
.top-menu-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
    margin: 0 auto;
    max-width: 1400px;
    position: fixed;
    left: 0%;
    right: 0%;
    top: -40px;
    bottom: auto;
    z-index: 8888;
}

.full-screen-wrapper {
    display: block;
    height: auto;
    position: relative;
    z-index: 555;
    background-color: #000000;
}

.menu-wrapper {
    display: none;
    position: fixed;
    left: 0%;
    right: 0%;
    top: 0%;
    bottom: 0%;
    z-index: 555;
    background-color: #0e0e0e;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-wrapper.open {
    display: flex;
    transform: translateY(0%);
}

.menu-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100%;
    background-color: #0e0e0e;
}

.menu-link-block {
    display: block;
    height: auto;
    overflow: hidden;
    transition: transform 400ms ease;
    text-decoration: none;
}

.menu-link-block:hover {
    transform: scale(0.8, 0.8) translateZ(1px);
}

.menu-text {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 700;
    font-size: 15vh;
    line-height: 1;
    color: #ffffff;
    text-transform: uppercase;
    transition: color 350ms ease;
}

.logo-link-block {
    display: block;
    line-height: 0;
}

.main-logo {
    height: auto;
    max-width: 100%;
    border-radius: 20px;
    display: block;
    margin: 0;
}

.menu-right-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0 10px 0 5px;
    margin: 0;
    overflow: hidden;
    background-color: #f8f8f8;
    border-radius: 20px;
}

.cart-main-wrapper {
    position: static;
}

.cart-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 9px 15px;
    margin: 0;
    background-color: #f8f8f8;
    border-radius: 0;
    border: none;
    border-width: 0;
    border-color: #000000;
    transition: color 400ms ease;
    cursor: pointer;
}

.cart-button .icon {
    padding: 0;
    margin: 0 8px 0 0;
    display: block;
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.cart-button .text-block {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    color: #000000;
}

.cart-quantity {
    padding: 0 6px;
    margin: 0 0 0 8px;
    height: 18px;
    min-width: 18px;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 700;
    font-size: 11px;
    line-height: 18px;
    color: #ffffff;
    text-align: center;
    background-color: #000000;
    border-radius: 9px;
}

.cart-wrapper {
    display: none;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
}

.menu-hamburger-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 666;
    border: 1px solid #ffffff;
    cursor: pointer;
}

.menu-hamburger-icon {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: invert(100%);
}

.menu-close-icon {
    display: none;
    width: 50%;
    height: auto;
    max-width: 100%;
    position: absolute;
    left: 25%;
    right: 0;
    top: 25%;
    bottom: 0;
    object-fit: contain;
    filter: invert(100%);
}

.menu-wrapper.open .menu-close-icon {
    display: block;
}

.menu-wrapper.open .menu-hamburger-icon {
    display: none;
}


.portfolio-wrapper {
    flex-shrink: 1;
    width: 20vw;
    height: 90vh;
    overflow: hidden;
    border-radius: 10px;
    transition: width 0.5s ease, height 0.5s ease;
}

.item {
    width: 100%;
    height: 100%;
}

.list {
    width: 100%;
    height: 100%;
}

.collection-item {
    width: 100%;
    height: 100%;
}

.project-link-block {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    background-image: url('assets/images/Beyond.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.project-link-block.first-card {
    background-image: url('assets/images/Site%20Image%201.png');
}

.project-link-block.second-card {
    background-image: url('assets/images/Coming%20Soon.png');
}

.project-link-block.third-card {
    background-image: url('assets/images/Coming%20Soon.png');
}

.project-link-block.fourth-card {
    background-image: url('assets/images/Coming%20Soon.png');
}

.project-link-block.fifth-card {
    background-image: url('assets/images/Coming%20Soon.png');
}


.portfolio-details-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 25px;
    margin: 0;
    width: 100%;
    position: relative;
    z-index: 10;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(9, 9, 9, 0);
    transition: background-color 0.5s ease;
}

.title-wrap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
}

.arrow-image {
    width: 50px;
    max-width: 100%;
    overflow: clip;
    transform: rotateZ(-42deg);
}

.portfolio-title {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 600;
    font-size: 50px;
    line-height: 45px;
    color: #ffffff;
    text-transform: capitalize;
    margin: 0;
    padding: 0;
}

.year {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 25px;
    line-height: 20px;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

/* Hover Portfolio Animation */
.portfolio-wrapper:hover {
    width: 100vw;
    height: 90vh;
}

.portfolio-wrapper:hover .overlay {
    background-color: rgba(9, 9, 9, 0.33);
}


.portfolio-wrapper:hover .portfolio-details-wrapper {
    opacity: 1;
}

/* Button Wrapper */
.button-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    margin: 0 0 50px 0;
}

.button {
    padding: 15px 35px;
    margin: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    color: #ffffff;
    background-color: #0e0e0e;
    border-radius: 20px;
    border: 2px solid #ffffff;
    cursor: pointer;
    transition: border-color 350ms ease, background-color 350ms ease, color 350ms ease;
    text-decoration: none;
    display: inline-block;
}

.button:hover {
    color: #0e0e0e;
    background-color: #ffffff;
}

/* Section */
.section {
    display: block;
    padding: 100px 10px;
    margin: 0;
    overflow: visible;
    position: static;
}

.container {
    padding: 0;
    margin: 0 auto;
    max-width: 1400px;
}

.quick-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    gap: 20px;
    padding: 20px;
    margin: 0;
}

.cell {
    grid-column: span 1;
    grid-row: span 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}


/* Big Footer */
.big-footer {
    padding: 120px 0 0 0;
    margin: 0;
    position: relative;
    z-index: 10;
    background-color: #0e0e0e;
}

.text-animation-wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
    z-index: 5;
    background-color: transparent;
}

@keyframes text-animation {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.text-animation-wrapper.animate .animation-content {
    animation: text-animation 40s linear infinite;
}

.animation-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 50px;
    border-bottom: 1px solid #ffffff;
    flex-shrink: 0;
}

.text-animation {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 15vw;
    line-height: 1;
    color: #ffffff;
    text-transform: uppercase;
}

.point-dot {
    padding: 0;
    margin: 0 20px;
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border-radius: 100%;
}

.divider-line {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
}

.footer-container {
    display: block;
    padding: 0;
    margin: 0 auto;
    max-width: 1200px;
}

.grid-footer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    align-items: start;
    justify-content: center;
    column-gap: 147px;
    row-gap: 25px;
    padding: 0;
    margin: 140px 0 0 0;
}

.contact-link-block {
    display: inline-block;
    padding: 10px 60px;
    margin: 0;
    border-radius: 50px;
    border: 1px solid #ffffff;
    text-decoration: none;
    transition: color 400ms ease, background-color 400ms ease;
}

.contact-link-block:hover {
    color: #000000;
    background-color: #ffffff;
}

.contact-link-block h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 80px;
    line-height: 1;
    color: #ffffff;
    transition: color 400ms ease;
}

.contact-link-block:hover h2 {
    color: #0e0e0e;
}

.desktop-menu-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0 0 0 40px;
    margin: 0;
    list-style: none;
}

.desktop-menu-list li {
    padding: 0;
    margin: 0 0 30px 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    color: #ffffff;
}

.text-link-footer {
    padding: 5px 0 15px 0;
    margin: 0;
    overflow: hidden;
    object-fit: fill;
    position: static;
    font-family: 'Gantari', sans-serif;
    font-weight: 200;
    font-size: 3rem;
    line-height: 1;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.25px;
    text-transform: capitalize;
    display: block;
    transition: margin 400ms ease, color 400ms ease;
}

.text-link-footer:hover {
    margin: 0 0 0 3vw;
}

.underline-hover {
    width: auto;
    height: 1.6px;
    overflow: visible;
    position: relative;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    background-color: #ffffff;
}

.copyright-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 120px 0 40px 0;
    margin: 0;
}

.copyright-text {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #ffffff;
}

/* Black Section */
.black-section {
    padding: 100px 10px 100px 10px;
    margin: 0px;
    position: relative;
    z-index: 10;
    background-color: #0e0e0e;
}

.black-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
}



.black-section .project-link-block {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    transition: color 400ms ease;
    text-decoration: none;
}

.black-section .portfolio-details-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 25px;
    margin: 0px;
    width: 100%;
    position: relative;
    z-index: 10;
    border-radius: 10px;
    opacity: 1;
}


/* Portfolio Page Hover Animations */
.black-section .arrow-image {
    transform: rotateZ(-44deg);
    transition: transform 0.3s ease;
}

.black-section .overlay {
    transition: background-color 0.5s ease;
}

.black-section .project-link-block:hover .arrow-image {
    transform: rotateZ(0deg);
}

.black-section .project-link-block:hover .overlay {
    background-color: rgba(30, 29, 29, 0.67);
}

/* Load Animation */
.load-animation-wrapper {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0%;
    right: 0%;
    top: 0%;
    bottom: 0%;
    z-index: 9999;
    background-color: transparent;
}

.load-animation-wrapper.show {
    display: flex;
    overflow: hidden;
}

.load-one,
.load-two,
.load-three,
.load-four {
    width: 25%;
    height: 100%;
    background-color: #ffffff;
    flex-shrink: 0;
    transform-origin: top;
    will-change: transform;
    backface-visibility: hidden;
}

/* Slight overlap to hide subpixel seams during transforms */
.load-two,
.load-three,
.load-four {
    margin-left: -1px;
}

@keyframes page-load-animation {
    0% {
        transform: translateZ(0) scaleY(1);
    }
    100% {
        transform: translateZ(0) scaleY(0);
    }
}

.load-animation-wrapper.animate .load-one {
    animation: page-load-animation 0.7s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s forwards;
}

.load-animation-wrapper.animate .load-two {
    animation: page-load-animation 0.7s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0.175s forwards;
}

.load-animation-wrapper.animate .load-three {
    animation: page-load-animation 0.7s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0.35s forwards;
}

.load-animation-wrapper.animate .load-four {
    animation: page-load-animation 0.7s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0.525s forwards;
}

/* Responsive Menu Styles */
@media (max-width: 568px) {
    .top-menu-wrapper {
        padding: 0 10px;
        margin: 20px auto 0 auto;
    }
}

@media (max-width: 767px) and (min-width: 479px) {
    .menu-block {
        padding: 0;
        margin: 0;
    }
}

@media (max-width: 479px) {
    .menu-block {
        gap: 25px;
    }
}

/* Responsive Menu Text */
@media (max-width: 911px) and (min-width: 479px) {
    .menu-text {
        font-size: 8vh;
    }
}

@media (max-width: 479px) {
    .menu-text {
        font-size: 5vh;
    }
}

/* Responsive Big Footer */
@media (max-width: 991px) and (min-width: 767px) {
    .big-footer {
        padding: 80px 0 0 0;
        margin: 0;
    }
}

@media (max-width: 767px) and (min-width: 479px) {
    .big-footer {
        padding: 60px 0 0 0;
        margin: 0;
    }
}

@media (max-width: 479px) {
    .big-footer {
        padding: 40px 0 0 0;
        margin: 0;
    }
}

/* Responsive Animation Content */
@media (max-width: 991px) and (min-width: 480px) {
    .animation-content {
        gap: 25px;
    }
}

@media (max-width: 479px) {
    .animation-content {
        gap: 15px;
    }
}

/* Responsive Grid Footer */
@media (max-width: 1274px) and (min-width: 768px) {
    .grid-footer {
        margin: 80px 0 0 0;
    }
}

@media (max-width: 767px) and (min-width: 479px) {
    .grid-footer {
        column-gap: 100px;
        margin: 60px 0 0 0;
    }
}

@media (max-width: 479px) {
    .grid-footer {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        align-items: center;
        justify-content: center;
        column-gap: 100px;
        row-gap: 25px;
        margin: 40px 0 0 0;
    }
    
    .div-block {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .desktop-menu-list {
        align-items: center;
        padding: 0;
        justify-content: center;
    }
}

/* Responsive Copyright Wrapper */
@media (max-width: 991px) and (min-width: 767px) {
    .copyright-wrapper {
        padding: 100px 0 40px 0;
    }
}

@media (max-width: 767px) and (min-width: 479px) {
    .copyright-wrapper {
        padding: 80px 0 20px 0;
    }
}

@media (max-width: 479px) {
    .copyright-wrapper {
        padding: 20px 0 20px 0;
    }
}

/* Responsive Footer Container */
@media (max-width: 991px) and (min-width: 767px) {
    .footer-container {
        max-width: 728px;
    }
}

@media (max-width: 767px) {
    .footer-container {
        max-width: none;
    }
}

/* Responsive Container */
@media (max-width: 991px) and (min-width: 767px) {
    .container {
        max-width: 728px;
    }
}

@media (max-width: 767px) {
    .container {
        max-width: none;
    }
}

/* Responsive Quick Stack */
@media (max-width: 991px) {
    .quick-stack {
        grid-template-columns: 1fr;
    }
}

/* Responsive Section */
@media (max-width: 991px) and (min-width: 767px) {
    .section {
        padding: 10px 60px;
        margin: 0;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 10px 40px;
        margin: 0;
    }
}

/* Responsive Contact Link Block */
@media (max-width: 767px) {
    .contact-link-block {
        padding: 10px 40px;
    }
}

/* Responsive Contact Link Block H2 */
@media (max-width: 991px) and (min-width: 767px) {
    .contact-link-block h2 {
        font-size: 40px;
        line-height: 45px;
    }
}

@media (max-width: 767px) and (min-width: 479px) {
    .contact-link-block h2 {
        font-size: 30px;
        line-height: 35px;
    }
}

@media (max-width: 479px) {
    .contact-link-block h2 {
        font-size: 25px;
        line-height: 30px;
    }
}

/* Responsive Text Link Footer */
@media (max-width: 991px) and (min-width: 767px) {
    .text-link-footer {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .text-link-footer {
        font-size: 14px;
    }
}

/* Responsive Point Dot */
@media (max-width: 991px) and (min-width: 767px) {
    .point-dot {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 767px) and (min-width: 480px) {
    .point-dot {
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .point-dot {
        width: 15px;
        height: 15px;
    }
}

/* Responsive Text Animation */
@media (max-width: 767px) {
    .text-animation {
        font-size: 10vw;
    }
}
