/* Global Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Quicksand', sans-serif; /* Inspired by popular UI trends[^115,^321] */
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

/* Navigation Bar Styling */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0077cc;
  padding: 1rem 2rem;
}
nav .logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
}
.nav-links {
  list-style: none;
  display: flex;
}
.nav-links li a {
  text-decoration: none;
  color: #fff;
  padding: 0 1rem;
  transition: color 0.3s ease;
}
.nav-links li a:hover,
.nav-links li a.active {
  color: #ffdd57;
}

/* Hero Section Styling */
.hero {
  background: url('images/beach_hero.jpg') no-repeat center center/cover;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color:lightseagreen;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color:lightseagreen;
}
.btn {
  padding: 0.8rem 1.5rem;
  background-color: #ffdd57;
  border: none;
  border-radius: 5px;
  color: #333;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.btn:hover {
  background-color: #ffc107;
}

/* Sections Styling */
section {
  padding: 4rem 2rem;
}
.rooms .room-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.room-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  margin: 1rem;
  padding: 1rem;
  width: 300px;
  text-align: center;
}
.room-card img {
  width: 100%;
  border-radius: 8px;
}
.booking form fieldset {
  border: none;
  margin-bottom: 1.5rem;
}
.booking form label {
  display: block;
  margin-bottom: 0.5rem;
}
.booking form input,
.booking form select,
.booking form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Contact Section Styling */
.contact .contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.contact form {
  flex: 1;
  min-width: 300px;
}
.contact-details {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Footer Styling */
footer {
  background-color: #0077cc;
  color: #fff;
  text-align: center;
  padding: 1rem;
}
footer .socials a {
  margin: 0 0.5rem;
  text-decoration: none;
  color: #ffdd57;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
  }
  .nav-links {
    flex-direction: column;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .rooms .room-list {
    flex-direction: column;
    align-items: center;
  }
}
