/* Navigation Bar */

* {
Background-color: lightblue;
Border: 1px black solid;
Padding: 10px;
box-sizing:&nbsp;border-box;
}


body {
    font-family: 'Montserrat', sans-serif;
}

/* Navigation Bar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #4769a3; 
    padding: 20px 40px;
}

nav img {
    height: 40px; 
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #f5a3b3; 
}


.nav-btn .book-online {
    background-color: #c61758; 
    color: white;
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-btn .book-online:hover {
    background-color: #a51246; 
}

.header {
    display: flex;
    flex-direction: column;
    align-items: Left;
    justify-content: Left;
    height: 100vh;
    text-align: left;
    padding: 0 20px;
    background-image: url('mages/header.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.header h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    padding-top: 300px;
    padding-left: 100px;
}

.header p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    padding-left: 100px;
}

.header-buttons {
    display: flex;
    gap: 20px;
    padding-left: 100px;
}

.btn {
    background-color: #c2185b;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #ad1457;
}

.about-us {
  display: flex;
  flex-direction: column; 
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: 'Montserrat', sans-serif;
}

.about-us-content {
  display: flex; 
  justify-content: space-between; 
  align-items: flex-start;
  width: 100%; 
}

.about-us-header {
  flex: 0 0 auto; 
  padding-right: 50px; 
}
.about-us-header h2 {
  font-size: 2.5em;
  color: #34495e;
  margin-bottom: 0; 
}

.about-us-text {
  flex: 1; 
  width: auto; 
}

.about-us-text p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.about-us-image {
  width: 100%; 
  margin-top: 30px; 
}

.about-us-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block; 
}

  .about-us-header {
    padding-right: 100; 
    margin-bottom: 20px;
  }

  .about-us-text {
    width: 100%;
  }

