/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fefefe;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #d10028;
}

.btn-contact {
  background: #d10028;
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 25px;
  font-weight: 500;
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 3rem 2rem;
  gap: 2rem;
}

.hero-image img {
  width: 100%;
  max-width: 350px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.hero-text {
  flex: 1;
  text-align: center;
}

.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-text h1 span {
  color: #d10028;
}

.hero-text p {
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-text,
.btn-book {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}

.cta-text {
  background: #000;
  color: white;
}

.btn-book {
  background: #d10028;
  color: white;
}

/* Services Section */
.services {
  padding: 4rem 2rem;
  background: #f9f9f9;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.service-slider {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding: 1rem 0;
}

.service-card {
  flex: 0 0 auto;
  min-width: 200px;
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  font-weight: 500;
}

/* Contact Form */
.contact {
  padding: 4rem 2rem;
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input,
select,
textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
}

button[type='submit'] {
  background: #d10028;
  color: white;
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  background: #fff;
  border-top: 1px solid #eee;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 2rem;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .nav-links {
    display: none;
  }

  .hero-image img {
    max-width: 100%;
  }
}
