body {
    background: url('../assets/ftm4.png'); /* Adjust path as needed */
    background-size: cover;       /* Scales image to cover the entire viewport */ 
    background-repeat: no-repeat; /* Prevents tiling */
    background-position: center;  /* Centers the image */
    background-color: #57eb16;    /* Fallback background color */
    margin: 0;
    padding: 0;
    height: 100vh;                /* Ensures full viewport height */
}
p {
  margin-top: 0px; /* or even 0 */
}
/*----------- Intro Section ------------*/
.intro {  
    color: rgb(253, 139, 81);
    background-color: rgb(32, 93, 105); 
    margin: auto;       /* margin-top: 10%; */
    padding-top: 10vh; /* instead of margin-top */
    width: 50%;
    min-height: 40vh;    
    height: auto;
}
@media (max-width: 600px) {
  .intro {
    height: auto;
    padding-bottom: 2rem;
  }
}
.consent-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  font-size: 16px;
}
.consent-container i {
  margin-right: 5px;
  color: #333; /* compare & adjust to text elsewhere on pg */
}
.submit-section {
  margin-bottom: 10px;
}
h1 {
  font-family: sans-serif;
  font-weight: normal; /* not bold */
  color: #222; /* is Black, compare txt color in Project */
  font-size: 14px; /* to 16 px or set even  smaller */
}
/*--------body styling for experience.html Pg-----*/
/* Only applies to project5 */
body.experience {
  background-color: #70b121;
  color: #fffff0;
  margin-left: 1in;
  margin-right: 0;
}
/*----------- PROJEXTS Section ----------*/
h2 {
    margin: 0;
    font-size: 50px;
    color: rgb(253, 139, 81);
}
/* lays out all pages to list items horizontally, evenly spaced */
ul {
  display: flex;
  list-style: none; /* removes bullets */
  padding: 0;
  margin: 0;
}
ul li {
  margin-right: 20px;
}
/* styles a Menu-icon chosen from FA bars class (for its check-box & text for the user's readable understanding */
.checkbtn {
  font-size: 14px;
  color: #444; /* this is greyish color */
  cursor: pointer;
  user-select: none;
}
.checkbtn i {
  font-size: 14px /* adjust icon size */
  margin-right: 8px; /* spacing btwn icon & txt */
}
.link-container {
  position: absolute;
  top: 20px;           /* Adjust as needed */
  right: 40px;         /* Space from the right edge */
  display: flex;
  flex-direction: column;
  gap: 10px;           /* Spacing between links */
  z-index: 10;         /* Make sure it's on top of background */
}
.link-container a {
  color: #007bff;
  text-decoration: underline;
  font-weight: bold;
}
.link-banner {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1em;
}
.reminder {
  font-size: 0.8rem;
  color: #3aa44a; /* British Airways panel green-ish */
  margin-top: 4px;
  display: block;
}

/* Be sure the #projects selector is outside h1 */
#projects {
    background-color: rgb(238, 221, 172);
    display: block;
    color: rgb(32, 93, 105);
    font-size: 20px; /* removed space between 20 and px */
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  gap: 20px; /* spacing between boxes */
  max-width: 960px;
  margin: 0 auto;
  margin-bottom: 0px; /* 👈 Add or reduce this value */
  padding: 20px;
}
.projects-grid a img {
  width: 100%;
  height: auto;
  border: 2px solid #ccc;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.projects-grid a img:hover {
  transform: scale(1.05);
}
