/* Google Font (add this in your HTML <head>) */
/* <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&display=swap" rel="stylesheet"> */


/* NAVBAR CENTERING */
.nav-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* TITLE STYLING */
.header-title {
  margin-bottom: 10px;
}

.main-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #7a3e5c;
}

.sub-title {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: #a06a85;
  letter-spacing: 1px;
}

/* NAV CONTAINER CENTERED */
.nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  flex-wrap: wrap;
}

/* NAV ITEMS */
.nav-item {
  text-decoration: none !important; /* removes underline */
  color: #5a3a4a;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.25s ease;
}

/* REMOVE UNDERLINE ON ALL STATES */
.nav-item:link,
.nav-item:visited,
.nav-item:hover,
.nav-item:active {
  text-decoration: none;
}

/* IMAGES */
.nav-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 14px;
  border: 2px solid #fff;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  margin: 0 auto 6px auto;
  display: block;
}

/* TEXT */
.nav-item span {
  display: block;
  font-size: 16px;
}

/* HOVER */
.nav-item:hover {
  transform: scale(1.1);
  color: #b04a78;
}

/* ACTIVE */
.nav-item.active {
  color: #b04a78;
}

.nav-item.active img {
  border: 3px solid #b04a78;
  transform: scale(1.05);
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #7a3e5c;
  margin-top: 5px;
}

/* MOBILE */
@media (max-width: 768px) {

  .hamburger {
    display: block;
  }

  .nav-container {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 20px;
    background: #fde8ef;
    padding: 15px 0;
  }

  .nav-container.show {
    display: flex;
  }

  .nav-item img {
    width: 50px;
    height: 50px;
  }

  .main-title {
    font-size: 22px;
  }
}

    body {
        margin: 0;
        font-family: "Helvetica Neue", Arial, sans-serif;
        background-color: #fff5f7;
        color: #333;
        line-height: 1.6;
        background-image: url("background.jpg");
        background-repeat: repeat;
    }
    .container {
        max-width: 800px;
        margin: auto;
        padding: 20px;
    }

        img {
            display: block;
            max-width: 300px;
            width: 100%;
            margin: 20px auto;
            border-radius: 8px;
        }

    header {
        text-align: center;
        padding: 30px 20px;
    }

    .photo {
        width: 220px;
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        margin-bottom: 20px;
    }

    h1 {
        color: #c94f7c;
        font-size: 2.5em;
            text-align: center;
        margin-bottom: 5px;
    }

    h2 {
        color: #c94f7c;
            text-align: center;
            font-weight: normal;
            color: #777;
            margin-top: 0;
     }

    .card {
        background: white;
        padding: 20px;
        margin: 20px 0;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .map {
        margin-top: 15px;
        border-radius: 10px;
        overflow: hidden;
    }

    iframe {
        width: 100%;
        height: 250px;
        border: 0;
    }

    .footer {
        text-align: center;
        font-size: 0.9em;
        color: #777;
        margin-top: 40px;
            margin-top: 30px;
            font-style: italic;
    }

    .highlight {
        font-weight: bold;
    }
