/* ── Google Font ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Prata&display=swap');
 
/* ── Reset / Base ────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
 
body {
  font-family: 'Prata', serif;
  color: #fff;
  background-color: #FEB9ED;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
 
/* ── HEADER ──────────────────────────────────────────────── */
header {
  background-color: #FEB9ED;
  padding: 18px 40px;
}
 
.header-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
 
.site-title {
  font-family: 'Prata', serif;
  font-size: 2.4rem;
  color: #fff;
  white-space: nowrap;
}
 
/* ── NAV ─────────────────────────────────────────────────── */
nav {
  display: flex;
  align-items: center;
  gap: 30px;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 10px 28px;
  border-radius: 2px;
}
 
nav a {
  font-family: 'Prata', serif;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
 
nav a:hover {
  opacity: 0.75;
}
 
nav a.active {
  font-weight: bold;
}
 
/* ── MAIN / CONTENT AREA ─────────────────────────────────── */
main {
  flex: 1;
  background-color: #CACACA;
  padding: 50px 40px 60px;
}
 
.about-container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
 
/* ── PHOTOS ──────────────────────────────────────────────── */
.photo-left,
.photo-right {
  flex-shrink: 0;
  width: 240px;
}
 
.photo-left img,
.photo-right img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 2px;
}
 
/* ── ABOUT TEXT ──────────────────────────────────────────── */
.about-text {
  flex: 1;
}
 
.about-text h1 {
  font-family: 'Prata', serif;
  font-size: 2.6rem;
  color: #fff;
  margin-bottom: 24px;
  font-weight: normal;
}
 
.about-text p {
  font-family: 'Prata', serif;
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.75;
}
 
/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background-color: #FEB9ED;
  height: 80px;
}
 
/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    align-items: center;
  }
 
  .photo-left,
  .photo-right {
    width: 100%;
    max-width: 320px;
  }
 
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
 
  nav {
    flex-wrap: wrap;
    gap: 16px;
  }
}