:root {
    --accent: #8B1E3F;
    --text: #35281D;
  }
  
  body {
    background-image: url(../images/background.png);
    margin: 0;
    font-family: "sofia-pro-soft", sans-serif;
    color: var(--text);
    opacity: 0;
    animation: fadeInPage 0.9s ease forwards;
  }

  @keyframes fadeInPage {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .fade-slide {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlide 1s ease forwards;
  }
  
  @keyframes fadeSlide {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .delay-1 { animation-delay: 0.3s; }
  .delay-2 { animation-delay: 0.6s; }
  
  .logo {
    width: clamp(70px, 10vw, 140px);
  }
  
  .logo-link {
    position: absolute;
    top: 14px;
    left: 20px;
  }
  
  .site-header {
    background-image: url(../images/background2.png);
    padding: 24px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }
  
  .header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .site-title {
    font-family: "skippy-sharp", sans-serif;
    font-size: 5.8rem;
    margin: 0 0 8px;
  }
  
  .nav-buttons {
    display: flex;
    gap: 12px;
  }
  
  .nav-buttons button {
    font-family: "sofia-pro-soft", sans-serif;
    padding: 9px 16px;
    border: none;
    background: var(--accent);
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.25s ease;
  }

  .nav-buttons button:hover {
    transform: translateY(-3px) scale(1.05);
    background-color: #A62245;
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
  }
  
  .subpage-content {
    max-width: 900px;
    margin: 195px auto 60px;
    padding: 20px;
    text-align: center;
  }

  .about-container {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
  }
  
  .about-photo {
    width: 320px;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }
  
  .about-text {
    max-width: 450px;
    text-align: left;
    font-size: 1.2rem;
    line-height: 1.6;
  }

  .about-text h3 {
    margin-top: -30px; 
  }  
  
  .resume-content h2 {
    margin-bottom: 20px;
  }
  
  .resume-download {
    display: inline-block;
    padding: 10px 18px;
    background: var(--accent);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  
  .resume-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }
  
  .resume-images img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  }
 
  .contact-form {
    max-width: 500px;
    margin: auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--accent);
    border-radius: 6px;
    font-size: 1rem;
  }
  
  .contact-submit {
    padding: 12px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.25s;
  }
  
  .contact-submit:hover {
    transform: translateY(-3px) scale(1.03);
  }

  .image-container {
    display: flex;
    justify-content: center;   
    align-items: center;   
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 230px;
  }

  .image-stack {
    justify-content: center;  
    display: grid;
  }

  .image-card {
    width: 80%;
    overflow: hidden;
    border-radius: 8px;
    background: #eee;
    box-shadow: 0 6px 18px rgba(20,20,20,0.06);
  }

  .image-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  }

  @media (min-width: 900px) {
    .image-card { height: 420px; }
    .image-card img { height: 100%; }
  }

  p {
    font-family: "sofia-pro-soft", sans-serif;
    color: var(--text);
    text-align: left;
    padding-right: 60px;
    padding-bottom: 20px;
    font-size: 1.2rem;
    line-height: 1.6;
  }
  