/* Reset & base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0b0b0b;
  color: #c0266d;
  line-height: 1.6;
}

header h1,
header h2 {
  font-family: 'Montserrat', sans-serif;
}


/* Hero section */
header {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}

/* Headings */
header h1 {
  font-size: 3rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

header h2 {
  font-size: 1.5rem;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 1.2rem;
}

/* Description text */
header p {
  max-width: 500px;
  font-size: 1rem;
  color: #d6d6d6;
  margin-bottom: 2rem;
}

/* Call-to-action button */
header a {
  text-decoration: none;
  color: #0b0b0b;
  background-color: #c0266d;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s ease;
}

header a:hover {
  background-color: #a61e5c;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (min-width: 768px) {
  header h1 {
    font-size: 4rem;
  }

  header h2 {
    font-size: 1.8rem;
  }

  header p {
    font-size: 1.1rem;
  }
}
/* =========================
   About Section (Boxed)
   ========================= */

.about {
  padding: 5rem 1.5rem;
  background-color: #0b0b0b;
}

.about-content {
  max-width: 750px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  background-color: #111111;
  border-radius: 16px;
  text-align: center;

  /* subtle depth */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.about h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  color: #c0266d;
  margin-bottom: 1.5rem;
}

.about p {
  color: #d6d6d6;
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Slightly larger text on desktop */
@media (min-width: 768px) {
  .about p {
    font-size: 1.05rem;
  }
}
/* About profile image */
.about-image {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.5rem;

  /* subtle accent */
  border: 3px solid #c0266d;
}
/* Bubble Booking Button - centered under About section */
.booking-button-container {
  display: flex;
  justify-content: center;
  margin-top: 3rem; /* space below About Me box */
}

.bubble-button {
  display: inline-block;
  padding: 1.5rem 3rem; /* bigger, more bubble-like */
  font-size: 1.3rem;
  font-weight: 700;
  color: #0b0b0b;
  background: #c0266d;
  border-radius: 50px; /* fully rounded ends */
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(192, 38, 109, 0.4);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.bubble-button:hover {
  background-color: #a61e5c;
  transform: translateY(-5px) scale(1.05);
}
/* =========================
   Social Links (About + Footer)
   ========================= */

.about-socials {
  margin-top: 1.5rem;
}

.about-socials p {
  margin-bottom: 0.5rem;
  color: #d6d6d6;
  font-size: 0.95rem;
}

.about-socials a {
  margin: 0 0.6rem;
  color: #c0266d;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.about-socials a:hover {
  color: #ffffff;
}

/* Footer social links */
.footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #0b0b0b;
  color: #777;
}

.footer .social-links {
  margin-top: 0.75rem;
}

.footer .social-links a {
  margin: 0 0.75rem;
  color: #c0266d;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer .social-links a:hover {
  color: #ffffff;
}
/* =========================
   Reviews Section
   ========================= */

.reviews {
  max-width: 750px;
  margin: 4rem auto;
  padding: 3rem 2rem;
  background-color: #111111;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.reviews h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  color: #c0266d;
  margin-bottom: 2rem;
}

/* Individual review */
.review {
  background-color: #0b0b0b;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.2rem;
}

.review strong {
  color: #c0266d;
}

.review p {
  color: #d6d6d6;
  margin-top: 0.5rem;
}

/* Review form */
#review-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#review-form input,
#review-form textarea {
  padding: 0.8rem;
  border-radius: 8px;
  border: none;
  font-family: 'Inter', sans-serif;
}

#review-form textarea {
  resize: none;
  min-height: 100px;
}

#review-form button {
  padding: 0.9rem;
  background-color: #c0266d;
  color: #0b0b0b;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#review-form button:hover {
  background-color: #a61e5c;
  transform: translateY(-2px);
}
/* =========================
   Star Rating Input
   ========================= */

.star-input {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  font-size: 1.8rem;
  cursor: pointer;
}

.star-input span {
  color: #555;
  transition: color 0.2s ease;
}

.star-input span.active {
  color: #c0266d;
}

/* Displayed stars */
.review-stars {
  color: #c0266d;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

