/* General */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
}

/* Navigation */
nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: #222;
  padding: 12px 10%;
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  z-index: 1000;
}
nav .logo {
  color: #ffb400;
  font-size: 1.3rem;
  font-weight: bold;
  text-decoration: none;
}
nav ul {
  list-style: none;
  display: flex; 
  gap: 18px; 
  margin: 0; padding: 0;
}
nav ul li a {
  color: #fff; 
  text-decoration: none; 
  font-weight: 500;
  transition: color 0.2s ease;
}
nav ul li a:hover {color: #ffb400;}

/* Hero Section */
header {
  background: url('../images/hero.jpg') center/cover no-repeat;
  color: white; height: 90vh;
  display: flex; flex-direction: column; 
  justify-content: center; align-items: center;
  text-align: center; padding-top: 60px;
}
header h1 {font-size: 3rem; margin-bottom: 10px;}
header p {font-size: 1.2rem; margin-bottom: 20px;}
header a {
  background: #ffb400; color: white;
  padding: 12px 25px; border-radius: 8px;
  text-decoration: none; font-weight: bold;
  transition: background 0.3s;
}
header a:hover {background: #e0a000;}

/* Sections */
section {
  padding: 70px 10%;
  max-width: 1200px; margin: auto;
}
h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.8rem;
}

/* Grid Cards */
.grid {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
  gap: 20px;
}
.card {
  background: #fff; border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  overflow: hidden; display: flex; flex-direction: column;
}
.card img {width: 100%; height: 200px; object-fit: cover;}
.card-content {padding: 18px; flex: 1;}
.card h3 {margin-top: 0;}
.card p {margin: 5px 0;}
.card a {
  display: inline-block;
  margin-top: 10px;
  background: #ffb400; color: white;
  padding: 10px 16px; border-radius: 6px;
  text-decoration: none; font-weight: 600;
}
.card a:hover {background: #e0a000;}

/* Amenities */
.amenities-section {
  padding: 30px; background: #f9f9f9;
  border-radius: 12px; max-width: 700px; margin: 30px auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.amenities-section h2 {margin-bottom: 20px; color: #333;}
.amenities {list-style: none; padding: 0; margin: 0;}
.amenities li {
  display: flex; align-items: center;
  padding: 12px; margin: 8px 0;
  background: #fff; border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  font-size: 15px; color: #555;
  transition: transform 0.2s, box-shadow 0.2s;
}
.amenities li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.amenities li i {
  font-size: 20px; color: #4a90e2;
  margin-right: 12px;
  background: #e6f0fa; padding: 8px;
  border-radius: 50%;
}

/* Contact */
.contact {
  display: flex; flex-wrap: wrap; gap: 30px;
}
.contact-info, .contact-form {flex: 1;}
form input, form textarea {
  width: 100%; padding: 10px; margin-bottom: 12px;
  border: 1px solid #ccc; border-radius: 6px;
}
form button {
  background: #ffb400; color: white;
  border: none; padding: 12px;
  border-radius: 6px; cursor: pointer; font-size: 1rem;
  transition: background 0.3s;
}
form button:hover {background: #e0a000;}

/* Footer */
footer {
  background: #222; color: white;
  text-align: center; padding: 20px;
}
footer a {color: #ffb400; margin: 0 8px;}

/* Responsive */
@media(max-width:768px) {
  header h1 {font-size: 2rem;}
  header p {font-size: 1rem;}
  nav ul {gap: 10px;}
}
