body, h1, h2, h3, p, ul {
    margin: 0;
    padding: 0;
    font-family:'Times New Roman', Times, serif;
}

header {
    background-color: #000000;
    color: white;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.logo{
    width: 75px;
    left: 0px;
}
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.background-clip {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.hotels {
    padding: 5%;
    text-align: center;
    color: white;

}

.hotels h2 {
    margin-bottom: 20px;
    color: white;
}

.hotel-card {
    display: inline-block;
    width: 30%;
    margin: 10px;
    text-align: center;
    vertical-align: top;
    box-sizing: border-box;
}

.hotel-card img {
    width: 100%;
    height: 200px; /* Set a fixed height */
    object-fit: cover; /* Ensures the image fills the area without distortion */
    border-radius: 5px;
}

.hotel-card h3 {
    font-size: 1.2em;
    margin: 10px 0 5px;
    color: white;
}

.hotel-card p {
    font-size: 0.9em;
    color: white;
}

.footer {
    background-color: #000000;
    color: #ECF0F1;
    padding: 20px 40px;
    text-align: center;
    font-family: Arial, sans-serif;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-logo img {
    max-width: 150px;
    height: auto;
  }
  .copyright{
    text-align: center;
  }
  .footer-contact{
    right: 0%;
    bottom: 100px;
  }
  

  @media (max-width: 800px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-logo {
      margin-bottom: 15px;
    }
  }