/* --- Variables for Easy Editing --- */
/* --- Retro Color Variables --- */
:root {
  --bg-retro: #3d342d;           /* Deep espresso background */
  --paper-cream: #f4ecd8;        /* Vintage aged paper */
  --header-orange: #d46a3d;      /* Burnt orange */
  --accent-green: #838b47;       /* Avocado green */
  --accent-mustard: #e6b32e;     /* Mustard yellow */
  --border-dark: #5a4634;        /* Dark chocolate border */
  --text-main: #000000;          /* Dark brown text */
  --footer-brown: #a67c52;       /* Warm tan footer */
  --shadow-color: rgba(0, 0, 0, 0.4);
}

/* --- Layout Structure --- */
body {
  margin: 0;
  padding: 40px 20px;
  background-color: var(--bg-retro);
  /* Retro grid pattern */
  background-image: 
    linear-gradient(var(--border-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-dark) 1px, transparent 1px);
  background-size: 40px 40px;
  font-family: 'Courier New', Courier, monospace;
  color: var(--text-main);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.card-container {
  width: 100%;
  max-width: 700px;
  background-color: var(--paper-cream);
  border: 12px solid var(--border-dark);
  border-radius: 20px; /* Slightly sharper corners for retro look */
  box-shadow: 25px 25px 0px var(--shadow-color);
  overflow: hidden;
  position: relative;
}

/* --- Header & Navigation --- */
.card-header {
    display: flex;
    justify-content: space-between; /* Pushes status left, buttons right */
    align-items: center;
    padding: 20px 30px;
    background-color: var(--header-orange);
    border-bottom: 8px solid var(--accent-mustard);
}

.status-badge {
  background: var(--paper-cream);
  border: 3px solid var(--border-dark);
  padding: 10px 15px;
  border-radius: 4px;
  transform: rotate(-2deg);
  font-weight: bold;
  text-transform: uppercase;
}

/* This makes the buttons sit in a row */
.nav-group {
    display: flex;
    flex-direction: row; /* Horizontal alignment */
    justify-content: flex-end; /* Pushes them to the right side */
    gap: 15px; /* Space between each button */
}

/* This ensures the individual buttons stay square and uniform */
.nav-icon {
    display: flex;
    flex-direction: column; /* Icon on top, text on bottom */
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    background: var(--paper-cream);
    color: #000000;
    border: 3px solid var(--border-dark);
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 4px 4px 0px var(--border-dark); /* Retro hard shadow */
}

.nav-icon:hover {
  transform: translate(2px, 2px);
  color: red;
  box-shadow: 0px 0px 0px var(--border-dark);
}

/* --- Content Styling --- */
.main-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 25px;
  padding: 40px 30px;
}

.left-panel {
  border-right: 3px dotted var(--border-dark);
  padding-right: 20px;
}

.washi-tape-header {
  background-color: var(--accent-green);
  color: white;
  width: fit-content;
  margin: 0 auto 15px;
  padding: 8px 30px;
  transform: rotate(-1deg);
  box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}
.washi-tape-header2{

  width: fit-content;
  margin: 0 auto 15px;
  padding: 8px 30px;

}



.important-box h2 {
  font-size: 20px;
  background: var(--accent-mustard);
  color: var(--text-main);
  display: inline-block;
  padding: 2px 10px;
}

.important-list {
  padding: 0;
  list-style-type: "★ "; /* Retro star bullets */
  font-size: 19px;
  line-height: 1.8;
}

/* --- Footer --- */
.card-footer {
  background-color: var(--footer-brown);
  color: var(--paper-cream);
  border-top: 8px solid var(--accent-mustard);
  padding: 15px;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
}
/* This makes a section take up the whole width of the card */
.full-width-center {
    grid-column: 1 / -1; /* Spans from start to end of the grid */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 3px dashed var(--border-dark); /* Optional divider */
    margin-bottom: 20px;
}

/* This keeps your two-column sections working correctly */
.divided-section {
    display: contents; /* Allows children to stay in the parent grid */
}


/* This removes the white background and border from the container */
.image-container {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    display: flex;
    justify-content: center;
}

/* This controls the image size and adds a retro shadow */
.journey-image {
    width: 200px;           /* Fills the column width */
    height: 200px;  
    object-fit: cover;   
/*Add space between the images */  margin: 5px; 
    border-radius: 10px;
    border: 4px solid #fff; /* Optional: adds a thin white 'photo' border */
    box-shadow: 8px 8px 0px var(--border-dark); /* Retro hard shadow */
}
/* Update this class to remove the box effect */
.bio-text {
    background: transparent !important; /* Removes the white background */
    border: none !important;             /* Removes the orange border */
    padding: 10px 0;                     /* Adjusts spacing */
    font-size: 20px;
    line-height: 1.3;
    color: var(--text-main);
}

/* Ensure the divider between image and text remains */
.left-panel {
    border-right: 3px dotted var(--border-dark); /* This keeps them 'divided' */
    padding-right: 30px;
}

.modal-content button {
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    border-radius: 5px;
    border: none;
}


