/* styles.css */

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

nav {
  background-color: #2f2f2f;
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

nav a:hover,
nav a.active {
  color: #f4c430;
}

.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.2));
  z-index: 2;
}

.hero-text {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 0.5em;
}

.hero-text p {
  font-size: 1.3rem;
  margin-bottom: 1em;
}

.btn {
  padding: 0.8em 2em;
  background: #f4c430;
  color: #000;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #e2b426;
}

section {
  padding: 4em 2em;
  text-align: center;
}

.services, .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2em;
  margin-top: 2em;
}

.card {
  background: #fff;
  padding: 2em 1.5em;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card h3 {
  margin-bottom: 0.8em;
  color: #f4c430;
}

.card p {
  font-size: 0.95rem;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
  margin-top: 2em;
}

.testimonial-card {
  background: #fff;
  padding: 1.5em 2em;
  max-width: 300px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  text-align: left;
  font-size: 0.95rem;
}

.testimonial-card p:first-child {
  font-size: 1.2em;
  color: #f4c430;
  margin-bottom: 0.5em;
}

.testimonial-card small {
  display: block;
  margin-top: 1em;
  color: #777;
}

.contact-info, .booking-form {
  max-width: 600px;
  margin: auto;
}

.social-icons {
  margin-top: 1em;
}

.social-icons a {
  margin: 0 10px;
  font-size: 1.5em;
  color: #555;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #f4c430;
}

.booking-form input, .booking-form select {
  width: 100%;
  padding: 0.8em;
  margin: 1em 0;
  border-radius: 8px;
  border: 1px solid #ccc;
}

footer {
  background: #2f2f2f;
  color: #fff;
  text-align: center;
  padding: 1.5em 0;
  margin-top: 2em;
}
