/* ========================================
   CSS VARIABLES - COLOR SCHEME
   ======================================== */
:root {
    /* Primary Colors */
    --color-dark-bg: #000000;
    --color-charcoal: #1a1a1a;
    --color-deep-red: #250000;
    --color-crimson: #5a000f;
    
    /* Accent Colors */
    --color-vibrant-green: #ffffff;
    --color-electric-blue: #8a8a8a;
    --color-sunset-orange: #ff6b35;
    --color-soft-pink: #ff69b4;
    
    /* Neutral Colors */
    --color-white: #ffffff;
    --color-light-gray: #e5e5e5;
    --color-medium-gray: #999999;
    --color-dark-gray: #333333;
    
    /* Fonts */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-display: 'Arial Black', 'Arial Bold', sans-serif;
}

/* ========================================
   GLOBAL STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background: var(--color-dark-bg);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    /* Main body is now a grid container */
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

/* Custom Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 26, 26, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 102, 0.05) 0%, transparent 50%),
        var(--color-dark-bg);
    z-index: -1;
    pointer-events: none;
}

/* ========================================
   GRID LAYOUT SYSTEM
   ======================================== */

/* Main Page Grid Container - Uses CSS Grid with fractional columns */
.page-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

/* Full Width Elements - Span all 12 columns */
.full-width {
    grid-column: 1 / -1;
    width: 100%;
}

/* Grid Column Sizes */
.grid-one-quarter {
    grid-column: span 3;
}

.grid-one-third {
    grid-column: span 4;
}

.grid-half {
    grid-column: span 6;
}

.grid-two-thirds {
    grid-column: span 8;
}

.grid-three-quarters {
    grid-column: span 9;
}

/* ========================================
   NAVIGATION
   ======================================== */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo a:hover {
    background: var(--color-vibrant-green);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px var(--color-vibrant-green);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--color-light-gray);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-vibrant-green);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-white);
    background: rgba(0, 255, 102, 0.1);
}

.nav-links a:hover::after {
    width: 60%;
}

.nav-links a.active {
    color: var(--color-white);
    background: var(--color-deep-red);
}

/* ========================================
   HERO BANNER SECTION
   ======================================== */
.hero-banner {
    margin-top: 110px;
    height: 600px;
    position: relative;
    background: 
        linear-gradient(rgba(139, 26, 26, 0.6), rgba(10, 10, 10, 0.8)),
        url('https://images.unsplash.com/photo-1524712245354-2c4e5e7121c0?w=1600&h=600&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 10, 10, 0.5) 100%);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 120px;
    font-weight: 900;
    color: var(--color-white);
    letter-spacing: 8px;
    text-shadow: 
        0 0 30px rgba(139, 26, 26, 0.8),
        0 0 60px rgba(139, 26, 26, 0.5);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--color-light-gray);
    letter-spacing: 2px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   PAGE HEADERS
   ======================================== */
.page-header {
    margin-top: 110px;
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-dark-bg) 100%);
    text-align: center;
    border-bottom: 2px solid var(--color-deep-red);
}

.page-title {
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 20px;
}

.page-description {
    font-size: 20px;
    color: var(--color-medium-gray);
    max-width: 800px;
    margin: 0 auto;
}

.about-header {
    background: 
        linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.9)),
        url('https://images.unsplash.com/photo-1478720568477-152d9b164e26?w=1600&h=400&fit=crop') center/cover;
}

/* ========================================
   FEATURED PROJECTS SECTION
   ======================================== */
.featured-projects {
    padding: 40px;
    background: rgba(26, 26, 26, 0.3);
    border-radius: 12px;
}

.section-subtitle {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--color-light-gray);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.4s ease;
    background: var(--color-charcoal);
    aspect-ratio: 16 / 10;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95), transparent);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.project-card:hover .project-info {
    transform: translateY(0);
}

.project-info h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--color-white);
}

.project-date {
    font-size: 14px;
    color: var(--color-medium-gray);
}

/* ========================================
   SIDEBAR
   ======================================== */
.sidebar {
    padding: 40px;
    background: linear-gradient(135deg, rgba(139, 26, 26, 0.1) 0%, rgba(10, 10, 10, 0.5) 100%);
    border-radius: 12px;
}

.sidebar-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--color-vibrant-green);
}

.fact-list {
    list-style: none;
    margin-bottom: 40px;
}

.fact-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
    color: var(--color-light-gray);
}

.cta-box {
    background: rgba(165, 165, 165, 0.05);
    padding: 30px;
    border-radius: 8px;
}

.cta-box h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--color-vibrant-green);
}

.cta-box p {
    color: var(--color-light-gray);
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--color-vibrant-green);
    color: var(--color-dark-bg);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 102, 0.3);
}

/* ========================================
   WORKED WITH SECTION
   ======================================== */
.worked-with {
    padding: 60px 0;
    background: var(--color-charcoal);
    border-top: 2px solid var(--color-deep-red);
    border-bottom: 2px solid var(--color-deep-red);
}

.section-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-light-gray);
}

.media-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.media-item {
    width: 200px;
    height: 100px;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.media-item:hover {
    opacity: 1;
    transform: scale(1.15);

}

.media-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.media-item:hover img {
    filter: grayscale(0%);
}


/* ========================================
   FEATURED ALBUM SECTION
   ======================================== */
.featured-album {
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--color-dark-bg) 0%, var(--color-charcoal) 100%);
}

.section-title-large {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 60px;
    color: var(--color-white);
}

.album-display {
    display: flex;
    justify-content: center;
}

.album-cover {
    text-align: center;
}

.album-art {
    width: 400px;
    height: 400px;
    max-width: 100%;
    background: linear-gradient(135deg, var(--color-electric-blue) 0%, var(--color-vibrant-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.4);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.album-art::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.album-art:hover::before {
    width: 500px;
    height: 500px;
}

.album-art:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 30px 80px rgba(0, 255, 102, 0.5);
}

.album-art h3 {
    font-size: 64px;
    font-weight: 900;
    color: var(--color-white);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.album-credits {
    margin-top: 30px;
    font-size: 16px;
    color: var(--color-medium-gray);
    transition: color 0.3s ease;
}

.album-cover:hover .album-credits {
    color: var(--color-vibrant-green);
}

/* ========================================
   CINEMA SELECTS SECTION
   ======================================== */
.cinema-selects {
    padding: 60px 40px;
}

.cinema-table {
    margin-top: 40px;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px;
}

thead th {
    text-align: left;
    padding: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--color-deep-red);
}

tbody tr {
    background: rgba(26, 26, 26, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

tbody tr:hover {
    background: rgba(0, 255, 102, 0.1);
    transform: translateX(10px);
}

tbody td {
    padding: 25px 20px;
    color: var(--color-light-gray);
    font-size: 16px;
}

tbody tr:hover td {
    color: var(--color-white);
    border-color: var(--color-vibrant-green);
}

tbody td:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    font-weight: 600;
}

tbody tr:hover td:first-child {
    border-left-color: var(--color-vibrant-green);
    border-left-width: 3px;
}

tbody td:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* ========================================
   PROJECTS PAGE STYLES
   ======================================== */
.projects-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    aspect-ratio: 16 / 10;
}

.project-item.large {
    grid-column: span 2;
    aspect-ratio: 21 / 9;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.project-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.6);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95), transparent);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.project-item:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--color-white);
}

.project-meta {
    font-size: 14px;
    color: var(--color-vibrant-green);
    margin-bottom: 15px;
}

.project-description {
    font-size: 16px;
    color: var(--color-light-gray);
    line-height: 1.6;
}

/* Project Filters Sidebar */
.project-filters {
    padding: 40px;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: fit-content;
    position: sticky;
    top: 130px;
}

.project-filters h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--color-vibrant-green);
}

.filter-list {
    list-style: none;
    margin-bottom: 40px;
}

.filter-list li {
    margin-bottom: 15px;
}

.filter-list a {
    display: block;
    padding: 12px 20px;
    color: var(--color-light-gray);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.filter-list a:hover,
.filter-list a.filter-active {
    background: rgba(0, 255, 102, 0.1);
    color: var(--color-vibrant-green);
    transform: translateX(5px);
}

.sidebar-stats {
    background: rgba(0, 102, 255, 0.05);
    padding: 25px;
    border-radius: 8px;
}

.sidebar-stats h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--color-electric-blue);
}

.stat-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--color-white);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--color-medium-gray);
    margin-top: 5px;
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */
.vintage-media {
    padding: 40px 0;
    background: rgba(26, 26, 26, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vintage-item {
    width: 120px;
    height: 80px;
    object-fit: contain;
}

.about-grid {
    align-items: start;
}

.about-bio {
    padding: 40px;
    background: rgba(26, 26, 26, 0.3);
    border-radius: 12px;
}

.about-heading {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--color-vibrant-green);
}

.bio-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-light-gray);
    margin-bottom: 25px;
}

.skills-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--color-deep-red);
}

.skills-section h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--color-white);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.skill-category h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--color-electric-blue);
}

.skill-category ul {
    list-style: none;
}

.skill-category li {
    padding: 8px 0;
    color: var(--color-light-gray);
    font-size: 16px;
}

.skill-category li::before {
    content: '▸ ';
    color: var(--color-vibrant-green);
    font-weight: bold;
}

/* About Sidebar */
.about-sidebar {
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(10, 10, 10, 0.5) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.profile-image:hover img {
    transform: scale(1.1);
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--color-vibrant-green);
}

.contact-item {
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--color-light-gray);
}

.contact-item strong {
    color: var(--color-white);
    display: block;
    margin-bottom: 5px;
}

.contact-item a {
    color: var(--color-electric-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--color-vibrant-green);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.social-button {
    display: block;
    padding: 12px 20px;
    background: rgba(142, 142, 142, 0.1);
    color: var(--color-vibrant-green);
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-button:hover {
    background: var(--color-vibrant-green);
    color: var(--color-dark-bg);
    transform: translateY(-3px);
}

.resume-download {
    margin-top: 30px;
}

.download-button {
    display: block;
    padding: 15px 25px;
    background: var(--color-deep-red);
    color: var(--color-white);
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-button:hover {
    background: var(--color-crimson);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(196, 30, 58, 0.3);
}

/* Experience Timeline */
.experience-section {
    padding: 100px 60px;
    background: var(--color-charcoal);
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding-left: 80px;
    margin-top: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--color-vibrant-green), var(--color-electric-blue));
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.timeline-marker {
    position: absolute;
    left: -68px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-vibrant-green);
    border: 4px solid var(--color-dark-bg);
    box-shadow: 0 0 0 3px var(--color-vibrant-green);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.5);
    box-shadow: 0 0 20px var(--color-vibrant-green);
}

.timeline-content {
    background: rgba(26, 26, 26, 0.5);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--color-vibrant-green);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    background: rgba(0, 255, 102, 0.05);
    transform: translateX(10px);
}

.timeline-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--color-white);
}

.company {
    font-size: 16px;
    color: var(--color-vibrant-green);
    margin-bottom: 15px;
    font-weight: 600;
}

.description {
    font-size: 16px;
    color: var(--color-light-gray);
    line-height: 1.6;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    position: relative;
    background: var(--color-charcoal);
    padding-top: 300px;
    overflow: hidden;
}

.footer-mountain {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: 
        url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&h=400&fit=crop') center/cover;
    filter: grayscale(100%) contrast(1.2);
    opacity: 0.3;
    transition: all 0.5s ease;
}

.site-footer:hover .footer-mountain {
    opacity: 0.5;
    filter: grayscale(0%) contrast(1);
}

.footer-content {
    position: relative;
    z-index: 2;
    padding: 60px 0 40px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--color-light-gray);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.footer-links a:hover {
    color: var(--color-white);
    border-color: var(--color-vibrant-green);
    background: rgba(0, 255, 102, 0.1);
    transform: translateY(-3px);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-social a {
    color: var(--color-medium-gray);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
}

.footer-social a:hover {
    color: var(--color-vibrant-green);
    background: rgba(0, 255, 102, 0.1);
    transform: scale(1.1);
}

.footer-copyright {
    color: var(--color-medium-gray);
    font-size: 14px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE SCALING
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .page-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 30px;
        padding: 40px 30px;
    }

    .grid-one-quarter,
    .grid-one-third {
        grid-column: span 6;
    }

    .grid-half {
        grid-column: span 6;
    }

    .grid-two-thirds,
    .grid-three-quarters {
        grid-column: span 6;
    }

    .hero-title {
        font-size: 80px;
    }

    .page-title {
        font-size: 60px;
    }

    .section-title-large {
        font-size: 56px;
    }

    .projects-grid,
    .projects-gallery {
        grid-template-columns: 1fr;
    }

    .project-item.large {
        grid-column: span 1;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .album-art {
        width: 350px;
        height: 350px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .main-nav {
        padding: 20px 30px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
        padding: 8px 15px;
    }

    .page-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 20px;
    }

    .grid-one-quarter,
    .grid-one-third,
    .grid-half,
    .grid-two-thirds,
    .grid-three-quarters {
        grid-column: span 1;
    }

    .hero-banner {
        height: 400px;
    }

    .hero-title {
        font-size: 60px;
    }

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

    .page-title {
        font-size: 48px;
    }

    .section-title-large {
        font-size: 40px;
    }

    .album-art {
        width: 280px;
        height: 280px;
    }

    .album-art h3 {
        font-size: 42px;
    }

    .footer-links,
    .footer-social {
        flex-direction: column;
        gap: 20px;
    }

    .timeline {
        padding-left: 50px;
    }

    .timeline-marker {
        left: -48px;
    }

    table {
        font-size: 14px;
    }

    tbody td {
        padding: 15px 10px;
    }

    .project-filters {
        position: static;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 40px;
        letter-spacing: 4px;
    }

    .page-title {
        font-size: 36px;
    }

    .section-title-large {
        font-size: 32px;
    }

    .album-art {
        width: 240px;
        height: 240px;
    }

    .album-art h3 {
        font-size: 32px;
    }

    .media-item {
        width: 120px;
        height: 80px;
    }

    .timeline-content h3 {
        font-size: 22px;
    }
}

/* Ensure images and videos scale properly */
img,
video {
    max-width: 100%;
    height: auto;
}
