* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #0b1c2d;
  color: #ffffff;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 8%;
  background: #06131f;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 48px;
}

.logo span {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.navbar nav a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 24px;
  font-weight: 500;
}

/* HERO */
.hero {
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('images/hero-exterior.jpg') center/cover no-repeat;
  padding: 130px 8%;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #d9e2ec;
}

.btn {
  background: #c9a24d;
  color: #000;
  padding: 14px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

/* SERVICES */
.services {
  padding: 90px 8%;
  background: #0e2438;
  text-align: center;
}

.services h2 {
  margin-bottom: 15px;
}

.services-subtext {
  max-width: 700px;
  margin: 0 auto 55px;
  color: #cbd6e2;
  font-size: 1.05rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 30px;
}

.service-card {
  background: #06131f;
  padding: 35px 30px;
  border-radius: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  color: #d4dde7;
  line-height: 1.5;
}

.service-card span {
  display: block;
  margin-top: 18px;
  color: #c9a24d;
  font-weight: bold;
}

/* GALLERY */
.gallery {
  padding: 90px 8%;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 18px;
  margin-top: 35px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
}

/* BOOKING */
.booking {
  padding: 90px 8%;
  background: #0e2438;
  text-align: center;
}

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

.booking input,
.booking select,
.booking textarea {
  padding: 14px;
  border-radius: 4px;
  border: none;
}

.booking button {
  background: #c9a24d;
  color: #000;
  padding: 15px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

/* FOOTER */
footer {
  background: #06131f;
  text-align: center;
  padding: 22px;
  font-size: 0.9rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .navbar nav a {
    margin-left: 14px;
  }
}
