/* GLOBAL STYLES */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #fff;
  color: #333;
}

/* CONTAINERS */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.site-header {
  background: #c74f00; /* dark orange */
  color: #fff;
  padding: 1rem 0;
}

.logo {
  margin: 0;
  font-size: 1.8rem;
}

.nav-links {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* HERO */
.hero {
  background: #f78c1f; /* lighter orange */
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

/* SERVICES */
.services-section {
  padding: 2rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.service-item {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* BOOKING FORM */
.booking-section {
  padding: 2rem 0;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 0.8rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.booking-form button {
  background: #c74f00;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0.8rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.booking-form button:hover {
  background: #a24000;
}

/* CONTACT */
.contact-section {
  padding: 2rem 0;
}

/* FOOTER */
.site-footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

.site-footer a {
  color: #f78c1f;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* RESPONSIVE NAVIGATION */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: center;
  }
  .logo img {
  height: 60px;  /* adjust this number */
  width: auto;   /* keeps proportions correct */
}
}

