/* Reset styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global styles */
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #f2f2f2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header styles */
.header {
  background-color: #003580;
  color: #fff;
  padding: 20px 0;
}

.logo {
  font-size: 2.25rem;
  text-align: center;
  text-transform: uppercase;
}

.nav {
  text-align: right;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.nav ul {
  list-style: none;
  /* display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: space-around; */
}
@media screen and (max-width: 600px) {
  .nav ul li {
    display: inline;
    margin: none;
  }
}

.nav ul li {
  display: inline;
  margin: 0 1.25rem;
}

.nav ul li:first-child {
  margin-left: 0;
}

.nav ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav ul li a:hover {
  color: #ffcc00;
}

/* Landing section styles */
.landing {
  background-image: url('landing-bg.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 100px 0;
}

.landing h2 {
  font-size: 3em;
  margin-bottom: 20px;
}

.landing p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.landing .btn {
  background-color: #ffcc00;
  color: #003580;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.landing .btn:hover {
  background-color: #ffa600;
}

/* Room cards */
.room-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

.room-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.room-details {
  padding: 20px;
}

.room-details h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #003580;
}

.room-details p {
  margin-bottom: 10px;
  color: #555;
}

.room-details .price {
  font-size: 1.2em;
  font-weight: bold;
  color: #007bff;
}

.room-details .description {
  margin-bottom: 20px;
  color: #333;
}

.room-details .btn {
  background-color: #003580;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.room-details .btn:hover {
  background-color: #00275e;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fff;
  border-radius: 10px;
  width: 50%;
  max-width: 600px;
  margin: 100px auto;
  padding: 20px;
  position: relative;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5em;
  cursor: pointer;
}

/* About section styles */
.about {
  padding: 50px 0;
}

.about h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #003580;
}

.about p {
  margin-bottom: 20px;
  color: #555;
}

/* Services section styles */
.services {
  background-color: #f8f9fa;
  padding: 50px 0;
}

.services h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #003580;
}

.services ul {
  list-style-type: none;
  text-align: center;
}

.services li {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #555;
}

/* Contact section styles */
.contact {
  padding: 50px 0;
}

.contact h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #003580;
}

.contact p {
  margin-bottom: 20px;
  color: #555;
}

.contact ul {
  list-style: none;
}

.contact li {
  margin-bottom: 10px;
}

/* Footer styles */
.footer {
  background: #003580;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}
