/* Extracted from public/resume.html (issue #6).
 * Page-specific styles. Loaded after style.css so it can override
 * site-wide rules; future passes (issue #5) will deduplicate the
 * nav/header/footer rules that overlap with style.css. */

    * {
      box-sizing: border-box;
    }
    
    body {
      margin: 0;
      padding: 0;
      width: 100%;
      overflow-x: hidden;
    }
    
    .resume-page {
      background: #f5ecd7 url('assets/comic-paper-bk.png') repeat;
      color: #2d1c0b;
      min-height: 100vh;
      padding: 1rem 0;
      margin: 0;
      width: 100%;
      overflow-x: hidden;
    }
    
    .resume-container {
      max-width: 900px;
      width: 100%;
      margin: 0 auto;
      padding: 0 1rem;
    }
    
    .resume-header {
      text-align: center;
      margin-bottom: 2rem;
      padding: 1.5rem;
      background: rgba(255,255,255,0.85);
      border-radius: 12px;
      border: 2px solid #e0c48f;
      box-shadow: 2px 4px 12px rgba(80,60,20,0.07);
      width: 100%;
    }
    
    .resume-header h1 {
      font-family: 'Orbitron', Arial, sans-serif;
      font-size: 2.5rem;
      color: #2d1c0b;
      margin-bottom: 0.5rem;
      text-shadow: none;
    }
    
    .resume-header .subtitle {
      font-family: 'Exo 2', Arial, sans-serif;
      font-size: 1.2rem;
      color: #a67c52;
      margin-bottom: 1rem;
    }
    
    .contact-info {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
      font-family: 'Exo 2', Arial, sans-serif;
    }
    
    .contact-info span {
      color: #2d1c0b;
    }
    
    .epk-link-container {
      margin-top: 1.5rem;
      text-align: center;
    }
    
    .epk-link {
      display: inline-block;
      background: linear-gradient(135deg, #a67c52, #8b6914);
      color: #fff;
      padding: 1rem 2rem;
      border-radius: 12px;
      text-decoration: none;
      font-family: 'Exo 2', Arial, sans-serif;
      font-weight: 700;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(166, 124, 82, 0.3);
      border: 2px solid #e0c48f;
    }
    
    .epk-link:hover {
      background: linear-gradient(135deg, #8b6914, #6b4f0f);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(166, 124, 82, 0.4);
    }
    
    .epk-link:active {
      transform: translateY(0);
    }
    
    .resume-section {
      margin-bottom: 2rem;
      background: rgba(255,255,255,0.6);
      padding: 1.5rem;
      border-radius: 8px;
      border: 1px solid #e0c48f;
      box-shadow: 1px 2px 8px rgba(80,60,20,0.05);
      width: 100%;
    }
    
    .resume-section h2 {
      font-family: 'Orbitron', Arial, sans-serif;
      font-size: 1.8rem;
      color: #2d1c0b;
      margin-bottom: 1.5rem;
      border-bottom: 2px solid #a67c52;
      padding-bottom: 0.5rem;
    }
    
    .job-entry {
      margin-bottom: 1.5rem;
      padding: 1rem;
      background: rgba(255,255,255,0.4);
      border-radius: 6px;
      border: 1px solid #e0c48f;
      width: 100%;
    }
    
    .job-header {
      margin-bottom: 1rem;
    }
    
    .job-title {
      font-family: 'Exo 2', Arial, sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: #2d1c0b;
      margin-bottom: 0.3rem;
    }
    
    .company-info {
      font-family: 'Exo 2', Arial, sans-serif;
      font-size: 1.1rem;
      color: #a67c52;
      margin-bottom: 0.3rem;
    }
    
    .job-dates {
      font-family: 'Exo 2', Arial, sans-serif;
      font-style: italic;
      color: #8b6914;
      font-size: 0.95rem;
    }
    
    .job-description {
      font-family: 'Exo 2', Arial, sans-serif;
      line-height: 1.6;
      color: #2d1c0b;
      word-wrap: break-word;
      overflow-wrap: break-word;
      hyphens: auto;
    }
    
    .job-description ul {
      margin: 1rem 0;
      padding-left: 1.5rem;
      width: 100%;
    }
    
    .job-description li {
      margin-bottom: 0.8rem;
      list-style-type: none;
      position: relative;
      word-wrap: break-word;
      overflow-wrap: break-word;
      hyphens: auto;
      width: 100%;
    }
    
    .job-description li:before {
      content: "▸";
      color: #a67c52;
      font-weight: bold;
      position: absolute;
      left: -1rem;
    }
    
    .skills-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
      margin-top: 1rem;
      width: 100%;
    }
    
    .skill-category {
      background: rgba(255,255,255,0.4);
      padding: 1rem;
      border-radius: 6px;
      border: 1px solid #e0c48f;
    }
    
    .skill-category h3 {
      font-family: 'Exo 2', Arial, sans-serif;
      color: #2d1c0b;
      margin-bottom: 0.5rem;
      font-size: 1.1rem;
    }
    
    .skill-list {
      font-family: 'Exo 2', Arial, sans-serif;
      color: #2d1c0b;
      font-size: 0.9rem;
      line-height: 1.4;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }
    
    .job-inline-image {
      float: right;
      margin: 0 0 1rem 1rem;
      border-radius: 8px;
      box-shadow: 2px 4px 12px rgba(80,60,20,0.15);
      border: 2px solid #e0c48f;
      max-width: 200px;
      width: 100%;
      height: auto;
      clear: right;
    }
    
    .image-showcase {
      margin-bottom: 2rem;
      background: rgba(255,255,255,0.7);
      padding: 2rem;
      border-radius: 12px;
      border: 2px solid #a67c52;
      box-shadow: 2px 4px 12px rgba(80,60,20,0.1);
      text-align: center;
      width: 100%;
    }
    
    .showcase-image {
      max-width: 100%;
      width: auto;
      height: auto;
      max-height: 400px;
      border-radius: 8px;
      box-shadow: 2px 4px 12px rgba(80,60,20,0.15);
      border: 2px solid #e0c48f;
      margin-bottom: 1rem;
    }
    
    .showcase-caption {
      font-family: 'Exo 2', Arial, sans-serif;
      font-style: italic;
      color: #4b2e0e;
      font-size: 1.1rem;
      line-height: 1.5;
      max-width: 600px;
      margin: 0 auto;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }
    
    .back-link {
      position: fixed;
      top: 2rem;
      left: 2rem;
      background: #a67c52;
      color: #fff;
      padding: 0.8rem 1.2rem;
      border-radius: 8px;
      text-decoration: none;
      font-family: 'Bangers', Arial, sans-serif;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      z-index: 1000;
    }
    
    .back-link:hover {
      background: #8b6914;
      transform: translateY(-2px);
    }
    
    .summary-text {
      font-family: 'Exo 2', Arial, sans-serif;
      line-height: 1.6;
      color: #2d1c0b;
      font-size: 1.1rem;
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }
    
    blockquote {
      border-left: 4px solid #a67c52;
      padding-left: 1rem;
      margin: 1rem 0;
      font-style: italic;
      color: #4b2e0e;
    }
    
    @media (max-width: 768px) {
      .resume-container {
        padding: 0 0.5rem;
        max-width: 100%;
        width: calc(100% - 1rem);
      }
      
      .resume-header {
        padding: 1rem;
        margin-bottom: 1rem;
        width: 100%;
      }
      
      .resume-header h1 {
        font-size: 1.8rem;
        word-wrap: break-word;
      }
      
      .contact-info {
        flex-direction: column;
        gap: 0.5rem;
      }
      
      .epk-link {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
      }
      
      .back-link {
        position: static;
        display: block;
        width: fit-content;
        margin: 1rem auto 2rem;
      }
      
      .skills-grid {
        grid-template-columns: 1fr;
        width: 100%;
      }
      
      .resume-section {
        padding: 1rem;
        margin-bottom: 1rem;
        width: 100%;
      }
      
      .job-entry {
        padding: 0.8rem;
        margin-bottom: 1rem;
        width: 100%;
      }
      
      .job-description li {
        font-size: 0.9rem;
        line-height: 1.5;
        word-break: break-word;
      }
      
      .job-inline-image {
        max-width: 150px;
        margin: 0 0 1rem 0.5rem;
      }
      
      .image-showcase {
        padding: 1.5rem;
      }
      
      .showcase-image {
        max-height: 300px;
      }
      
      .showcase-caption {
        font-size: 1rem;
      }
    }
    
    @media (max-width: 480px) {
      .resume-container {
        padding: 0 0.25rem;
        width: calc(100% - 0.5rem);
      }
      
      .resume-header h1 {
        font-size: 1.5rem;
      }
      
      .job-description li {
        font-size: 0.85rem;
      }
      
      .job-inline-image {
        float: none;
        display: block;
        margin: 0 auto 1rem auto;
        max-width: 120px;
      }
      
      .image-showcase {
        padding: 1rem;
        margin-bottom: 1.5rem;
      }
      
      .showcase-image {
        max-height: 250px;
      }
      
      .showcase-caption {
        font-size: 0.95rem;
      }
    }

    /* Footer Navigation Styles */
    .site-footer {
      text-align: center;
      margin: 3rem 0 0 0;
      padding: 2rem 0;
      border-top: 3px solid #a67c52;
      background: rgba(245, 236, 215, 0.9);
    }
    
    .footer-nav {
      margin-bottom: 2rem;
    }
    
    .nav-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      width: 30px;
      height: 30px;
      justify-content: space-between;
      margin: 0 auto 1rem auto;
    }
    
    .nav-toggle span {
      width: 100%;
      height: 3px;
      background: #a67c52;
      border-radius: 2px;
      transition: all 0.3s ease;
    }
    
    .nav-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-toggle.active span:nth-child(2) {
      opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(8px, -8px);
    }
    
    .nav-menu {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
    }
    
    .nav-button {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      padding: 1rem 1.5rem;
      background: rgba(245, 236, 215, 0.9);
      border: 2px solid #a67c52;
      border-radius: 10px;
      text-decoration: none;
      color: #2d1c0b;
      font-family: 'Exo 2', sans-serif;
      font-weight: 600;
      transition: all 0.3s ease;
      min-width: 80px;
    }
    
    .nav-button:hover, .nav-button.active {
      background: #a67c52;
      color: #f5ecd7;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }
    
    .nav-icon {
      font-size: 1.5rem;
    }
    
    .nav-text {
      font-size: 0.9rem;
    }
    
    .social-links {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      margin: 2rem 0;
    }
    
    .social-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      background: rgba(255, 255, 255, 0.9);
      border: 2px solid #a67c52;
      border-radius: 50%;
      transition: all 0.3s ease;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .social-icon:hover {
      background: rgba(255, 255, 255, 1);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    
    .social-icon img {
      width: 24px;
      height: 24px;
      transition: opacity 0.3s ease;
    }
    
    .social-icon:hover img {
      opacity: 0.8;
    }

    @media (max-width: 768px) {
      /* Mobile Navigation */
      .nav-toggle {
        display: flex;
      }
      
      .nav-menu {
        display: none;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
      }
      
      .nav-menu.active {
        display: flex;
      }
      
      .nav-button {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }
      
      .social-links {
        gap: 1rem;
      }
      
      .social-icon {
        width: 40px;
        height: 40px;
      }
    }
  
