/* WIDGET EMBED */
.lightwidget-widget {
  height: 340px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

/* TYPOGRAPHY */
body {
  font-family: 'Nunito', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  margin-top: 0;
}

/* BUTTONS */
button, .btn {
  background: #f4c2d7;
  color: #4b2e2e;
  padding: 0.6em 1.4em;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  transition: background 0.3s;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
  cursor: pointer;
  font-size: 1rem;
}

button:hover, .btn:hover {
  background: #e2b3c5;
}

/* FLOATING BUTTON */
.float-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.float-button:hover {
  transform: scale(1.15);
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.35);
}

/* BOOKING FORM */
.booking-wrapper {
  max-width: 480px;
  margin: 60px auto;
  padding: 32px;
  background-color: #dfcfd7;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  color: #3c2a2a;
}

/* BOOKING SUMMARY */
.booking-summary {
  background-color: #ffe4ec;
  padding: 1.5em;
  border-radius: 16px;
  margin: 30px auto 20px;
  color: #3c2a2a;
  max-width: 460px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}

.booking-summary ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.booking-summary li {
  margin-bottom: 0.6em;
  font-size: 1rem;
}


.booking-wrapper h1 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 10px;
}

.booking-wrapper .emoji {
  font-size: 1.5rem;
  margin-left: 5px;
}

.booking-wrapper p {
  text-align: center;
  color: #4f3a3a;
  font-size: 1rem;
  margin-bottom: 30px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #5c3e3e;
}

input, select {
  padding: 12px 16px;
  border: 1px solid #dfcfd7;
  border-radius: 14px;
  font-size: 1rem;
  background-color: #fff;
  transition: border-color 0.2s ease;
}

input:focus, select:focus {
  outline: none;
  border-color: #f4a6c0;
  box-shadow: 0 0 0 3px rgba(244, 166, 192, 0.3);
}

form button {
  padding: 12px 20px;
  background-color: #f4a6c0;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  border: none;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

form button:hover {
  background-color: #ec89af;
  transform: scale(1.03);
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .gallery {
    flex-direction: column;
    gap: 16px;
  }

  .buttons {
    flex-direction: column;
  }

  .buttons a {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .logo {
    width: 80px;
    height: auto;
  }

  img {
    max-width: 100%;
    height: auto;
  }
}
