/* ===== GLOBAL STYLES ===== */
body {
  margin: 0;
  font-family: 'Georgia', serif;
  background-color: #f6f1dc; /* pastel yellow */
  color: #2f2f2f;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  border-bottom: 1px solid #c9bfa3;
  background-color: #f6f1dc;
}

.navbar .logo {
  font-weight: bold;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar a {
  text-decoration: none;
  color: #333;
}

.navbar a.active {
  color: #d4a017; /* gold */
  font-weight: bold;
}

/* ===== PAGE HEADER ===== */
.page-header {
  text-align: center;
  margin: 40px 0;
}

.page-header h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 16px;
  color: #6b6b6b;
}

/* ===== SERVICES GRID ===== */
#main {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  padding: 20px;
}

/* ===== SERVICE CARD ===== */
.flex-item {
  background-color: #fdfaf0;
  padding: 20px;
  width: 250px;
  text-align: center;
  border-radius: 10px;
}

.flex-item img {
  width: 180px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

/* ===== BUTTON ===== */
.btn, 
.flex-item a {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #d4a017; /* gold */
  color: white;
  text-decoration: none;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.btn:hover,
.flex-item a:hover {
  background-color: #b89114;
}

/* ===== BOOKING PAGE ===== */
.appointment {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 40px;
  flex-wrap: wrap;
}

.appointment-details {
  text-align: center;
}

.appointment-details img {
  width: 220px;
  height: 260px;
  object-fit: cover;
  background-color: #fdfaf0;
  padding: 15px;
}

/* ===== FORM ===== */
.booking-form {
  display: flex;
  flex-direction: column;
  width: 300px;
}

.booking-form input {
  margin-bottom: 12px;
  padding: 8px;
  border: 1px solid #c9bfa3;
  border-radius: 5px;
  background-color: #fffdf5;
}

.booking-form label {
  margin-top: 10px;
  font-size: 14px;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  margin: 40px 0;
  font-size: 14px;
}