body {
  margin: 0;
  font-family: 'Times New Roman', Times, serif;
  background-color: #FFCFD8;
  font-size: 18px;
  color: #2a0a14;
  text-align: center;
}

/* header bar */
header {
  background: linear-gradient(90deg, #ff4d8d, #c9186a);
  padding: 20px;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 1px;
  border-bottom: 4px solid #8a0f45;
  color: white;
}

/* profile card */
.profile-card {
  margin: 40px auto;
  width: 90%;
  max-width: 580px;
  background: white;
  padding: 32px 28px;
  border-radius: 12px;
  box-shadow: 0px 8px 18px rgba(0,0,0,0.18);
  border-top: 6px solid #ff4d8d;
  box-sizing: border-box;
}

/* profile photo */
.profile-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #ff4d8d;
  margin-bottom: 20px;
  transition: transform 0.3s;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.profile-photo:hover {
  transform: scale(1.05);
}

/* info rows */
.info-row {
  font-size: 17px;
  margin: 10px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0d0db;
  color: #3a0a1e;
  text-align: left;
}

.info-row:last-of-type {
  border-bottom: none;
}

/* address link */
.address-link {
  display: block;
  margin-top: 14px;
  font-size: 15px;
  color: #c9186a;
  text-decoration: none;
  font-style: italic;
  transition: color 0.2s;
}

.address-link:hover {
  color: #8a0f45;
  text-decoration: underline;
}

/* map section, hidden by default, shown when anchor is targeted */
.map-section {
  display: none;
  margin: 0 auto 40px;
  width: 90%;
  max-width: 600px;
}

.map-section:target {
  display: block;
}

.map-section iframe {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

/* footer bar */
footer {
  margin-top: 20px;
  padding: 16px;
  background: linear-gradient(90deg, #c9186a, #8a0f45);
  font-size: 14px;
  letter-spacing: 1px;
  border-top: 4px solid #ff4d8d;
  color: white;
}
