/* —————————————————-———
            Table of Contents
——————————————————————
            00. * / Html / Body / Root
            01. Typography
            02. Navigation
            03. Hero / Header
            04. Main Content
            05. Footer
            06. About Page
            07. Contact Page
            08. Portfolio Item Template
            09. Stylesheet.html
            10. Prototype.html
            11. HTTP Error Codes
            12. Media Queries

/* —————————————————————
            0. Html / Body / Root
————————————————————— */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "ibm-plex-sans", sans-serif;
    font-weight: 200;
    font-style: normal;
    font-size: 18px;
    margin: 0 auto;
    overflow-x: hidden;
    background: var(--rich-black);
    word-wrap: break-word;
}

:root {
    --off-black: #0d0d0d;
    --rich-black: #010203;
    --dim-grey: #747474;
    --white: white;
    --black: black;
    --gainsboro: #e4e4e4;
    --slate-grey: #444;
    --mid-gray: #797979;
    --suprablue: #1500ff;
    --off-white: #f3f3f3;
    --red: #f20e30;
    --gold: #d4af37;
    --highlight-bar: rgba(255, 221, 118, 0.64);
    --translucent: rgba(255, 255, 255, 0.314);
    --transparent: transparent;
    --bg-transparent: transparent;
}

/* —————————————————
            1. Typography
—————————————————— */

h1 {
    line-height: 1;
}

h2 {
    line-height: 1;
}

h3 {
    line-height: 1;
}

h4 {
    line-height: 1.2;
}

h5 {
    letter-spacing: 0.33px;
    margin-top: 0.2em;
    margin-bottom: 0.2em;
    font-family: "ibm-plex-sans", sans-serif;
    font-size: 1em;
    font-weight: 700;
    line-height: 1.25em;
}

h6 {
    line-height: 1.3;
}

p {
    margin-top: 0;
    margin-bottom: 0.5em;
}

a {
    text-decoration: none;
}

blockquote {
    font-size: 1.5em;
    font-weight: 300;
    line-height: 1.25;
}

.block-quote {
    border-left: 1px solid #000;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    padding: 0.1em 0.1em 0.1em 0.75em;
}

.link {
    color: rgb(116, 116, 116);
    background-color: rgba(0, 0, 0, 0);
    text-decoration: none;
    justify-content: center;
}

.intro-paragraph {
    font-size: 2vw;
}

.mousetype {
    display: flex;
    flex-direction: column;
    font-family: Tomorrow, sans-serif;
    font-size: 8px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 1.75px;
    text-transform: uppercase;
    -webkit-text-stroke-color: var(--dim-grey);
}

.highlighter {
    color: var(--dim-grey);
    background-color: var(--gainsboro);
    margin-top: 0;
    display: flex;
    flex-shrink: 1;
    align-self: end;
}

.text-alignment {
    text-align: right;
    align-self: flex-start;
}

.bold {
    font-weight: 500;
}

/* —————————————————-———
            2. Navigation
————————————————————— */

.main-nav {
    position: fixed;
    display: flex;
    width: 100%;
    padding: 24px 20px 28px 28px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    background-color: var(--bg-transparent);
    transition: transform 0.3s ease;
    z-index: 999;
}

.main-nav-container {
    display: flex;
    flex: 1 0 auto;
    align-items: center;
    align-self: stretch;
    justify-content: space-between;
}

.logo-link {
    text-decoration: none;
    color: var(--white);
    display: flex;
    align-items: center;
}

.main-logo {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.main-nav-list {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

.main-nav-list-item {
    margin-right: 40px;
}

.main-nav-list-item:hover,
.main-nav-list-item:focus,
.main-nav-list-item:active {
    color: var(--white);
    background: var(--translucent);
    border-left-width: 2px;
    border-left-color: var(--white);
    border-left-style: solid;
    font-size: 0.95em;
    font-weight: 400;
    letter-spacing: 2.5px;
}

.main-nav-list-item a {
    padding: 8px 16px;
    text-decoration: none;
    color: var(--white);
    font-size: 18px;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

/* Hamburger Icon */
.hamburger-icon {
    display: none;
    cursor: pointer;
    padding: 20px;
    position: relative;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.hamburger-icon span,
.hamburger-icon span::before,
.hamburger-icon span::after {
    content: "";
    display: block;
    width: 30px;
    height: 4px;
    background-color: var(--off-white);
    margin-bottom: 6px;
    position: relative;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.hamburger-icon span::before {
    top: -10px;
}

#menu-toggle {
    display: none;
    z-index: 1000;
}

#menu-toggle:checked + .hamburger-icon span {
    transform: rotate(-45deg) translate(-5px, 0px);
    background-color: var(--black);
}

#menu-toggle:checked + .hamburger-icon span::before {
    opacity: 1;
    transform: rotate(90deg) translate(10px, 0px);
    background-color: var(--black);
}

#menu-toggle:checked + .hamburger-icon span::after {
    opacity: 0;
    transform: rotate(90deg) translate(-6px, 0);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    transition: right 0.3s ease;
    z-index: 999;
    display: none;
    justify-content: center;
    text-align: center;
}

.mobile-nav-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.mobile-nav-logo-container {
    display: flex;
    padding: 30px 24px 96px 28px;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
}

.mobile-nav-logo {
    width: 50px;
    height: 50px;
}

.mobile-nav-list {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    flex: 1 0 0;
    align-self: stretch;
    list-style: none;
}

.mobile-nav-list-item {
    width: 100%;
    text-align: center;
}

.mobile-nav-list-item a {
    text-decoration: none;
    color: var(--off-black);
    font-size: 21pt;
    letter-spacing: 1px;
    padding: 16px;
    display: block;
    transition: all 0.3s ease;
}

.mobile-nav-list-item a:hover {
    font-weight: 600;
    letter-spacing: 4px;
}

.mobile-social-list {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 40px;
    align-self: stretch;
    list-style-type: none;
    padding-bottom: 40px;
}

.mobile-social-list-item {
    font-size: 24pt;
}

.mobile-fa-icons {
    width: 50px;
    height: 50px;
    color: var(--off-black);
    font-size: 18pt;
}

.mobile-fa-icons:hover {
    color: var(--gold);
}

.hide {
    transform: translateY(-100px);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.hide-overflow {
    overflow: hidden;
}

.fixed-position {
    position: fixed;
}

/* ————————————————————
            3. Hero / Header
————————————————————— */

.wrapper {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    background-color: var(--off-white);
}

header {
    display: flex;
    position: relative;
}

.carousel {
    position: relative;
    overflow: hidden;
    font-size: 2.5vmin;
    width: 100%;
    height: 95vh;
    display: flex;
    align-items: center;
}

.carousel-slider {
    display: flex;
    transition: 0.3s;
    height: 100%;
}

.carousel-slide {
    flex: 1 0 100%;
}

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

.carousel button {
    font-size: inherit;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    height: 100%;
    top: 50%;
    transform: translateY(-50%);
    padding: 2em;
    border: none;
    cursor: pointer;
    background-color: var(--bg-transparent);
}

.carousel-prev {
    left: 0px;
}

.carousel-next {
    right: 0px;
}

.carousel-prev svg,
.carousel-next svg {
    width: 15px;
}

.carousel-navigation {
    position: absolute;
    bottom: 1em;
    left: 32px;
    display: flex;
    justify-content: center;
    gap: 16px;
    z-index: 99;
    flex: 1 0 100%;
    -webkit-flex: 1 0 100%;
}

.carousel-indicator-button {
    height: 50px;
    border: none;
    flex: 0 1 auto;
    cursor: pointer;
    background: var(--bg-transparent);
}

.carousel-indicator-icon {
    background: var(--translucent);
    width: 20px;
    height: 4px;
    border-radius: 5%;
    display: inline-block;
}

.carousel-indicator-icon.is-active {
    width: 40px;
    background: var(--white);
}

.page-down-button {
    display: flex;
    justify-content: center;
    background: var(--bg-transparent);
    padding: 7px 8vw;
    border: 1px solid var(--white);
    border-radius: 5%;
    cursor: pointer;
    transform: translateX(-50%);
    position: absolute;
    bottom: 20px;
    left: 50%;
}

.page-down-button:hover {
    background: var(--translucent);
    border: none;
}

.page-down-icon {
    height: 10px;
}

.header-section {
    background-color: var(--rich-black);
}

/* —————————————————
            4. Main Content
—————————————————— */

img {
    object-fit: cover;
    border: 0;
    max-width: 100%;
    display: inline-block;
}

.content-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    min-height: 100%;
    background-color: var(--off-white);
    position: relative;
}

.centered-container {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    height: 100%;
    min-height: 100%;
    padding: 0 64px 0 64px;
    flex: 1 0 100%;
}

#main-about-section {
    width: 100%;
    height: 32vw;
    margin: 48px 0 64px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#main-about-section h2 {
    font-size: 5vw;
    margin-bottom: 5vw;
}

.subhead-wrap {
    display: flex;
    padding: 2px 0px;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
    align-self: stretch;
    margin-bottom: 1em;
}

.hor-bar-full {
    width: 100%;
    border: 0.1px solid var(--rich-black);
    flex: none;
    align-self: auto;
}

.white-bar {
    border: 0.1px solid var(--white);
}

/* intro section stylings */
.core-services-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.core-services-inner {
    display: flex;
    gap: 10px;
}

.core-services-two-column {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
}

.core-services-column-container {
    width: 100%;
    max-width: 430px;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}

.core-services-row-container {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.core-services-row-container h2 {
    padding: 0.5em 0 0 0.1em;
    font-size: 1.618vw;
    line-height: 0.95em;
    text-transform: uppercase;
}

.core-services-number {
    font-family: "din-condensed", helevetica, arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 6.5vw;
}

.intro-contact-container {
    display: flex;
    flex-direction: column;
    margin-top: 4vh;
    padding: 0;
}

.intro-contact-container a {
    font-size: 0.75em;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--off-black);
}

.intro-contact-container a:hover {
    font-weight: 600;
}

.intro-contact-column-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.intro-contact-column-container {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
}

.intro-contact-row-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    margin-bottom: 6vw;
}

.intro-contact-email {
    font-size: 1.15em;
    margin-bottom: 1em;
}

.intro-contact-info {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.intro-contact-list {
    display: inline-block;
    padding-top: 0.2vw;
}

.intro-contact-item {
    list-style-type: none;
}

#main-portfolio {
    display: flex;
    width: 100%;
    flex-direction: column;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    -webkit-flex: 1 0 100%;
    align-items: center;
    gap: 1px;
    align-self: stretch;
}

.responsive-image-container {
    display: flex;
    align-items: center;
    gap: 1px;
    flex: 1 0 100%;
    align-self: stretch;
}

.portfolio-image-container {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
}

.portfolio-link {
    display: flex;
    height: 100%;
}

.portfolio-image-container .image-overlay {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    height: 99%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.portfolio-image-container:hover .image-overlay {
    opacity: 1;
}

.portfolio-image {
    width: 100%;
}

.portfolio-image-details {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.portfolio-image-container:hover .portfolio-image-details {
    top: 50%;
    left: 50%;
    opacity: 1;
}

.portfolio-image-details h3 {
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.15em;
    margin-bottom: 0.5em;
    text-transform: uppercase;
}

.portfolio-image-details p {
    color: #fff;
    font-size: 0.8em;
}

.fade-in-bottom {
    top: 80%;
}

.background-video-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 100%;
    color: var(--white);
    background-color: var(--rich-black);
}

.background-video-section video {
    position: relative;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    max-width: 1440px;
    display: flex;
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 100%;
    flex-direction: column;
    gap: 44px;
}

.video-overlay h1 {
    font-size: 5.75vw;
}

.cta-text-container {
    display: flex;
    flex-direction: column;
    gap: 4vw;
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 100%;
    line-height: 5;
    height: 100%;
}

.cta-text-container h1 {
    flex: 1 0 33.33%;
}

.cta-text-container .cta-email h2 {
    font-size: 2.5vw;
    flex: 1 0 33.33%;
}

.cta-text-container .cta-email h3 {
    font-size: 2.5vw;
    font-weight: 300;
    flex: 1 0 33.33%;
}

.cta-email {
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.cta-social-icons-container {
    font-size: 2em;
    font-size: 2em;
    display: flex;
    margin: 0 auto;
}

.cta-social-icons-container fa {
    color: var(--white);
    display: flex;
    gap: 7px;
}

.fa-styles {
    width: 50px;
    color: var(--white);
}

/* —————————————————————————
            5. Footer
————————————————————————— */

footer {
    display: flex;
    flex-shrink: 0;
    width: 100%;
    padding: 32px 48px;
    flex-direction: column;
    color: var(--mid-gray);
    background-color: var(--rich-black);
}

#footer-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    align-self: stretch;
    gap: 56px;
}

#footer-lists-container {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    align-self: stretch;
    flex-grow: 1;
}

#footer-contact-container,
#footer-sitemap-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

#footer-social-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

#footer-contact-container {
    flex: 1 0 28%;
}

#footer-sitemap-container {
    flex: 0 1 20%;
}

#footer-social-container {
    flex: 1 0 28%;
}

#footer-container ul {
    list-style-type: none;
}

#footer-container ul li a {
    text-decoration: none;
    color: var(--mid-gray);
}

#footer-container ul li a:hover {
    text-decoration: none;
    font-weight: 600;
}

.footer-lists ul li h5 {
    font-family: "rigid-square", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 4px;
}

.footer-lists ul li {
    margin-bottom: 2px;
}

#endtag-container {
    display: flex;
    padding: 10px 0px;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    flex: 1 0 100%;
    -webkit-flex: 1 0 100%;
}

.footer-logo {
    width: 50px;
    height: 50px;
    fill: var(--mid-gray);
}

/* ————————————————————
            6. About Page
————————————————————— */

#about-header {
    height: 90vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: var(--rich-black);
    background-image: url("assets/images/textured-background-evangelo-sommer.jpg");
}

.header-text-overlay {
    position: absolute;
    bottom: 0%;
    left: 0%;
    right: auto;
    top: 60%;
    transform: translateY(-50%);
    font-family: "din-condensed", sans-serif;
    font-size: 4em;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 1px;
    text-align: left;
    text-transform: uppercase;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    display: flex;
}

.header-text-overlay h1 {
    color: var(--white);
    margin-top: -4vw;
    margin-bottom: 4vw;
    margin-left: -2vw;
    font-size: 30vw;
    text-transform: uppercase;
}

.about-header-text-frame {
    display: flex;
    justify-content: flex-end;
    color: var(--white);
    width: 80%;
    height: 60%;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.about-header-half-frame {
    color: var(--gainsboro);
    font-size: 1.75em;
    font-weight: 100;
    line-height: 1.15;
    width: 50%;
}

.about-centered-container {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    height: 100%;
    min-height: 100%;
    padding: 80px 64px 80px 64px;
    flex: 1 0 100%;
}

.about-body-section {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 0px;
    padding: 32px 0;
    align-self: stretch;
}

.about-subhead-wrap {
    display: flex;
    flex: 1 1 33%;
    margin-top: 0.4em;
}

.about-body-copy-wrap {
    display: flex;
    flex: 1 1 67%;
    flex-direction: column;
}

.half-wrap {
    display: flex;
}

.about-services-row-container {
    display: flex;
    flex-direction: row;
}

.about-services-number {
    flex: 1 0 33%;
    margin-top: -25px;
    margin-left: -5px;
    font-family: "din-condensed", sans-serif;
    font-size: 12em;
    font-weight: 300;
}

.about-services-list {
    display: flex;
    flex-direction: column;
    flex: 1 0 67%;
    margin-top: 0.7em;
}

.services-list-item {
    list-style-type: none;
}

.about-services-section {
    padding: 32px 0;
}

/* —————————————————————————
            7. Contact Page
————————————————————————— */

.contact-wrapper {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.background-image-wrapper {
    padding-bottom: 10vw;
    position: relative;
    width: 100vw;
    height: 100%;
    object-fit: fill;
    /* background-image: url("assets/images/textured-background-evangelo-sommer.jpg"); */
}

.contact-bg-image {
    z-index: -2;
    position: absolute;
    object-fit: cover;
    height: 100%;
    position: absolute;
    top: 0%;
    bottom: 0%;
}

#contact-header {
    height: 80vh;
    flex-direction: column;
    flex: none;
    justify-content: center;
    align-items: center;
    display: flex;
}

.hero-title-frame {
    width: 100%;
    display: flex;
    align-items: flex-start;
}

.hero-title-frame h1 {
    color: var(--white);
    font-size: 30vw;
    font-family: "din-condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
    margin-left: -1.5vw;
    line-height: 0.75;
}

.hero-title-frame h2 {
    color: var(--white);
    font-size: 20vw;
    font-family: "din-condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
    margin-left: -2vw;
}

.contact-hero-text-frame {
    width: 80%;
    display: flex;
    align-items: flex-end;
}

.contact-hero-subtitle {
    color: var(--white);
    width: 50%;
    font-size: 1.4em;
    font-weight: 100;
    line-height: 1.3;
}

.contact-content-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    width: 100%;
    padding: 40px 80px;
    padding: 0px 32px 48px 32px;
    align-items: center;
    flex: 1 0 0;
}

.responsive-contact-container {
    width: 80vw;
    display: flex;
    flex-direction: row;
    align-self: stretch;
    justify-content: space-between;
    gap: 32px;
    margin: 0 auto;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    flex: 1 0 75%;
    gap: 12px;
}

.contact-info-container {
    padding-bottom: 2.5em;
}

.contact-email {
    font-size: 2.25em;
    font-weight: 600;
}

.contact-number {
    font-size: 1.2em;
    line-height: 1.5em;
    font-weight: 100;
    margin: 0 0 0.4em 0;
    letter-spacing: 1px;
}

.contact-services-section {
    display: flex;
    flex-direction: column;
    flex: 1 0 25%;
}

#primary-contact-services-container {
    font-family: "din-2014-narrow", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1.2em;
    text-transform: uppercase;
}

#primary-contact-services-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0.6em 0 0 0;
}

#secondary-contact-services-container {
    font-size: 1em;
}

.contact-services-list {
    margin-top: 8px;
}

.contact-services-list-item {
    list-style-type: none;
}

.secondary-service-list-item {
    font-size: 1em;
    line-height: 1;
    margin: 0.35em 0px;
    font-weight: 200;
}

.white-lettering {
    color: var(--white);
}

.white-highlight {
    background-color: var(--white);
    padding-left: 3px;
}

.contact-social-list-item {
    list-style-type: none;
}

.contact-social-link {
    font-size: 0.75em;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.contact-social-link,
.contact-social-link:focus,
.contact-social-link:active {
    color: var(--white);
}

.contact-social-link:hover {
    font-weight: 600;
}

.contact-services-responsive-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ———————————————————————
            08. Project.html
 ——————————————————————— */

.project-content-wrapper {
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    background-color: var(--off-white);
    position: relative;
    margin: 8vh auto;
}

#content-centered-container-80vw {
    width: 80vw;
    align-self: center;
    max-width: 1720px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.project-header {
    width: 100%;
    height: 95vh;
}

.project-hero-image {
    width: 100%;
}

.project-page-down-button-section {
    align-items: flex-start;
    display: flex;
    position: absolute;
    top: auto;
    bottom: 3%;
    left: 0%;
    right: 0%;
    width: 95vw;
    margin-left: auto;
    margin-right: auto;
}

.project-page-down-button-container {
    align-items: center;
    margin-left: 3px;
    display: flex;
}

#project-page-down-button {
    transform: translateX(0%);
    position: initial;
    transition: all 0.3s ease-in-out;
    padding: 7px 30px;
}

#project-page-down-button:hover {
    border: 1px solid rgba(0, 0, 0, 0);
}

#project-page-down-button:hover ~ .project-page-down-button-text {
    transform: translate3d(0px, 0px, 0px) scale3d(1.1, 1.1, 1.1) rotateX(0deg)
        rotateY(0deg) rotateZ(0deg) skew(0deg);
    transform-style: preserve-3d;
}

#project-page-down-button img {
    height: 7px;
}

.project-page-down-button-text {
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 7px;
    line-height: 2;
    font-size: 0.8em;
    font-weight: 300;
    margin-left: 1.7em;
    transform-origin: 0%;
    transition: 0.3s ease;
}

.project-intro-title {
}

.responsive-project-container {
    display: flex;
    flex-direction: row;
}

#project-intro-section {
    display: flex;
    flex-direction: row;
    gap: 35px;
}

.project-intro-responsive-wrapper {
    display: flex;
    flex-direction: row;
}

.project-intro-responsive-container {
    display: flex;
    flex-direction: column;
}

.project-intro-centered-section {
}

.project-intro-aside {
    display: flex;
    flex-direction: column;
}

#project-intro-aside-70 {
    flex: 1 0 70%;
}

#project-intro-aside-25 {
    flex: 1 0 25%;
}

.project-links-list {
    display: flex;
    flex-direction: column;
}

.accordion-arrow-icon {
    align-self: center;
    margin-bottom: 0;
    margin-right: 0.5em;
    width: 20px;
    transition: 0.3s ease;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg)
        rotateY(0deg) rotateZ(-90deg) skew(0deg);
}

.accordion-arrow-icon.active {
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg)
        rotateY(0deg) rotateZ(-180deg) skew(0deg);
}

.accordion-item-trigger {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    cursor: pointer;
    align-items: stretch;
    height: 1.5em;
    margin-bottom: 0.5em;
}

.accordion-item-content {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.accordion-item-content.show {
    height: 100%;
}

.accordion-title-container {
    overflow: hidden;
}

.accordion-title-toggle-container {
    transform: translate3d(0px, -1.6em, 0px) scale3d(1, 1, 1) rotateX(0deg)
        rotateY(0deg) rotateZ(0deg) skew(0deg);
    transform-style: preserve-3d;
    transition: 0.3s ease;
}

.accordion-title-toggle-container.active {
    transform: translate3d(0px, 0em, 0px) scale3d(1, 1, 1) rotateX(0deg)
        rotateY(0deg) rotateZ(0deg) skew(0deg);
}

.accordion-title-toggle {
    font-family: "ibm-plex-mono", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 0.85em;
    margin: 0.2em 0 4px 0;
    text-transform: uppercase;
}

.accordion-title-toggle.open h3 {
    margin-top: 0.6em;
}

.portfolio-item-image {
    width: 100%;
}

.project-image-section {
    display: flex;
    flex: 1 0 auto;
    align-self: stretch;
    flex-direction: column;
}

.project-credits-wrapper {
    margin-top: 3vw;
    display: flex;
    flex-direction: row;
}

.project-image-container {
    display: flex;
    flex: 1 0 auto;
    align-self: stretch;
    flex-direction: column;
    gap: 1px;
}

.project-image-container img {
    display: flex;
    flex: 1 0 auto;
    align-self: stretch;
}

.thank-you-section {
    display: flex;
    flex-direction: column;
}

.project-index-section {
    display: flex;
    align-self: stretch;
    flex-direction: column;
}

.project-index-responsive-container {
    display: flex;
    flex-direction: row;
}

.project-index-links-list {
    display: flex;
    flex-direction: column;
}

.side-page-up-button {
    position: fixed;
    transform: translateY(-50%);
    background-color: #fff; /* button background color */
    font-size: 16px;
    cursor: pointer;
    transition: left 0.5s ease-in-out; /* animation transition */
    /* end of blackbox ai code */
    cursor: pointer;
    z-index: 999;
    will-change: opacity, transform;
    width: 1.6em;
    height: 10vh;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 0;
    top: auto;
    left: -8vw;
    bottom: 25%;
    right: auto;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: inset 0 0 0 1px var(--white);
    opacity: 1;
    color: var(--white);
    background-color: rgba(255, 255, 255, 0);
    border: 1px solid var(--white);
    border-radius: 1px;
    justify-content: center;
}

.side-page-up-button.show {
    left: 2%;
}

.side-page-up-button img {
    object-fit: cover;
    align-self: center;
    transform: rotate(180deg);
    margin: auto 0;
}

.page-up-button-section {
    text-transform: uppercase;
    cursor: pointer;
}

.page-up-button img {
    width: 12px;
    transform: rotate(180deg);
}

.fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    z-index: 9999;
    transition: 0.3s ease;
}

.fullscreen-image-gallery {
    background-color: var(--bg-transparent);
    justify-content: center;
    align-items: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-content: center;
    padding-top: 40px;
    gap: 12px;
}

.enlarged-image {
    position: relative;
    max-width: 100%;
    max-height: 90%;
    display: flex;
    justify-content: center;
}

.enlarged-image img {
    max-width: 90%;
    max-height: 90%;
}

.controls {
    position: absolute; /* Inherit positioning from parent */
    display: flex; /* Removed unnecessary styles */
    height: 100%;
    width: 100%; /* Buttons fit their content */
}

.controls button {
    background-color: var(--bg-transparent);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 12vh;
    height: 100%;
}

/* New styles for positioning buttons */
.prev {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.next {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.fullscreen-carousel-icon {
    width: 12px;
}

.thumbnails {
    position: relative;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    overflow-x: scroll;
    overflow-y: hidden;
}

.thumbnails img {
    width: 100px;
    height: 75px;
    object-fit: cover;
    margin: 0 5px;
    cursor: pointer;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 10px;
    color: white;
    background-color: var(--bg-transparent);
    border: none;
    cursor: pointer;
}

.gallery-image {
    cursor: pointer;
}

.hidden {
    display: none;
    transition: 0.3s ease;
}

/* ————————————————————————
            09. Stylesheet.html
———————————————————————— */

.stylesheet-header {
    height: 90vh;
    width: 100%;
    background: var(--rich-black);
    position: relative;
    display: flex;
    justify-content: center;
}

.stylesheet-section {
    display: flex;
    margin-top: 5vw;
    margin-bottom: 5vw;
    width: 80%;
    max-width: 1224px;
    flex-direction: column;
    align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
}

.stylesheet-bodycopy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* ————————————————————————
            10. Prototype.html
 ——————————————————————— */

.header-section {
    display: flex;
    width: 100%;
    height: 60vh;
    background-color: var(--rich-black);
}

#alt-hero-title-frame {
    align-items: center;
}

/* ————————————————————————
            11. HTTP server codes
———————————————————————— */

.http-error-container {
    display: flex;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.http-error-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    flex: 1 0 0;
    align-self: stretch;
}

.http-error-code {
    color: var(--off-black);
    text-align: center;
    font-family: ibm-plex-mono, sans-serif;
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 32px 48px;
}

.http-error-description-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    align-self: stretch;
    padding: 32px 48px;
}

.http-error-title {
    color: var(--Dark-Gray, #1f1f1f);
    font-family: ibm-plex-sans, sans-serif;
    font-size: 7em;
    font-style: normal;
    font-weight: 600;
    line-height: 1em;
}

.http-error-copy {
    color: var(--Dark-Gray, #1f1f1f);
    font-family: IBM Plex Sans;
    font-size: 2em;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.http-error-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
    align-self: stretch;
    padding: 32px 40px;
}

.http-endtag-copy {
    color: var(--Dark-Gray, #1f1f1f);
    text-align: center;
    font-family: ibm-plex-sans, sans-serif;
    font-size: 1em;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: inline-block;
    vertical-align: middle;
}

.http-endtag-logo {
    display: inline-block;
    height: 57px;
    width: 57px;
    vertical-align: middle;
}

/* ———————————————————————
            12. Media queries
 ——————————————————————— */

/* Media queries for screens sizes below tablet dimensions */
@media screen and (max-width: 1024px) {
    #menu-toggle:checked + .hamburger-icon ~ .mobile-nav {
        right: 0;
    }

    .main-nav-list {
        display: none;
    }

    /* .mobile-nav.show {
        right: 0;
    } */

    #menu-toggle {
        display: block;
    }

    .hamburger-icon {
        display: block;
    }

    .mobile-nav {
        display: block;
    }

    .carousel-container {
        height: 64vw;
    }

    .mousetype {
        justify-content: flex-end;
        display: flex;
    }

    .text-alignment {
        align-items: flex-end;
        align-self: stretch;
    }

    .secondary-service-list-item {
        font-size: 0.8em;
        margin: 0.6em 0px;
    }

    .contact-email {
        font-size: 4vw;
    }
}

/* Media queries for tablet screens only */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .carousel-container {
        height: 64vw;
    }

    .carousel-navigation {
        left: 48px;
    }

    .carousel-indicator-button {
        flex: 1 0 32px;
    }

    .next-btn {
        right: 0%;
    }

    .intro-paragraph {
        font-size: 2.5vw;
    }

    .cta-text-container h1 {
        flex: 1 0 64px;
    }

    .cta-text-container .cta-email h2 {
        font-size: 2.5vw;
        flex: 0 1 24px;
    }

    .cta-text-container .cta-email h3 {
        font-size: 2.5vw;
        font-weight: 300;
        flex: 1 0 40px;
    }
}

/* Media queries for mobile screens  */
@media screen and (min-width: 320px) and (max-width: 767px) {
    .core-services-column-container {
        width: 45vw;
        flex-grow: 1;
        flex-shrink: 0;
    }

    .core-services-inner {
        flex-direction: column;
    }

    .core-services-row-container h2 {
        font-size: 3.9vw;
        padding-top: 0.5vw;
    }

    .responsive-image-container {
        flex-direction: column;
    }

    .video-overlay h1 {
        font-size: 5.75vw;
    }

    .cta-text-container {
        display: flex;
        flex-direction: column;
        gap: 5vw;
    }

    .cta-text-container .cta-email h2 {
        font-size: 3.5vw;
    }

    .cta-text-container .cta-email h3 {
        font-size: 3.5vw;
        font-weight: 300;
    }
}

/* Media queries for screens with a width equal to or less than the size of mobile screens */
@media screen and (max-width: 767px) {
    #menu-toggle:checked + .hamburger-icon ~ .mobile-nav {
        right: 0; /* Bring mobile nav on-screen when checkbox is checked */
        display: block;
    }

    #menu-toggle {
        display: block;
    }

    .hamburger-icon {
        display: block;
    }

    .mobile-nav {
        display: block;
    }

    .mobile-nav-logo-container {
        padding-bottom: 16px;
    }

    .mobile-social-list {
        gap: 4px;
        padding-bottom: 8px;
    }

    .mobile-fa-icons {
        font-size: 12pt;
    }

    .carousel {
        height: 45vh;
    }

    .carousel-navigation {
        gap: 16px;
        left: 0px;
        width: 100%;
        justify-content: center;
    }

    .carousel-prev svg,
    .carousel-next svg {
        width: 9px;
    }

    .carousel-indicator-button {
        height: 30px;
        flex: 0 0 0;
    }

    .carousel-indicator-icon {
        width: 10px;
        height: 2px;
    }

    .page-down-button {
        display: none;
    }

    #project-page-down-button {
        display: flex;
    }

    .centered-container {
        padding: 0 48px;
    }

    #main-about-section {
        margin: 48px 0 64px 0;
    }

    .intro-paragraph {
        font-size: 5vw;
    }

    .mousetype {
        justify-content: flex-end;
    }

    .core-services-inner {
        flex-direhero-title-ction: column;
    }

    .core-services-column-container {
        flex: 0 1 100%;
    }

    .core-services-two-column {
        width: 100%;
    }

    .core-services-container,
    .intro-contact-container {
        padding: 0;
    }

    .intro-contact-row-container {
        flex-direction: column;
    }

    .intro-contact-email {
        font-size: 5vw;
    }

    .cta-text-container {
        font-size: 1.25em;
    }

    .cta-text-container .cta-email h2 {
        font-size: 1em;
        flex: 1 0 33.33%;
    }

    .cta-text-container .cta-email h3 {
        font-size: 0.95em;
        font-weight: 300;
        flex: 1 0 33.33%;
    }

    .cta-social-icons-container {
        font-size: 1.15em;
    }

    footer {
        padding: 12px 12px;
    }

    #footer-container {
        flex-direction: row;
        gap: 24px;
    }

    #footer-lists-container {
        display: none;
    }

    #endtag-container {
        justify-content: center;
    }

    #endtag-container p {
        text-align: center;
        font-size: 0.75em;
    }

    .footer-logo {
        height: 24px;
        width: 24px;
    }

    .about-header-half-frame {
        font-size: 1.25em;
    }

    #about-scroll-down {
        display: block;
        padding: 0.2em 18vw;
    }

    .about-centered-container {
        padding: 40px 24px 72px 24px;
    }

    .hero-title-frame h1 {
        font-size: 24vw;
        line-height: 0.8;
        margin-left: -1.1vw;
    }

    .contact-hero-subtitle {
        width: 74%;
        font-size: 1em;
    }

    .responsive-contact-container {
        flex-direction: column;
    }

    .contact-info-container {
        padding-bottom: 1.5em;
    }

    .contact-email {
        width: 100%;
        margin-top: 7px;
        margin-bottom: 0.4em;
        font-size: 4.2vw;
        line-height: 4.2vw;
    }

    .contact-number {
        font-size: 4vw;
        line-height: 4vw;
        font-weight: 100;
    }

    .contact-services-responsive-container {
        flex-direction: row;
    }

    .social-links-list {
        margin: 0 0 4em 0;
    }

    .secondary-service-list-item {
        font-size: 3vw;
        margin: 0.6em 0px;
    }

    /* ———————————————————————
            9. Prototype CSS Styles
 ——————————————————————— */

    .project-intro-half-wrap {
        flex-direction: column;
    }

    .responsive-project-container {
        flex-direction: column;
    }

    .project-header {
        width: 100%;
        height: 60%;
    }

    .fullscreen-carousel-icon {
        width: 8px;
    }
}
