<!-- ================= css/style.css ================= -->
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

body {
  color: #222;
  line-height: 1.6;
}

.hero {
  background: url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  background: rgba(255,255,255,0.9);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
}

h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

h2 {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}

section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  border: none;
  cursor: pointer;
}

.services .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.card {
  background: #f5f5f5;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
}

.gallery .images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery img {
  width: 100%;
  border-radius: 16px;
}

.booking form {
  max-width: 400px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.booking input {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: #fff;
}