body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: rgb(225, 210, 210);
    color: #333;
  }
  
  header {
    background-color: white;
    color: black;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-style: oblique;
    
    
  }
  .logo {
    max-width: 350px; /* Adjust the size as needed */
    height: auto;
    display: block;
    margin: 1px auto 1px auto; 
    /* Centers the logo and adds space below */
}
  
  nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  nav ul li {
    display: inline;
    margin: 0 10px;
  }
  
  nav ul li a {
    color: #080407;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.4s;
  }
  
  nav ul li a:hover {
    color: #ae1686;
  }
  
  section {
    padding: 50px 20px;
    text-align: center;
  }
  
  section h2 {
    color: black;
    margin-bottom: 20px;
    font-size: 2em;
  }
  
  .room, .amenity, .contact {
    margin: 20px 0;
    padding: 20px;
    border-radius: 10px;
    background-color: rgb(225, 210, 210);
    border-color: black;
    border-style: dotted;
    box-shadow: 0 2px 4px rgba(10, 0, 0, 0.1);
  }
  
  .room h3, .amenity h3 {
    color: black;
    font-size: 1.5em;
  }
  
  .room p, .amenity p {
    color: black;
    font-size: 1.1em;
  }
  
  #gallery img {
    width: 300px;
    height: auto;
    margin: 10px;
    border-radius: 10px;
    transition: transform 0.3s;
  }
  
  #gallery img:hover {
    transform: scale(1.05);
  }
  
  #location p {
    font-size: 1.2em;
    color: #666;
  }
  
  .map-container {
    text-align: center;
    margin: 20px 0;
  }
  
  footer {
    background-color: rgb(251, 244, 249);
    color: black
    text-align: center;
    padding: 15px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
  }
  
  footer p {
    margin: 0;
    font-size: 1em;
  }
  @media (max-width: 768px) {
    nav ul {
        flex-direction: row-reverse;
        background-color: white; /* Dark Purple for Mobile Navigation */
    }

    nav ul li {
        flex-direction: row-reverse;

        margin: 0 15px;
    }
}  