html, body {
  height: 100%;
  margin: 0;
}

body {
  margin: 0;
}

/* HERO */
.hero {
  height: 70vh;
  background: url('img.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* DARK OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
}

/* TEXT */
.hero-content {
  position: relative;
  color: white;
  text-align: center;
  max-width: 600px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* BUTTON */
button {
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  background: #f4dada;
  color: #333;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #eecaca;
}

/* FEATURES SECTION */
.features {
  display: flex;
  justify-content: space-around;
  padding: 10px;
  background: #6fa3a3; /* similar to your example */
  color: white;
  text-align: center;
}

.feature {
  max-width: 200px;
}

.feature h3 {
  margin-bottom: 10px;
}
/* ICONS */
.feature i {
  font-size: 40px;
  margin-bottom: 15px;
  color: #f4dada; /* soft pink */
}
/* NAV */
.category-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
}
.page {
  font-family: 'Playfair Display', serif;
  padding: 50px;
  max-width: 800px;
  margin: auto;
  text-align: center;
  background-image: url('wallpaper.webp');
  background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
} 

.review {
  background: white;
  padding: 15px;
  margin: 15px 0;
  border-radius: 15px;
}

form input, form textarea {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

form button {
  background: #f4dada;
  border: none;
  padding: 10px;
  border-radius: 10px;
}
#name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
}
#message {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
}
#rating {
  border-radius: 10px;
  border: 1px solid #ddd;
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  font-family: 'Playfair Display', serif;
}
/* NAVBAR (smaller version) */
.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 8px 20px; /* ⬅ reduced */
  background: #f4dada;
  font-family: 'Inter', sans-serif;

  position: sticky;
  top: 0;
  z-index: 1000;
}

/* LOGO */
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px; /* ⬅ smaller */
  margin: 0;
}

/* LINKS */
.links a {
  margin-left: 15px; /* ⬅ tighter spacing */
  font-size: 14px;   /* ⬅ smaller text */
  text-decoration: none;
  color: #3a3a3a;
  font-weight: 500;
}

/* HOVER */
.links a:hover {
  color: #ea61b5;
}
/* ===== CONTACT PAGE ONLY ===== */

.contact-page .page {
  padding: 60px 20px;
  max-width: 600px;
  margin: auto;
  text-align: center;
}

.contact-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 10px;
}

.contact-page p {
  color: #8c7f77;
  margin-bottom: 20px;
}

/* CARD */
.contact-page .contact-box {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* BUTTONS */
.contact-page .contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  margin: 10px 0;
  padding: 12px;

  background: #f4dada;
  color: #3a3a3a;

  text-decoration: none;
  border-radius: 12px;
  font-weight: 500;

  transition: 0.3s;
}

.contact-page .contact-btn:hover {
  background: #eecaca;
  transform: translateY(-2px);
}

/* DIVIDER */
.contact-page .divider {
  height: 1px;
  background: #eee;
  margin: 20px 0;
}
/* ICON STYLE */
.contact-page .contact-btn i {
  font-size: 18px;
  color: #3a3a3a;
  transition: 0.3s;
}

/* HOVER EFFECT */
.contact-page .contact-btn:hover i {
  transform: scale(1.2);
}

/* FORM CONTAINER */
#feedbackForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 10px 20px;
}
/* ===== MINIMAL FOOTER ===== */

footer {
  background: #f4dada;
  color: #3a3a3a;
  text-align: center;

  padding: 15px 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;

  border-top: 1px solid #eecaca;
}

/* COPYRIGHT TEXT */
footer p {
  margin: 0;
  opacity: 0.85;
}

/* OPTIONAL SMALL HOVER EFFECT (subtle) */
footer:hover {
  background: #f2d1d1;
  transition: 0.3s ease;
}