/* ==========================
   Base Styles
========================== */
html, body {
    margin: 0;
    padding: 0;
    background-color: #000;
    font-family: Arial, sans-serif;
    color: #fff;
    scroll-behavior: smooth;
}

#introVideo {
    position: relative;
    z-index: 2;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    display: block;
    background-color: #000;
}

/* Allow cursor interactions to ignore the video on home page */
body.home-page #introVideo {
    pointer-events: none;
}


main {
    min-height: 100vh;
    padding: 60px;
    background-color: #000;

    /* Subtle double vertical lines */
    background-image:
        linear-gradient(
            90deg,
            rgba(200,200,200,0.1) 0px,
            rgba(200,200,200,0.1) 2px,
            transparent 2px,
            transparent 16px,
            rgba(200,200,200,0.1) 16px,
            rgba(200,200,200,0.1) 18px,
            transparent 18px
        );
    background-size: 200px 100%;
    background-position: center 0;
}

/* ==========================
   Grid Container
========================== */
.grid-container {
    max-width: 960px;
    margin: 0 auto;
    padding-left: 8px;
    padding-right: 8px;
}

header, section {
    padding-left: 0;
}

/* ==========================
   Headers
========================== */
header h1 {
    font-family: 'Fira Mono', monospace;
    font-weight: 400;
    font-size: 4.5rem;
    letter-spacing: 1px;
    color: #ffffff;
    display: block;
    line-height: 5.5rem;
    height: 5.5rem;
    overflow: hidden;
    padding-bottom: 20px;
}

header h2 {
    font-family: 'Fira Mono', monospace;
    font-weight: 400;
    font-size: 1.5rem;
    margin-top: 0;
    color: #ffffff;
    letter-spacing: 0.5px;
    display: inline-block;
}

header h3 {
    font-family: 'Fira Mono', monospace;
    font-weight: 400;
    font-size: 2.0rem;
    margin-top: 0;
    color: #ffffff;
    letter-spacing: 0.5px;
    display: inline-block;
}

header h4 {
    font-family: 'Fira Mono', monospace;
    font-weight: 400;
    font-size: 1.1rem;
    margin-top: 0;
    color: #ffffff;
    letter-spacing: 0.5px;
    display: inline-block;
}

/* ==========================
   Sections
========================== */
section {
    margin-top: 80px;
}

ul li {
    margin-bottom: 10px;
}

p, li {
    line-height: 1.6;
}

/* Optional hover for list items */
ul li:hover {
    color: #1e90ff;
    cursor: pointer;
    transition: color 0.3s ease;
}

/* ==========================
   Projects Grid
========================== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: box-shadow 0.3s ease;
}

.projects-grid:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.project-item {
    border-radius: 8px;
    overflow: hidden;
}

.project-image-container {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}
.project-image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.15s ease;
}

/* Overlay */
.project-description {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    color: #fff;
    font-family: 'Fira Mono', monospace;
    font-size: 1rem;
    text-align: center;
    padding: 0 10px;
    border-radius: 8px;
    transition: opacity 0.3s ease;
}

.project-title {
    font-size: 1rem;
}

.project-skills {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 6px;
}

/* Hover overlay */
.project-item:hover .project-description {
    opacity: 1;
}

/* ==========================
   Contact Section
========================== */
#contact {
    margin-top: 80px;
    font-family: 'Fira Mono', monospace;
}

#contact a {
    color: #1e90ff;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #555;
    background-color: #111;
    color: #fff;
    font-family: 'Fira Mono', monospace;
    font-size: 1rem;
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1e90ff;
}

.contact-form button {
    padding: 10px 20px;
    background-color: #1e90ff;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-family: 'Fira Mono', monospace;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #0d6fb8;
}

/* ==========================
   Footer
========================== */
footer {
    margin-top: 60px;
    padding: 20px 0;
    text-align: center;
    font-family: 'Fira Mono', monospace;
    font-size: 0.9rem;
    color: #aaa;
    border-top: 1px solid #333;
}

/* ==========================
   Custom Cursor
========================== */
body {
    cursor: none;
}

#custom-cursor {
    position: fixed;
    width: 16px;
    height: 16px;
    background-color: rgba(30, 144, 255, 0.2);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2147483647;
    transition: transform 0.15s ease, width 0.15s ease, height 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

#custom-cursor.caret {
    width: 2px;
    height: 25px;
    background-color: rgba(30, 144, 255, 0.9);
    border-radius: 1px;
    box-shadow: 0 0 10px rgba(30, 144, 255, 1);
    animation: blink 1s steps(2, start) infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Custom cursor button hover */
#custom-cursor.button-hover {
    width: 10px;
    height: 10px;
    background-color: rgba(30, 144, 255, 0.8);
    box-shadow: 0 0 15px rgba(30, 144, 255, 0.6);
    border-radius: 50%;
    transition: width 0.2s, height 0.2s, background-color 0.2s, box-shadow 0.2s;
}

/* Magnifying glass on image hover */
#custom-cursor.image-hover {
    width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(30, 144, 255, 0.9);
    box-shadow: 0 0 14px rgba(30, 144, 255, 0.8);
    border-radius: 50%;
}

#custom-cursor.image-hover::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 2px;
    background: rgba(30, 144, 255, 0.9);
    border-radius: 2px;
    right: -6px;
    bottom: -2px;
    transform: rotate(45deg);
    box-shadow: 0 0 8px rgba(30, 144, 255, 0.8);
}

/* Target cursor for Tap the Dot */
#custom-cursor.target-hover {
    width: 14px;
    height: 14px;
    background: transparent;
    border: 1px solid rgba(30, 144, 255, 0.9);
    box-shadow: 0 0 10px rgba(30, 144, 255, 0.8);
    border-radius: 50%;
}

#custom-cursor.target-hover::before,
#custom-cursor.target-hover::after {
    content: "";
    position: absolute;
    background: rgba(30, 144, 255, 0.9);
    box-shadow: 0 0 8px rgba(30, 144, 255, 0.8);
}

#custom-cursor.target-hover::before {
    width: 2px;
    height: 12px;
    left: 50%;
    top: 1px;
    transform: translateX(-50%);
}

#custom-cursor.target-hover::after {
    width: 12px;
    height: 2px;
    left: 1px;
    top: 50%;
    transform: translateY(-50%);
}
a, button {
    cursor: none !important;
}

.cursor-trail {
    position: fixed;
    width: 7px;
    height: 7px;
    background: rgba(30, 144, 255, 0.35);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2147483646;
    transition: opacity 0.3s ease;
}

/* ==========================
   Image Lightbox
========================== */
.image-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 2147483645;
}

.image-lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.image-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.image-lightbox video {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    background: #000;
}

/* ==========================
   Snake Game
========================== */
#snake-game {
    margin-top: 60px;
    font-family: 'Fira Mono', monospace;
    position: relative;
}

#tap-game {
    margin-top: 60px;
    font-family: 'Fira Mono', monospace;
    position: relative;
}
.snake-wrap {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
}

.snake-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 200px;
    margin-left: auto;
}

#snake-canvas {
    width: 360px;
    height: 360px;
    max-width: 90vw;
    max-height: 90vw;
    background: #0b0b0b;
    border: 1px solid #1e90ff;
    border-radius: 10px;
    box-shadow: 0 0 18px rgba(30, 144, 255, 0.3);
}

.snake-ui {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.snake-ui button {
    padding: 10px 16px;
    background-color: #1e90ff;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-family: 'Fira Mono', monospace;
    font-size: 0.95rem;
    cursor: pointer;
}

.snake-ui button:hover {
    background-color: #0d6fb8;
}

#snake-score {
    margin-top: 8px;
    color: #fff;
    font-size: 0.95rem;
}

.snake-leaderboard {
    margin-top: 10px;
    padding: 10px 12px;
    border: 1px solid #1e90ff;
    border-radius: 8px;
    background: #0b0b0b;
}

.snake-leaderboard-title {
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: #fff;
}

#snake-highscores {
    margin: 0;
    padding-left: 18px;
    color: #fff;
    font-size: 0.9rem;
}

.snake-name-label {
    display: block;
    margin: 10px 0 6px;
    font-size: 0.9rem;
}

#snake-name {
    width: 100%;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #555;
    background-color: #111;
    color: #fff;
    font-family: 'Fira Mono', monospace;
    font-size: 0.95rem;
}

.tap-wrap {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
}

.tap-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 220px;
    margin-left: auto;
}

#tap-canvas {
    width: 360px;
    height: 240px;
    max-width: 90vw;
    max-height: 60vw;
    background: #0b0b0b;
    border: 1px solid #1e90ff;
    border-radius: 10px;
    box-shadow: 0 0 18px rgba(30, 144, 255, 0.3);
}

.tap-ui {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tap-ui button {
    padding: 10px 16px;
    background-color: #1e90ff;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-family: 'Fira Mono', monospace;
    font-size: 0.95rem;
    cursor: pointer;
}

.tap-ui button:hover {
    background-color: #0d6fb8;
}

#tap-score,
#tap-time {
    margin-top: 6px;
    color: #fff;
    font-size: 0.95rem;
}

.tap-leaderboard {
    margin-top: 10px;
    padding: 10px 12px;
    border: 1px solid #1e90ff;
    border-radius: 8px;
    background: #0b0b0b;
}

.tap-leaderboard-title {
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: #fff;
}

#tap-highscores {
    margin: 0;
    padding-left: 18px;
    color: #fff;
    font-size: 0.9rem;
}

.score-status {
    margin-top: 6px;
    font-size: 0.8rem;
    color: #7aa7ff;
    min-height: 1em;
}

.tap-over {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    z-index: 5;
}

.tap-over.open {
    display: flex;
}

.tap-over-card {
    background: #0f0f0f;
    border: 1px solid #1e90ff;
    border-radius: 10px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.tap-name-label {
    display: block;
    margin: 10px 0 6px;
    font-size: 0.9rem;
}

#tap-name {
    width: 100%;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #555;
    background-color: #111;
    color: #fff;
    font-family: 'Fira Mono', monospace;
    font-size: 0.95rem;
}

.tap-over-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 28px;
    flex-wrap: wrap;
}

.tap-over-actions button {
    padding: 10px 16px;
    background-color: #1e90ff;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-family: 'Fira Mono', monospace;
    font-size: 0.95rem;
    cursor: pointer;
}

.tap-over-actions button:hover {
    background-color: #0d6fb8;
}

.snake-over {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    z-index: 5;
}

.snake-over.open {
    display: flex;
}

.snake-over-card {
    background: #0f0f0f;
    border: 1px solid #1e90ff;
    border-radius: 10px;
    padding: 30px 28px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.snake-over-card h3 {
    margin: 0 0 8px 0;
    font-family: 'Fira Mono', monospace;
}

.snake-over-card p {
    margin: 0 0 16px 0;
}

.snake-over-card button {
    padding: 10px 16px;
    background-color: #1e90ff;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-family: 'Fira Mono', monospace;
    font-size: 0.95rem;
    cursor: pointer;
    margin-top: 14px;
}

.snake-over-card button:hover {
    background-color: #0d6fb8;
}
/* ==========================
   Section Divider
========================== */
.section-divider {
    margin: 20px 0;
    height: 20px;
    position: relative;
}

.section-divider::before,
.section-divider::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
}

.section-divider::before {
    left: 50%;
    transform: translateX(-6px);
}

.section-divider::after {
    left: 50%;
    transform: translateX(6px);
}

/* Background for alternating project sections */
#projects > h2:nth-of-type(odd) + .projects-grid {
    padding: 10px;
    border-radius: 8px;
}

#projects > h2:nth-of-type(even) + .projects-grid {
    padding: 10px;
    border-radius: 8px;
}

.projects-grid:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}



.project-detail .project-images {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.project-detail .project-images img {
    width: 100%;
    max-width: 600px; /* limits the size */
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.projects-flex {
    display: flex;
    gap: 60px; /* space between text and video */
    align-items: flex-start;
    justify-content: space-between; /* ensures video goes to the right */
}

.projects-video {
    flex: 0 0 600px; /* fixed width for video */
}


.projects-text {
    flex: 1;
}

.projects-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.projects-text p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.projects-carousel {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    width: 100%;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-container img {
    width: 100%;
    height: 380px;
    object-fit: contain;
    flex: 0 0 100%;
    border-radius: 8px;
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30, 144, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 0 12px;
    cursor: pointer;
    border-radius: 6px;
}

.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(30, 144, 255, 0.3);
    border: none;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    border-radius: 6px;
    font-size: 1.2rem;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.carousel-button:hover {
    background-color: rgba(30, 144, 255, 0.6);
}

.scroll-carousel {
    display: flex;
    overflow-x: auto;
    gap: 6px;
    scroll-behavior: smooth;
    padding: 0 8px 10px; /* ← THIS is the fix */
}

.scroll-carousel .item {
    flex: 0 0 auto;
    height: 340px;   /* 300–380 is the sweet spot */
}

.scroll-carousel .item img {
    height: 100%;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
}

.scroll-carousel img {
  width: 100%;         
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.scroll-carousel.active {
    cursor: grabbing;
}

.scroll-carousel::-webkit-scrollbar {
    height: 6px;
}
.scroll-carousel::-webkit-scrollbar-thumb {
    background: rgba(30,144,255,0.5);
    border-radius: 3px;
}

.horizontal-gallery {
    width: 100%;
    margin-left: 0;
}

.grid-container .horizontal-gallery {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
}

/* ==========================
   Project Page Header
========================== */
.project-header {
    width: 100%;
    padding: 24px 0;
    display: flex;
    justify-content: center;
}

.project-header img {
    height: 48px;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.project-header img:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.project-header {
    justify-content: flex-start;
    padding-left: 60px;
}

.projects-video {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.projects-video video {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    background-color: #000;
}

.projects-video video {
    width: 100%;
    height: auto; 
    object-fit: contain;
    border-radius: 8px;
    display: block;
    background-color: #000;
}

.resonance-video {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    flex: 0 0 600px;
    margin-left: 100px;
}

.resonance-video-container {
    margin-left: 40px;
    margin-right: 0;
}

.photo-row {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-top: 40px;
}

.photo-row img {
    width: 32%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.full-image-section {
    display: flex;
    justify-content: flex-end;
    margin: 40px 0;
}

.full-image-section img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.poster-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 4px 18px rgba(0,0,0,0.4);
    margin-left: 120px;
}

.projects-video-hokie {
    flex: 1;
    max-width: 300px;
    margin-left: auto;
}

.projects-video-hokie video {
    width: 100%;
    height: auto;
    aspect-ratio: 702 / 1440;
    border-radius: 8px;
    display: block;
}

.top-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #0f0f0f;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 9999;
    border-bottom: 1px solid #222;
    box-sizing: border-box;
}

.top-header .logo {
    height: 50px;
    width: auto;
}

.top-header .header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: left;
    gap: 28px;
    margin-left: auto;
    flex: 1;
    flex-wrap: wrap;
    min-width: 0;
}

/* spacing between individual links */
.top-header .header-right a {
    color: #fff;
    text-decoration: none;
    margin-left: 0;
    font-family: 'Fira Mono', monospace;
    font-weight: 400;
    transition: color 0.3s;
    white-space: nowrap;
}

.top-header .header-right a:hover {
    color: #1e90ff;
}

body main {
    padding-top: 90px;
}

/* ==========================
   Mobile & Responsive
========================== */
@media (max-width: 900px) {
    main {
        padding: 30px 20px;
    }

    header h1 {
        font-size: 2.6rem;
        line-height: 3.2rem;
        height: auto;
    }

    header h2 {
        font-size: 1.1rem;
    }

    header h3 {
        font-size: 1.5rem;
    }

    .top-header {
        height: auto;
        padding: 12px 16px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .top-header .header-right {
        width: 100%;
        margin-left: 0;
        flex-wrap: wrap;
        gap: 12px;
    }

    .top-header .header-right a {
        margin-left: 0;
        font-size: 0.95rem;
    }

    .projects-flex,
    .background-container,
    .about-flex {
        flex-direction: column;
        gap: 24px;
    }

    .projects-video,
    .resonance-video,
    .projects-video-hokie,
    .projects-carousel {
        max-width: 100%;
        width: 100%;
        margin-left: 0;
    }

    .resonance-video-container,
    .poster-image {
        margin-left: 0;
    }

    .carousel-container img {
        height: auto;
    }

    .scroll-carousel .item {
        height: 260px;
    }

    .photo-row {
        flex-direction: column;
    }

    .photo-row img {
        width: 100%;
    }

    #introVideo {
        height: 100svh;
        object-fit: contain;
    }
}

@media (pointer: coarse) {
    body {
        cursor: auto;
    }
    #custom-cursor,
    .cursor-trail {
        display: none;
    }
}

.touch-mode #custom-cursor,
.touch-mode .cursor-trail {
    display: none;
}

body.game-lock {
    overflow: hidden;
    touch-action: none;
}

body.home-page .top-header {
    z-index: 1; /* lower than the video */
}

/* About Me Page */
.about-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
    font-family: 'Fira Mono', monospace;
    line-height: 1.6;
}

.about-image {
    flex: 1;
    min-width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

/* Background Section */
.background-section {
    background-color: #0f0f0f;
    color: #fff;
    padding: 60px 30px;
}

.background-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
}

.background-left {
    flex: 1;
}

.background-left .about-photo {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    object-fit: cover;
}

.background-right {
    flex: 2;
    font-family: 'Fira Mono', monospace;
    line-height: 1.6;
}

.background-right h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1e90ff;
}

.background-right p {
    margin-bottom: 15px;
}
