/* 🌍 GENERAL STYLE */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0fff4;
  color: #222;
}

/* 🌴 HEADER */
.main-header {
  background: linear-gradient(90deg, #00a884, #007a63);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.main-header .logo {
  color: white;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 1px;
}

.main-header .logo span {
  color: #ffd966;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: #ffd966;
}

/* 🏖️ HERO SECTION */
.hero {
  position: relative;
  height: 90vh;
  background: url('../images/bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.45);
}

.hero-text {
  position: relative;
  z-index: 1;
  color: white;
  animation: fadeInUp 1.8s ease;
}

.hero-text h1 {
  font-size: 52px;
  margin-bottom: 18px;
}

.hero-text p {
  font-size: 20px;
  margin-bottom: 30px;
}

.btn-primary {
  background-color: #ffd966;
  color: #007a63;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: #fff;
  color: #00a884;
}

/* 🗺️ FEATURED SECTION */
.featured {
  padding: 80px 40px;
  background-color: #eaffea;
  text-align: center;
}

.featured h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #007a63;
}

.card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-info {
  padding: 20px;
}

.card-info h3 {
  color: #007a63;
  margin-bottom: 10px;
}

/* 📩 BOOKING & CONTACT FORMS */
.booking-form, .contact-form {
  max-width: 600px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.booking-form input, 
.booking-form textarea,
.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.booking-form input:focus, 
.contact-form input:focus,
.booking-form textarea:focus,
.contact-form textarea:focus {
  border-color: #009879;
  box-shadow: 0 0 6px rgba(0,152,121,0.4);
  outline: none;
}

.booking-form button, .contact-form button {
  background-color: #009879;
  color: white;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.booking-form button:hover,
.contact-form button:hover {
  background-color: #00b98e;
  transform: scale(1.02);
}

/* 🟢 SUCCESS & ERROR MESSAGES */
.success, .error {
  text-align: center;
  font-size: 18px;
  margin-top: 20px;
  padding: 10px 20px;
  border-radius: 10px;
}

.success {
  color: #0d6830;
  background: #c6f6d5;
  border: 1px solid #4caf50;
}

.error {
  color: #a40000;
  background: #ffd6d6;
  border: 1px solid #ff0000;
}

/* ⚙️ FOOTER */
.main-footer {
  background-color: #007a63;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 15px;
}

/* 🔄 ANIMATION */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
