/* Bailey Hughes Creative - Main Stylesheet */

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

:root {
    --primary-color: #000;
    --text-color: #fff;
    --bg-color: #fff;
    --accent-color: #333;
    --bg-primary: #0047a7; /* Primary background color */
    --bg-secondary: #013378; /* Secondary background color */
    --primary-text-color: #ADD9F9;
    --secondary-text-color: #fff;
}

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Capriola:ital,wght@0,400&family=Roboto:wght@300;400;500;700&family=Oswald:wght@400;500;600;700&display=swap');

html {
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--secondary-text-color);
    background-color: var(--bg-primary);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* All H1 tags */
h1 {
    font-family: 'Capriola', sans-serif;
    font-weight: 400;
    color: var(--primary-text-color);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* All H2 and H3 tags */
h2, h3 {
    font-family: 'Capriola', sans-serif;
    font-weight: 400;
    color: var(--primary-text-color);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 32px;
}

/* All paragraph tags */
p {
    color: var(--secondary-text-color);
}

/* Navigation */
nav {
    position: relative;
    background-color: var(--bg-primary);
    padding: 10px 40px 0px 40px;
    z-index: 500;
    overflow: visible;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 0;
    border: none;
}

.logo {
    display: block;
    height: 180px;
    text-decoration: none;
    position: absolute;
    left: 0;
    top: -40px;
    z-index: 5000;
    overflow: visible;
}

.logo img {
    height: 180px;
    width: auto;
    max-height: 180px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin-left: auto;
    padding-right: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-text-color);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.6;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-text-color);
}

/* Main Content */
main {
    min-height: calc(100vh - 80px);
    position: relative;
    z-index: 600;
    margin-bottom: 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 20px 20px 80px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.hero-image {
    margin: 40px -20px;
    text-align: center;
    width: calc(100% + 40px);
    max-width: 100vw;
}

.hero-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 0;
}

.hero h1 {
    font-family: 'Capriola', sans-serif;
    font-size: 72px;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-top: -80px;
    margin-bottom: 30px;
    line-height: 1.1;
    text-transform: uppercase;
}

.separator-graphic {
    text-align: center;
    margin: -200px 0;
}

.separator-graphic img {
    max-width: 400px;
    height: auto;
    display: inline-block;
}

.hero h2 {
    font-family: 'Capriola', sans-serif;
    font-size: 32px;
    font-weight: 400;
    margin-top: 30px;
    margin-bottom: 20px;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--primary-text-color);
    text-transform: none;
    letter-spacing: normal;
}

.hero h3 {
    font-family: 'Capriola', sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 60px;
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--primary-text-color);
    text-transform: none;
    letter-spacing: normal;
}

/* Links Section */
.links-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.links-section a {
    font-size: 18px;
    text-decoration: none;
    color: var(--secondary-text-color);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}

.links-section a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.3s;
}

.links-section a:hover::after {
    width: 100%;
}

.link-with-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--secondary-text-color);
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding-bottom: 0;
    max-width: 300px;
    width: 100%;
}

.link-with-image::after {
    display: none;
}

.link-with-image:hover {
    transform: translateY(-5px);
    opacity: 0.9;
}

.link-with-image img {
    width: 100%;
    min-height: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease;
}

.link-with-image:hover img {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.link-with-image span {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    padding: 15px 40px;
    background: var(--bg-primary);
    color: var(--primary-text-color);
    border: 2px solid #ADD9F9;
    border-radius: 25px;
    display: inline-block;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.link-with-image:hover span {
    background: #ADD9F9;
    color: var(--bg-primary);
    border-color: #ADD9F9;
}

.journalism-link {
    max-width: 300px;
}

/* Contact Form */
.contact-section {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0 20px 0 20px;
    text-align: center;
    background-color: var(--bg-secondary);
    color: var(--secondary-text-color);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.contact-section h3 {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 40px;
    color: var(--primary-text-color);
    text-transform: none;
}

.contact-section p {
    color: var(--secondary-text-color);
}

.contact-top-divider,
.contact-bottom-divider {
    width: calc(100% + 40px);
    height: auto;
    display: block;
    margin-left: -20px;
    margin-right: -20px;
    max-width: 100vw;
}

.contact-top-divider {
    margin-top: 0;
    margin-bottom: 40px;
}

.contact-bottom-divider {
    margin-top: 40px;
    margin-bottom: 0;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input {
    padding: 15px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 16px;
    font-family: inherit;
    width: 100%;
}

.contact-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form button {
    padding: 15px 40px;
    background: var(--bg-secondary);
    color: var(--primary-text-color);
    border: 2px solid #ADD9F9;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
    align-self: center;
}

.contact-form button:hover {
    background: #ADD9F9;
    color: var(--bg-secondary);
    border-color: #ADD9F9;
}

.success-message {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-left: 3px solid #ADD9F9;
    color: var(--secondary-text-color);
}

.success-message.show {
    display: block;
}

/* Footer */
footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 40px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: -140px;
    margin-bottom: 0;
}

footer img {
    height: 30px;
    width: auto;
}

footer a {
    color: var(--primary-text-color);
    text-decoration: underline;
    font-size: 16px;
}

footer a:hover {
    opacity: 0.8;
}

/* Resume Page */
.page-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 0px 5px 10px 5px;
    text-align: left;
}

.page-header h1 {
    font-family: 'Capriola', sans-serif;
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin: 0;
    text-transform: uppercase;
}

.page-header h1 br {
    display: none;
}

.page-header .logo {
    position: relative;
    top: 0;
    left: 0;
    flex-shrink: 0;
}

.breadcrumb {
    margin: 60px auto 0;
    padding: 0 20px;
    text-align: center;
    font-size: 16px;
    color: var(--secondary-text-color);
    max-width: 1200px;
}

.breadcrumb a {
    display: inline-block;
    padding: 15px 40px;
    background: var(--bg-primary);
    color: var(--primary-text-color);
    border: 2px solid #ADD9F9;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
    margin: 0 5px;
}

.breadcrumb a:hover {
    background: #ADD9F9;
    color: var(--bg-primary);
    border-color: #ADD9F9;
}

.resume-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
}

.resume-image {
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Gallery Styles - Messy Layout */
.gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 200px;
    gap: 15px;
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #f5f5f5;
    border-radius: 4px;
}


.gallery-item:nth-child(1) {
    grid-column: span 4;
    grid-row: span 2;
}

.gallery-item:nth-child(2) {
    grid-column: span 5;
    grid-row: span 1;
}

.gallery-item:nth-child(3) {
    grid-column: span 3;
    grid-row: span 2;
}

.gallery-item:nth-child(4) {
    grid-column: span 3;
    grid-row: span 2;
}

.gallery-item:nth-child(5) {
    grid-column: span 4;
    grid-row: span 1;
}

.gallery-item:nth-child(6) {
    grid-column: span 5;
    grid-row: span 2;
}

.gallery-item:nth-child(7) {
    grid-column: span 3;
    grid-row: span 1;
}

.gallery-item:nth-child(8) {
    grid-column: span 4;
    grid-row: span 2;
}

.gallery-item:nth-child(9) {
    grid-column: span 5;
    grid-row: span 1;
}

.gallery-item:nth-child(10) {
    grid-column: span 3;
    grid-row: span 2;
}

.gallery-item:nth-child(11) {
    grid-column: span 4;
    grid-row: span 1;
}

.gallery-item:nth-child(12) {
    grid-column: span 5;
    grid-row: span 2;
}

.gallery-item:nth-child(13) {
    grid-column: span 3;
    grid-row: span 1;
}

.gallery-item:nth-child(14) {
    grid-column: span 4;
    grid-row: span 2;
}

.gallery-item:nth-child(15) {
    grid-column: span 5;
    grid-row: span 1;
}

.gallery-item:nth-child(16) {
    grid-column: span 3;
    grid-row: span 2;
}

.gallery-item:nth-child(n+17) {
    grid-column: span 4;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
}

.gallery-item:hover::after {
    background: rgba(0, 0, 0, 0.1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: auto;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    display: inline-block;
    max-width: 90vw;
    max-height: 90vh;
    margin: auto;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--secondary-text-color);
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
    background: none;
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
}

.lightbox-close:hover {
    opacity: 0.7;
}

/* Journalism Page Styles */
.journalism-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.journalism-intro {
    margin-bottom: 60px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    text-align: left;
}

.journalism-intro-image {
    flex-shrink: 0;
    max-width: 507px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.journalism-intro-text {
    flex: 1;
}

.journalism-intro h2 {
    font-family: 'Capriola', sans-serif;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--primary-text-color);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.journalism-intro p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: var(--secondary-text-color);
}

.magazine-section {
    margin-bottom: 80px;
    text-align: center;
}

.magazine-section h1 {
    font-family: 'Capriola', sans-serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.magazine-section h3 {
    font-family: 'Capriola', sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin-top: 20px;
    color: var(--primary-text-color);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.magazine-covers {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.magazine-cover {
    max-width: 800px;
    width: 100%;
    height: auto;
    margin: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.magazine-cover:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.read-more-link {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 40px;
    background: var(--bg-primary);
    color: var(--primary-text-color);
    border: 2px solid #ADD9F9;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.read-more-link:hover {
    background: #ADD9F9;
    color: var(--bg-primary);
    border-color: #ADD9F9;
}

.coming-soon {
    color: var(--secondary-text-color);
    font-style: italic;
    opacity: 0.8;
}

/* Projects Page Styles */
.projects-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.project-section {
    margin-bottom: 100px;
    text-align: center;
}

.project-section h1 {
    font-family: 'Capriola', sans-serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.project-section p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: left;
    color: var(--secondary-text-color);
}

.project-section strong {
    font-weight: 600;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.project-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin: 30px auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.project-links {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.project-links a {
    display: inline-block;
    padding: 15px 40px;
    background: var(--bg-primary);
    color: var(--primary-text-color);
    border: 2px solid #ADD9F9;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.project-links a:hover {
    background: #ADD9F9;
    color: var(--bg-primary);
    border-color: #ADD9F9;
}

/* Contact Page Styles */
.contact-hero {
    width: 100%;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0;
}

.contact-hero-image {
    width: 100%;
    height: 60vh;
    min-height: 500px;
    max-height: 700px;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.contact-bio {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 60px;
    line-height: 1.8;
}

.contact-bio-text {
    flex: 1;
    text-align: left;
}

.contact-bio-right {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 400px;
    min-width: 350px;
}

.contact-bio-image {
    height: 700px;
    width: 100%;
    max-width: 400px;
    object-fit: cover;
    border-radius: 180px 180px 0 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-resume-link {
    text-align: center;
}

.contact-resume-link a {
    display: inline-block;
    padding: 15px 40px;
    background: var(--bg-primary);
    color: var(--primary-text-color);
    border: 2px solid #ADD9F9;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.contact-resume-link a:hover {
    background: #ADD9F9;
    color: var(--bg-primary);
    border-color: #ADD9F9;
}

.contact-bio p {
    font-family: 'Capriola', sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.contact-bio strong {
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    nav {
        padding: 5px 10px 0px 10px;
        z-index: 100;
        position: relative;
        overflow: visible;
        width: 100%;
        max-width: 100vw;
    }

    .nav-container {
        overflow: visible;
        width: 100%;
        max-width: 100%;
    }

    main {
        z-index: 1;
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .logo {
        z-index: 10000;
        top: -100px;
    }

    .nav-container {
        justify-content: flex-end;
        align-items: center;
    }

    .nav-links {
        display: none;
        position: fixed !important;
        top: 0;
        left: auto;
        right: 0;
        width: 250px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999999 !important;
        box-shadow: -2px 4px 10px rgba(0, 0, 0, 0.2);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li,
    .nav-links a {
        position: relative;
        z-index: 1000000 !important;
    }

    .mobile-menu-toggle {
        display: block;
        margin-left: auto;
        font-size: 28px;
        padding: 5px;
        z-index: 10000;
        position: relative;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero h2 {
        font-size: 20px;
    }

    .hero h3 {
        font-size: 18px;
    }

    .hero {
        padding: 20px 10px 80px;
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .hero-image {
        margin: 40px -10px;
        width: calc(100% + 20px);
        max-width: 100vw;
    }

    .links-section {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }

    .container {
        padding: 40px 20px;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
        gap: 10px;
        padding: 20px 10px;
    }

    .gallery-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }

    .gallery-item:nth-child(odd) {
        grid-row: span 2;
    }

    .magazine-section h1 {
        font-size: 28px;
    }

    .journalism-intro {
        flex-direction: column;
        text-align: center;
    }

    .journalism-intro-image {
        max-width: 423px;
        margin: 0 auto;
    }

    .journalism-intro-text {
        text-align: center;
    }

    .journalism-intro h2 {
        font-size: 24px;
    }

    .journalism-intro p {
        font-size: 16px;
    }

    .project-section h1 {
        font-size: 28px;
    }

    .project-section p {
        font-size: 16px;
    }

    .contact-bio {
        flex-direction: column;
    }

    .contact-bio-right {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-bio-image {
        width: 100%;
        max-width: 400px;
        height: auto;
        margin: 0 auto;
    }

    .contact-bio p {
        font-size: 16px;
    }

    .contact-section {
        padding: 0 10px;
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .contact-top-divider,
    .contact-bottom-divider {
        width: calc(100% + 20px);
        max-width: 100vw;
        margin-left: -10px;
        margin-right: -10px;
    }

    .breadcrumb {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
    }

    .breadcrumb a {
        padding: 10px 20px;
        font-size: 12px;
        margin: 0;
        flex: 1;
        text-align: center;
        max-width: calc(50% - 5px);
    }

    .resume-breadcrumb {
        justify-content: center;
    }

    .resume-breadcrumb a {
        flex: 0 1 auto;
        max-width: none;
    }

    .page-header {

        padding: 1px 1px 1px 1px;
        gap: 2px;
        margin-top: 0;
        position: relative;
        z-index: 1;
        flex-wrap: wrap;
    }

    .page-header h1 {
        position: relative;
        z-index: 0;
        font-size: 32px;
    }

    .page-header.photography-header h1 {
        font-size: calc(32px * 0.7);
    }

    .page-header h1 br {
        display: block;
    }

    .page-header .logo {
        height: 120px;
    }

    .page-header .logo img {
        height: 120px;
    }

    .nav-container {
        position: relative;
        z-index: 200;
    }

    .lightbox-content {
        max-width: 95vw;
        max-height: 95vh;
    }

    .lightbox-content img {
        max-width: 95vw;
        max-height: 95vh;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 36px;
    }
}

