/* ============================== */
/* BACKGROUND */
/* ============================== */

  body {
    background-image: url('images/aboutmebg3.gif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
  }

/* ============================== */
/* ABOUT PAGE STYLES */
/* ============================== */

  /* SIMPLE HEADER - the top section with title and nav */
  .simple-header {
    text-align: center;
    padding: 10px 10px 10px 10px;
    background-size: 40%;
    background-position: center;
    border-bottom: 4px dotted white;
  }
  /* HEADER TITLE - "About Me" text */
  .simple-header h1 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 48px;
    color: #3a3530;
    letter-spacing: 4px;
  }
  
  /* NAV BAR - the black box with links */
  .simple-nav {
    margin-top: -20px;
    background: #000000;
    padding: 10px 30px;
    border-radius: 10px;
    display: inline-block;
    opacity: 0.5;
  }
  
  /* NAV LINKS - home, about, blog */
  .simple-nav a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 15px;
    transition: all 0.3s ease;
  }
  
  /* NAV LINKS HOVER - what happens when you hover over links */
  .simple-nav a:hover {
    color: #3a3530;
    border-bottom: 1px solid #8b7564;
  }

  /* MAIN CONTENT AREA - the container for everything below header */
 .simple-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
  }

  /* ABOUT CONTAINER - holds profile box and photo side by side */
  .about-container {
    display: flex;
    flex-direction: row-reverse;  /* Add this line */
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 50px;
  }

   /* PROFILE BOX - the box with your info (name, pronouns, etc) */
  .profile-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid #c4b5a0;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
  }

  .profile-header {
    grid-column: 1 / -1;
    text-align: center;
    font-family: 'Cinzel Decorative', serif;
    font-size: 20px;
    color: #3a3530;
    letter-spacing: 3px;
    padding-bottom: 20px;
    margin-bottom: 25px;
    border-bottom: 2px solid #c4b5a0;
  }

  /* PROFILE ITEM - each row (name, pronouns, birthday, etc) */
  .profile-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
  }

  /* PROFILE LABEL - the small text (name, pronouns, birthday) */
  .profile-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: #8b7564;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
  }

  /* PROFILE VALUE - the actual info (▸ Your Name, ▸ she/her, etc) */
  .profile-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: #3a3530;
    padding-left: 10px;
  }

  /* PROFILE PHOTO - your photo on the right side */
  .profile-photo {
    flex: 0 0 300px;
  }

  /* PROFILE PHOTO IMAGE - the actual img element */
  .profile-photo img {
    width: 100%;
    height: 455px;
    object-fit: cover;
  }

  /* ABOUT TEXT SECTION - the box with your "About Me" text */
  .about-text {
    flex: 1;
    background: rgba(255, 255, 255, 0.7);
    border: 4px solid #816082;
    border-radius: 25px;
    padding: 30px;
    margin-bottom: 50px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

  /* ABOUT TEXT HEADING - "A Bit About Me" */
  .about-text h2 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 28px;
    color: #3a3530;
    margin-bottom: 20px;
    letter-spacing: 2px;
  }
  /* ABOUT TEXT PARAGRAPHS - your actual about me text */
  .about-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: #3a3530;
    line-height: 1.8;
  }

/* QUIZZES */
.quiz-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
  }

  .quiz-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: #8b7564;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
  }

  .quiz-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: #3a3530;
    padding-left: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .quiz-value:hover {
    color: #8b7564;
    text-decoration: underline;
  }
  
  /* TRINKETS */
  /* - width: 100px = size of the image (increase for bigger) */
  /* - right: 50px = distance from right edge (increase to move left) */
  /* - margin-top: -80px = how high up it sits (more negative = higher up) */
  /* - rotate(-15deg) = angle of rotation (change the number) */
  
    .about-trinket {
    position: absolute;
    width: 350px;
    right: 380px;
    margin-top: -110px;
    transform: rotate(-15deg);
    pointer-events: none;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
  }
  
    .about-trinket-2 {
    position: absolute;
    width: 250px;
    right: 1230px;
    margin-top: -690px;
    transform: rotate(0deg);
    pointer-events: none;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
  }
  
  /* MOBILE */
  @media (max-width: 800px) {
    .about-container {
      flex-direction: column;
    }

    .profile-photo {
      flex: 1;
      width: 100%;
    }

    .profile-photo img {
      height: 300px;
    }

    .profile-box {
      grid-template-columns: 1fr;
    }
  }