/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9f9;
  color: #222;
  line-height: 1.6;
}


/* Header */
header {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('https://images.unsplash.com/photo-1502877338535-766e1452684a?auto=format&fit=crop&w=1350&q=80') no-repeat center/cover;
  color: #fff;
  text-align: center;
  padding: 300px 300px;
  animation: fadeIn 1.5s ease-in-out;
}

header h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2rem;
}

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

nav a:hover {
  color: #ffcc00;
}

/* Sections */
section {
  padding: 60px 10%;
  animation: slideUp 1.5s ease;
}

section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  position: relative;
  color: #333;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #ffcc00;
}

/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  padding: 20px 20px 0 20px;
}

.service-card p {
  padding: 10px 20px 20px;
}

/* Pricing Table */
.pricing table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
}

.pricing th, .pricing td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: center;
}

.pricing th {
  background-color: #ffcc00;
}

.pricing .note {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #555;
}

/* Why Choose Us */
.why-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.why-card {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: scale(1.05);
}

/* Booking & Tips Sections */
ol, ul {
  padding-left: 100px;
  margin-top: 20px;
}

.booking, .tips, .reserve {
  background: #fffbf0;
  padding: 100px 100px;
  border-radius: 10px;
  margin: 40px 0;
  text-align: center;
}

.booking .contact-info, .reserve .contact-info {
  padding-left: 100px;
  margin-top: 20px;
  font-weight: bold;
  text-align: center;
}


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

footer a {
  color: #ffcc00;
  text-decoration: none;
}

/* Animations */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes slideUp {
  from {transform: translateY(30px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}

/* Responsive */
@media (max-width: 768px) {
  header h1 {font-size: 2rem;}
  section {padding: 40px 5%;}
  nav {flex-wrap: wrap;}
}