:root {
    /* Site-wide Color Palette from Design System */
    
    /* Backgrounds */
    --bg-color: #fbf7f4;
    --tile-color: #ffffff;
    --header-footer-bg: #ffffff;
    
    /* Primary and Secondary Colors */
    --primary-burgundy: #2f2f33; /* changed to slate */
    --secondary-gold: #b0b0b0; /* changeed to soft silver */
    --secondary-gold-dark: #F88C00;
    
    /* Text Colors */
    --text-color: #374151;
    --text-light: #6b7280;
    --text-dark: #1a1a1a;
    
    /* Interactive States */
    --hover-burgundy: #c1c1c1; /* changed to soft silver */
    --hover-gold: #c1c1c1; /* changed to soft silver */
    
    /* Borders and Dividers */
    --border-light: #e5e7eb;
    --border-medium: #d1d5db;
    
    /* Shadows */
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    
    /* Film-specific colors - for interests page */
    --film-dark: #1a1a1a;
    --film-medium: #2d2d2d;
    --film-light: #f0f0f0;
}

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

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Clean Header Styles - No Filmstrip */
.header {
    background-color: var(--header-footer-bg);
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.profile-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-burgundy);
}

.profile-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-burgundy);
    text-decoration: none;
}

.profile-name:hover {
    color: var(--secondary-gold);
}

/* Desktop Navigation - visible by default */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-burgundy);
}

.nav-links a.active {
    color: var(--primary-burgundy);
    font-weight: 600;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-burgundy);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.desktop-action-buttons {
    display: flex;
    gap: 1rem;
}

/* Mobile Menu - hidden by default */
.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    display: none; /* Hidden on desktop */
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--header-footer-bg);
    box-shadow: var(--shadow-hover);
    padding: 1rem 2rem;
    z-index: 1001;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--primary-burgundy);
}

.mobile-nav-links a.active {
    color: var(--primary-burgundy);
    font-weight: 600;
}

.mobile-nav-links a:last-child {
    border-bottom: none;
}

.mobile-action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

/* Updated Icon-Only Button Styles */
.btn {
    padding: 0.6rem;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.btn-primary {
    background-color: transparent;
    color: var(--primary-burgundy);
    border: 2px solid var(--primary-burgundy);
}

.btn-primary:hover {
    background-color: var(--primary-burgundy);
    color: white;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: var(--primary-burgundy);
    color: white;
    border: 2px solid var(--primary-burgundy);
}

.btn-secondary:hover {
    background-color: var(--hover-burgundy);
    border-color: var(--hover-burgundy);
    transform: translateY(-1px);
}

/* Main Content */
.main-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem 2rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 0.5rem;
    text-align: center;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--secondary-gold);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

/* Skills Section */
.skills-section {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-gold);
    margin-bottom: 2rem;
    text-align: center;
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.skill-card {
    background-color: var(--tile-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.skill-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.skill-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-burgundy);
    margin-bottom: 0.5rem;
    text-align: center;
}

.skill-sub-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--secondary-gold);
    margin-bottom: 1rem;
    text-align: center;
}

.skill-description {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.skill-highlights {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-highlights li {
    background-color: rgba(248, 140, 0, 0.1);
    color: var(--secondary-gold);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(248, 140, 0, 0.3);
}

.skill-highlights li:last-child {
    margin-bottom: 0;
}

/* Quote highlight */
.skills-quote {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1), rgba(248, 140, 0, 0.1));
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
    border: 1px solid rgba(139, 0, 0, 0.2);
}

.skills-quote-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-color);
    line-height: 1.6;
}

/* Clean Footer - No Filmstrip */
.footer {
    background-color: var(--header-footer-bg);
    border-top: 1px solid var(--border-light);
    padding: 2rem;
    margin-top: 4rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-nav a:hover {
    color: var(--secondary-gold);
    background-color: rgba(248, 140, 0, 0.1);
}

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

.footer-nav a:hover:after {
    width: 80%;
}

.footer-nav a.active {
    color: var(--secondary-gold);
    background-color: rgba(248, 140, 0, 0.1);
}

.footer-nav a.active:after {
    width: 80%;
}

.footer-copyright {
    text-align: center;
    width: 100%;
}

/* PROJECT-SPECIFIC ELEMENTS - from projects.css */

/* Project Cards - different from skill-card */
.project-card {
    background-color: var(--tile-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: box-shadow 0.3s ease;
    margin-bottom: 2rem;
}

.project-card:hover {
    box-shadow: var(--shadow-hover);
}

.project-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-gold);
    margin-bottom: 0.5rem;
}

.project-company {
    color: var(--secondary-gold);
    font-weight: 500;
    font-size: 0.95rem;
}

.project-impact {
    background-color: rgba(248, 140, 0, 0.1);
    color: var(--secondary-gold);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    border: 1px solid rgba(248, 140, 0, 0.3);
    min-width: 120px;
}

.project-description {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.project-outcomes {
    background-color: #f8fafc;
    border-left: 4px solid var(--primary-burgundy);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
}

.outcomes-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
}

.outcomes-list {
    list-style: none;
    padding: 0;
}

.outcomes-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.outcomes-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-gold);
    font-weight: bold;
}

.outcomes-list li:last-child {
    margin-bottom: 0;
}

/* Special styling for key metrics */
.metric {
    background-color: rgba(248, 140, 0, 0.1);
    color: var(--secondary-gold);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

/* EXPERIENCE-SPECIFIC ELEMENTS - from experience.css */

/* Timeline Styles - page-specific for experience page */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--secondary-gold), var(--primary-burgundy));
}

.experience-item {
    position: relative;
    margin-bottom: 3rem;
    background-color: var(--tile-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    margin-left: 1.5rem;
}

.experience-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateX(4px);
}

.experience-icon {
  position: absolute;
  left: -3.5rem;
  top: 1.4rem;
      width: 32px;
    height: 32px;
    font-size: 32px;
    align-items: center;
    justify-content: center;
  color: #6e4e2e; /* match 'Historical' title color */
}
/* commenting out experience-item::before - trying the experience-icon option instead
.experience-item::before {
    content: '🎬';
    position: absolute;
    left: -4.2rem;
    top: 1.4rem;
    width: 32px;
    height: 32px;
    font-size: 32px;
    align-items: center;
    justify-content: center;
    /* background-color: var(--secondary-gold);
    border: 3px solid var(--tile-color);
    border-radius: 50%; */
    /* box-shadow: 0 2px 4px var(--secondary-gold); */
}
*/

.company-header {
    margin-bottom: 1.5rem;
}

.company-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 0.25rem;
}

.company-description {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
}

.role {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 1.5rem;
}

.role:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.role-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.role-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-gold);
}

.role-period {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
    background-color: #f8fafc;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    border: 1px solid var(--border-light);
}

.achievements {
    list-style: none;
    padding: 0;
}

.achievements li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.achievements li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.achievements li:last-child {
    margin-bottom: 0;
}

/* Education & Certifications */
.credentials-section {
    margin-top: 4rem;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.credential-card {
    background-color: var(--tile-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: box-shadow 0.3s ease;
    text-align: center;
}

.credential-card:hover {
    box-shadow: var(--shadow-hover);
}

.credential-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
}

.credential-detail {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.credential-years {
    color: var(--text-light);
    font-size: 0.9rem;
}

.certifications-list {
    list-style: none;
    padding: 0;
}

.certifications-list li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 1rem;
}

.certifications-list li:last-child {
    margin-bottom: 0;
}

/* INTERESTS-SPECIFIC ELEMENTS - from interests.css */

/* Main Content for Interests - narrower width than default */
.main-content-narrow {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Film Strip Styles - page-specific for interests page */
.film-strip {
    background: linear-gradient(to right, 
        var(--film-dark) 0%, 
        var(--film-dark) 40px, 
        var(--film-medium) 40px, 
        var(--film-medium) calc(100% - 40px), 
        var(--film-dark) calc(100% - 40px), 
        var(--film-dark) 100%);
    padding: 20px 0;
    position: relative;
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
    max-width: 520px;
    margin: 0 auto; /* Center the film strip within the page */
}

/* Sprocket holes */
.film-strip::before,
.film-strip::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    background-color: var(--film-dark);
    z-index: 2;
}

.film-strip::before {
    left: 0;
    background-image: 
        radial-gradient(circle at 20px 30px, var(--bg-color) 6px, var(--film-dark) 7px),
        radial-gradient(circle at 20px 80px, var(--bg-color) 6px, var(--film-dark) 7px),
        radial-gradient(circle at 20px 130px, var(--bg-color) 6px, var(--film-dark) 7px),
        radial-gradient(circle at 20px 180px, var(--bg-color) 6px, var(--film-dark) 7px),
        radial-gradient(circle at 20px 230px, var(--bg-color) 6px, var(--film-dark) 7px),
        radial-gradient(circle at 20px 280px, var(--bg-color) 6px, var(--film-dark) 7px),
        radial-gradient(circle at 20px 330px, var(--bg-color) 6px, var(--film-dark) 7px),
        radial-gradient(circle at 20px 380px, var(--bg-color) 6px, var(--film-dark) 7px),
        radial-gradient(circle at 20px 430px, var(--bg-color) 6px, var(--film-dark) 7px),
        radial-gradient(circle at 20px 480px, var(--bg-color) 6px, var(--film-dark) 7px),
        radial-gradient(circle at 20px 530px, var(--bg-color) 6px, var(--film-dark) 7px),
        radial-gradient(circle at 20px 580px, var(--bg-color) 6px, var(--film-dark) 7px);
    background-repeat: repeat-y;
    background-size: 40px 50px;
}

.film-strip::after {
    right: 0;
    background-image: 
        radial-gradient(circle at 20px 30px, var(--bg-color) 6px, var(--film-dark) 7px),
        radial-gradient(circle at 20px 80px, var(--bg-color) 6px, var(--film-dark) 7px),
        radial-gradient(circle at 20px 130px, var(--bg-color) 6px, var(--film-dark) 7px),
        radial-gradient(circle at 20px 180px, var(--bg-color) 6px, var(--film-dark) 7px),
        radial-gradient(circle at 20px 230px, var(--bg-color) 6px, var(--film-dark) 7px),
        radial-gradient(circle at 20px 280px, var(--bg-color) 6px, var(--film-dark) 7px),
        radial-gradient(circle at 20px 330px, var(--bg-color) 6px, var(--film-dark) 7px),
        radial-gradient(circle at 20px 380px, var(--bg-color) 6px, var(--film-dark) 7px),
        radial-gradient(circle at 20px 430px, var(--bg-color) 6px, var(--film-dark) 7px),
        radial-gradient(circle at 20px 480px, var(--bg-color) 6px, var(--film-dark) 7px),
        radial-gradient(circle at 20px 530px, var(--bg-color) 6px, var(--film-dark) 7px),
        radial-gradient(circle at 20px 580px, var(--bg-color) 6px, var(--film-dark) 7px);
    background-repeat: repeat-y;
    background-size: 40px 50px;
}

/* Film Frame */
.film-frame {
    background-color: var(--film-light);
    margin: 20px 60px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.film-frame:hover {
    transform: scale(1.02);
    box-shadow: inset 0 0 10px rgba(0,0,0,0.3), 0 8px 25px rgba(0,0,0,0.2);
}

.film-frame-image {
    width: 100%;
    height: 350px;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
    position: relative;
    filter: sepia(0.1) contrast(1.1);
}

/* Placeholder image styling */
.placeholder-image {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--secondary-gold-dark);
    background: linear-gradient(45deg, #e0e0e0, #f0f0f0);
}

.film-frame-content {
    padding: 1.5rem;
    background-color: var(--film-light);
}

.film-frame-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-burgundy);
    margin-bottom: 0.75rem;
    text-align: center;
}

.film-frame-description {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.9rem;
}

.quote {
    font-style: italic;
    color: var(--secondary-gold-dark);
    margin-top: 0.5rem;
    text-align: center;
    font-size: 0.85rem;
}

/* ABOUT-SPECIFIC ELEMENTS - from about.css */

/* Main Content for About - narrower width */
.main-content-about {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Content Tile - different from other card types */
.content-tile {
    background-color: var(--tile-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: box-shadow 0.3s ease;
    margin-bottom: 2rem;
}

.content-tile:hover {
    box-shadow: var(--shadow-hover);
}

.section-content {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1rem;
}

.section-content p {
    margin-bottom: 1.5rem;
}

.section-content p:last-child {
    margin-bottom: 0;
}

.highlight-link {
    color: var(--secondary-gold);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.highlight-link:hover {
    border-bottom-color: var(--secondary-gold);
}

/* Responsive Design */
@media (max-width: 968px) {
    /* Hide desktop nav, show mobile menu */
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .main-content {
        padding: 2rem 1rem;
    }

    .main-content-narrow {
        padding: 2rem 1rem;
        max-width: 520px;
    }

    .main-content-about {
        padding: 2rem 1rem;
        max-width: 520px;
    }

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

    .skill-card {
        padding: 1.5rem;
    }

    .mobile-action-buttons .btn {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    /* Project-specific responsive */
    .project-card {
        padding: 1.5rem;
    }

    .project-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .project-impact {
        align-self: flex-start;
    }

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

    /* Experience-specific responsive */
    .timeline {
        padding-left: 1rem;
    }

    .timeline::before {
        left: 0.5rem;
    }

    .experience-item {
        margin-left: 1rem;
        padding: 1.5rem;
    }

    .experience-item::before {
        left: -2.5rem;
    }

    .role-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Interests-specific responsive */
    .film-frame {
        margin: 15px 40px;
    }

    .film-strip::before,
    .film-strip::after {
        width: 30px;
        background-size: 30px 40px;
    }

    .film-strip::before {
        background-image: 
            radial-gradient(circle at 15px 30px, var(--bg-color) 6px, var(--film-dark) 7px),
            radial-gradient(circle at 15px 80px, var(--bg-color) 6px, var(--film-dark) 7px),
            radial-gradient(circle at 15px 130px, var(--bg-color) 6px, var(--film-dark) 7px),
            radial-gradient(circle at 15px 180px, var(--bg-color) 6px, var(--film-dark) 7px),
            radial-gradient(circle at 15px 230px, var(--bg-color) 6px, var(--film-dark) 7px),
            radial-gradient(circle at 15px 280px, var(--bg-color) 6px, var(--film-dark) 7px),
            radial-gradient(circle at 15px 330px, var(--bg-color) 6px, var(--film-dark) 7px),
            radial-gradient(circle at 15px 380px, var(--bg-color) 6px, var(--film-dark) 7px),
            radial-gradient(circle at 15px 430px, var(--bg-color) 6px, var(--film-dark) 7px),
            radial-gradient(circle at 15px 480px, var(--bg-color) 6px, var(--film-dark) 7px),
            radial-gradient(circle at 15px 530px, var(--bg-color) 6px, var(--film-dark) 7px),
            radial-gradient(circle at 15px 580px, var(--bg-color) 6px, var(--film-dark) 7px);
    }

    .film-strip::after {
        background-image: 
            radial-gradient(circle at 15px 30px, var(--bg-color) 6px, var(--film-dark) 7px),
            radial-gradient(circle at 15px 80px, var(--bg-color) 6px, var(--film-dark) 7px),
            radial-gradient(circle at 15px 130px, var(--bg-color) 6px, var(--film-dark) 7px),
            radial-gradient(circle at 15px 180px, var(--bg-color) 6px, var(--film-dark) 7px),
            radial-gradient(circle at 15px 230px, var(--bg-color) 6px, var(--film-dark) 7px),
            radial-gradient(circle at 15px 280px, var(--bg-color) 6px, var(--film-dark) 7px),
            radial-gradient(circle at 15px 330px, var(--bg-color) 6px, var(--film-dark) 7px),
            radial-gradient(circle at 15px 380px, var(--bg-color) 6px, var(--film-dark) 7px),
            radial-gradient(circle at 15px 430px, var(--bg-color) 6px, var(--film-dark) 7px),
            radial-gradient(circle at 15px 480px, var(--bg-color) 6px, var(--film-dark) 7px),
            radial-gradient(circle at 15px 530px, var(--bg-color) 6px, var(--film-dark) 7px),
            radial-gradient(circle at 15px 580px, var(--bg-color) 6px, var(--film-dark) 7px);
    }

    /* About-specific responsive */
    .content-tile {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .profile-name {
        font-size: 1.1rem;
    }

    .page-title {
        font-size: 1.75rem;
    }

    .skills-quote {
        padding: 1.5rem;
    }

    /* Experience-specific small screen */
    .experience-item {
        padding: 1.25rem;
    }

    .company-name {
        font-size: 1.2rem;
    }

    .role-title {
        font-size: 1.1rem;
    }

    /* Interests-specific small screen */
    .film-frame {
        margin: 10px 30px;
    }

    .film-strip::before,
    .film-strip::after {
        width: 25px;
        background-size: 25px 35px;
    }

    .film-strip::before {
        background-image: 
            radial-gradient(circle at 12.5px 30px, var(--bg-color) 5px, var(--film-dark) 6px),
            radial-gradient(circle at 12.5px 80px, var(--bg-color) 5px, var(--film-dark) 6px),
            radial-gradient(circle at 12.5px 130px, var(--bg-color) 5px, var(--film-dark) 6px),
            radial-gradient(circle at 12.5px 180px, var(--bg-color) 5px, var(--film-dark) 6px),
            radial-gradient(circle at 12.5px 230px, var(--bg-color) 5px, var(--film-dark) 6px),
            radial-gradient(circle at 12.5px 280px, var(--bg-color) 5px, var(--film-dark) 6px),
            radial-gradient(circle at 12.5px 330px, var(--bg-color) 5px, var(--film-dark) 6px),
            radial-gradient(circle at 12.5px 380px, var(--bg-color) 5px, var(--film-dark) 6px),
            radial-gradient(circle at 12.5px 430px, var(--bg-color) 5px, var(--film-dark) 6px),
            radial-gradient(circle at 12.5px 480px, var(--bg-color) 5px, var(--film-dark) 6px),
            radial-gradient(circle at 12.5px 530px, var(--bg-color) 5px, var(--film-dark) 6px),
            radial-gradient(circle at 12.5px 580px, var(--bg-color) 5px, var(--film-dark) 6px);
    }

    .film-strip::after {
        background-image: 
            radial-gradient(circle at 12.5px 30px, var(--bg-color) 5px, var(--film-dark) 6px),
            radial-gradient(circle at 12.5px 80px, var(--bg-color) 5px, var(--film-dark) 6px),
            radial-gradient(circle at 12.5px 130px, var(--bg-color) 5px, var(--film-dark) 6px),
            radial-gradient(circle at 12.5px 180px, var(--bg-color) 5px, var(--film-dark) 6px),
            radial-gradient(circle at 12.5px 230px, var(--bg-color) 5px, var(--film-dark) 6px),
            radial-gradient(circle at 12.5px 280px, var(--bg-color) 5px, var(--film-dark) 6px),
            radial-gradient(circle at 12.5px 330px, var(--bg-color) 5px, var(--film-dark) 6px),
            radial-gradient(circle at 12.5px 380px, var(--bg-color) 5px, var(--film-dark) 6px),
            radial-gradient(circle at 12.5px 430px, var(--bg-color) 5px, var(--film-dark) 6px),
            radial-gradient(circle at 12.5px 480px, var(--bg-color) 5px, var(--film-dark) 6px),
            radial-gradient(circle at 12.5px 530px, var(--bg-color) 5px, var(--film-dark) 6px),
            radial-gradient(circle at 12.5px 580px, var(--bg-color) 5px, var(--film-dark) 6px);
    }

    /* Projects-specific small screen */
    .project-outcomes {
        padding: 1rem;
    }
}

/* =========================
   PAGE-SPECIFIC MOVIE THEMES
   Add this section to the end of your styles2.css file
   ========================= */

/* Home Page - Site Nav */

.hero-main {
  font-family: 'Playfair+Display', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fdf6e3;
  /* color: #2c3e50; */
  /* margin-bottom: 0.5rem; */
}

.hero-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  color: #fdf6e3;
    opacity: 0.9;
}

/* hero banner 2 */

.hero-banner.directed-title {
  background: radial-gradient(ellipse at center bottom, #778899 0%, #0a1b25 100%);
  color: #ffffff;
  padding: 3.5rem 2rem;
  text-align: center;
  font-family: 'Playfair+Display', sans-serif;
  letter-spacing: 1px;
}

.directed-title .hero-tagline {
  font-size: 1rem;
  opacity: 0.6;
  margin-bottom: 0.5rem;
    color: #ffffff;
}

.directed-title .hero-main {
  font-size: 2.5rem;
  font-weight: 600;
  color: #ffffff;
}

/* Hero title levels */
.hero-name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-presents {
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-size: 1.3rem;
    color: #ffffff;
  /* opacity: 0.85; */
  /* font-family: 'Manrope', sans-serif; */
}


/* home page nav tiles */

.nav-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.nav-tile {
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.nav-tile:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.nav-tile-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
    text-transform: uppercase;
    line-height: 1;
}

.nav-tile-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.8;
    font-weight: 500;
}

.nav-tile-description {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.85;
}

/* Individual Genre Styles */
.nav-tile-projects {
    background: linear-gradient(135deg, #fdf5f4 0%, #fbeaea 100%);
    color: #1d1d1d;
    border-left: 6px solid #d62828;
}

.nav-tile-projects .nav-tile-title {
    font-family: 'Bebas Neue', sans-serif;
    color: #d62828;
    font-style: italic;
    letter-spacing: 3px;
}

.nav-tile-skills {
    background: linear-gradient(135deg, #e9f1f5 0%, #ddeaf0 100%);
    color: #202020;
    border-left: 6px solid #00748c;
}

.nav-tile-skills .nav-tile-title {
    font-family: 'PT Serif', serif;
    color: #00748c;
    font-weight: 700;
}

.nav-tile-experience {
    background: linear-gradient(135deg, #fdf6e3 0%, #f7edd1 100%);
    color: #2c1d0c;
    border-left: 6px solid #6e4e2e;
}

.nav-tile-experience .nav-tile-title {
    font-family: 'Cinzel', serif;
    color: #6e4e2e;
    font-weight: 600;
}

.nav-tile-interests {
    background: linear-gradient(135deg, #fff5e5 0%, #ffecd1 100%);
    color: #292929;
    border-left: 6px solid #f77f00;
}

.nav-tile-interests .nav-tile-title {
    font-family: 'Pacifico', cursive;
    color: #f77f00;
    transform: rotate(-2deg);
    display: inline-block;
}

.nav-tile-about {
    background: linear-gradient(135deg, #e3f0f7 0%, #d1e7f0 100%);
    color: #111111;
    border-left: 6px solid #2c3e50;
}

.nav-tile-about .nav-tile-title {
    font-family: 'Playfair+Display', sans-serif;
    color: #2c3e50;
    font-weight: 700;
}

/* Projects Page - Action Genre */
.page-projects {
    background-color: #fdf5f4;
}

.page-projects .main-content {
    color: #1d1d1d;
}

.page-projects .page-title {
    font-family: 'Bebas Neue', sans-serif;
    color: #d62828;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    font-style: italic;
}

.page-projects .page-subtitle {
    font-family: 'Bebas Neue', sans-serif;
    color: #d62828;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-style: italic;
}

.page-projects .project-title {
    color: #d62828;
        font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-style: italic;
}

.page-projects .project-company {
    color: #1d1d1d;
        font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-style: italic;
}

.page-projects .project-impact {
    background-color: rgba(214, 40, 40, 0.1);
    color: #d62828;
    border: 1px solid rgba(214, 40, 40, 0.3);
}

.page-projects .outcomes-title {
    color: #d62828;
}

.page-projects .project-outcomes {
    border-left: 4px solid #d62828;
}

.page-projects .outcomes-list li:before {
    color: #d62828;
}

.page-projects .metric {
    background-color: rgba(214, 40, 40, 0.1);
    color: #d62828;
}

/* Skills Page - Documentary Genre */
.page-skills {
    background-color: #e9f1f5;
}

.page-skills .main-content {
    color: #202020;
}

.page-skills .page-title {
    font-family: 'PT+Serif', serif;
    color: #00748c;
    font-weight: 700;
}

.page-skills .page-subtitle {
    font-family: 'PT+Serif', serif;
    color: #00748c;
}

.page-skills .section-title {
    font-family: 'PT+Serif', serif;
    color: #00748c;
}

.page-skills .skill-title {
    font-family: 'PT+Serif', serif;
    color: #202020;
}

.page-skills .skill-sub-title {
    font-family: 'PT+Serif', serif;
    color: #00748c;
}

.page-skills .skill-highlights li {
    background-color: rgba(0, 116, 140, 0.1);
    color: #00748c;
    border: 1px solid rgba(0, 116, 140, 0.3);
}

.page-skills .skills-quote {
    background: linear-gradient(135deg, rgba(32, 32, 32, 0.1), rgba(0, 116, 140, 0.1));
    border: 1px solid rgba(32, 32, 32, 0.2);
}

/* Experience Page - Historical Genre */
.page-experience {
    background-color: #fdf6e3;
}

.page-experience .main-content {
    color: #2c1d0c;
}

.page-experience .page-title {
    font-family: 'Cinzel', serif;
    color: #6e4e2e;
    font-weight: 600;
}

.page-experience .page-subtitle {
    color: #6e4e2e;
    font-family: 'Cinzel', serif;
    font-weight: 400;
}

.page-experience .timeline::before {
    background: linear-gradient(180deg, #6e4e2e, #2c1d0c);
}

.page-experience .company-name {
    color: #2c1d0c;
    font-family: 'Cinzel', serif;
    font-weight: 600;
}

.page-experience .role-title {
    color: #6e4e2e;
    font-family: 'Cinzel', serif;
    font-weight: 500;
}

.page-experience .achievements li:before {
    color: #6e4e2e;
}

.page-experience .metric {
    background-color: rgba(110, 78, 46, 0.1);
    color: #6e4e2e;
}

.page-experience .section-title {
    color: #6e4e2e;
    font-family: 'Cinzel', serif;
    font-weight: 600;
}

.page-experience .credential-title {
    color: #2c1d0c;
    font-family: 'Cinzel', serif;
    font-weight: 600;
}

/* Interests Page - Comedy Genre */
.page-interests {
    background-color: #fff5e5;
}

.page-interests .main-content {
    color: #292929;
}

.page-interests .page-title {
    font-family: 'Pacifico', cursive;
    color: #f77f00;
    font-weight: 400;
    transform: rotate(-2deg);
    display: inline-block;
     /* Re-center the rotated title */
    position: relative;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
}

.page-interests .page-subtitle {
    color: #f77f00;
        font-family: 'Pacifico', cursive;
    font-weight: 300;
}

.page-interests .film-frame-title {
    color: #292929;
        font-family: 'Pacifico', cursive;
    font-weight: 400;
}

.page-interests .quote {
    color: #f77f00;
}

.page-interests .placeholder-image {
    color: #f77f00;
}

/* About Page - Biopic Genre */
.page-about {
    background-color: #e3f0f7;
}

.page-about .main-content {
    color: #111111;
}

.page-about .page-title {
    font-family: 'Playfair+Display', sans-serif;
    color: #2c3e50;
    font-weight: 700;
}

.page-about .page-subtitle {
    color: var(--secondary-gold);
}

.page-about .highlight-link {
    color: #2c3e50;
}

.page-about .highlight-link:hover {
    border-bottom-color: #2c3e50;
}

/* Universal overrides for page themes - applies to all themed pages */
[class*="page-"] .skill-card,
[class*="page-"] .project-card,
[class*="page-"] .experience-item,
[class*="page-"] .credential-card,
[class*="page-"] .content-tile {
    background-color: var(--tile-color); /* Keep white backgrounds */
}
