body {
  font-family: 'Barlow', sans-serif;
  margin: 0;
  padding: 0;
  background-color: rgb(134, 59, 255);
  color: #2b2b2b;
  line-height: 1.6;
}

h1, h2, h3 {
  color: white;
  margin-bottom: 0.5em;
}

.small-note {
  font-size: 11;
  font-style: italic;
  margin-top: -10px;
  margin-bottom: 20px;
  color: #ffeb3b;
}

.topbar {
  background-color: rgb(134, 59, 255);
  color: white;
  font-size: 1rem;
  padding: 8px 20px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.promo-banner {
  background: linear-gradient(90deg, #ff7043, #ffca28);
  color: #222;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 15px 20px;
  font-weight: 600;
  text-align: center;
  font-size: 1rem;
  position: relative;
  z-index: 999;
}

.sticker {
  background: rgba(255, 255, 255, 0.85);
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}


.site-header {
  background: linear-gradient(rgb(102, 183, 237), rgb(134, 59, 255)), url('https://images.unsplash.com/photo-1571607389581-d0732f3023ce?auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
  color: white;
  font-family: Impact;
  padding: 150px 20px;
  text-align: center;
  width: 100%;
}

.hero {
  max-width: 700px;
  margin: auto;
}

.hero-text h1 {
  font-size: 4rem;
  margin-bottom: 0.3em;
  font-weight: 800;
}

.hero-text p {
  font-size: 1.5rem;
  margin-bottom: 1em;
  font-weight: 400;
}

.btn-primary {
  background-color: #ff5722;
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #e64a19;
}

main {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.services,
.gallery,
.booking-section,
.contact-info {
  margin-bottom: 80px;
}

.services h2,
.gallery h2,
.booking-section h2,
.contact-info h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: white;
}

.services h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 4px;
  color: #2b2b2b;
}

.service-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgb(134, 59, 255);
  border: solid;
  border-color: #ff5722;
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.booking-section {
  background: rgb(134, 59, 255);
  border: solid;
  border-color: #ff5722;
  padding: 50px;
  border-radius: 16px;
  box-shadow: #ff5722;
}

.booking-form .input-field {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  color: white;
  background-color: rgb(134, 59, 255);
  border: 1px solid white;
  border-radius: 8px;
  font-size: 1rem;
}

::placeholder {
  color: white;
  opacity: 1; /* Firefox */
}
.contact-info {
  text-align: center;
  color: white;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 12px;
  margin-top: 20px;
}

.site-footer {
  background-color: rgb(134, 59, 255);
  border: solid;
  border-color: #ff5722;
  color: white;
  text-align: center;
  padding: 30px;
  font-size: 0.9rem;
}
