/* -----------------------------
  ABOUT / CONTACT STYLES
------------------------------ */

/* MAIN CONTENT CONTAINER */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: 'Poppins', sans-serif;
  color: #333;  /* Primary text color */
}

/* HERO IMAGE */
.hero-image {
  position: relative;
  width: 100%;
  height: 55vh;
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SHARED BLOCK STYLES */
.about-me,
.experience,
.approach,
.location,
.contact {
  background-color: #feb7d8; /* Panel background */
  border: 1px solid #a75e99; /* Panel border */
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
}

/* TYPOGRAPHY */
.about-me p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555; /* Secondary text color */
}

.experience p,
.approach p,
.location p,
.contact p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555; /* Secondary text color */
}

/* LINK STYLES */
.main-content a {
  color: #0066cc;
  text-decoration: underline;
}

.main-content a:hover {
  color: #004499;
  text-decoration: underline;
}

.main-content a:visited {
  color: #0066cc;
  text-decoration: underline;
}

/* ABOUT ME HEADINGS */
.about-me h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #136171; /* Section title color */
}

.kat-photo {
  float: right;
  width: 200px; 
  height: 300px;
  object-fit: cover;
  border-radius: 10%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* FLEX CONTAINERS */
.experience-approach,
.location-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.experience h3,
.approach h3,
.location h3,
.contact h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #136171; /* Section subtitle color */
}

.experience,
.approach,
.location,
.contact {
  flex: 1 1 300px;
}

/* -----------------------------
   RESPONSIVE STYLES
----------------------------- */
@media (max-width: 768px) {
  .hero-image {
    height: 20vh;
  }

  .kat-photo {
    width: 150px; 
    height: 150px; 
  }

  .about-me,
  .experience,
  .approach,
  .location,
  .contact {
    height: auto;
    min-height: 0;
    display: inline-block;
  }

  .experience-approach,
  .location-contact {
    gap: 1rem;
  }

  .about-me h2,
  .experience h3,
  .approach h3,
  .location h3,
  .contact h3 {
    font-size: 0.95rem;
  }

  .about-me p,
  .experience p,
  .approach p,
  .location p,
  .contact p {
    font-size: 0.95rem;
  }

  .main-content {
    padding: 0.5rem;
  }
}

@media (max-width: 600px) {
  .hero-image {
    height: 20vh;
  }

  .kat-photo {
    width: 150px;
    height: 150px;
  }

  .about-me,
  .experience,
  .approach,
  .location,
  .contact {
    height: auto;
    min-height: 0;
    display: inline-block;
  }

  .experience-approach,
  .location-contact {
    gap: 1rem;
  }

  .about-me h2,
  .experience h3,
  .approach h3,
  .location h3,
  .contact h3 {
    font-size: 0.95rem;
  }

  .about-me p,
  .experience p,
  .approach p,
  .location p,
  .contact p {
    font-size: 0.95rem;
  }

  .main-content {
    padding: 0.5rem;
  }
}

/* -----------------------------
   LANDSCAPE ORIENTATION
----------------------------- */
@media screen and (max-width: 1024px) and (orientation: landscape) {
  .hero-image {
    height: 35vh;
  }

  .kat-photo {
    width: 150px;
    height: 150px;
  }

  .about-me,
  .experience,
  .approach,
  .location,
  .contact {
    height: auto;
    min-height: 0;
    display: inline-block;
  }

  .experience-approach,
  .location-contact {
    gap: 1rem;
  }

  .about-me h2,
  .experience h3,
  .approach h3,
  .location h3,
  .contact h3 {
    font-size: 0.95rem;
  }

  .about-me p,
  .experience p,
  .approach p,
  .location p,
  .contact p {
    font-size: 0.95rem !important;
  }

  .main-content {
    padding: 0.5rem;
  }
}
