body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f7f9; /* lighter & softer than #f9f9f9 */
  color: #333;
}

/* Container */
.container {
  width: 1080px;
  margin: 0 auto;
  background: #fff;
  padding: 20px;
}

/* Header (Latest Version) */
.main-header {
  top: 0;
  z-index: 1000;
  background-color: #005580; /* Changed to a deeper teal */
  color: white;
  padding: 20px 30px;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 1050px;
  margin: 0 auto;
  gap: 20px;
}

.logo {
  height: 70px;
  width: auto;
  border-radius: 8px;
}

.header-text h1 {
  font-size: 24px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}

.header-text p {
  margin: 5px 0 0;
  font-size: 14px;
  font-style: italic;
  color: #ffd966; /* Light yellow for tagline, matches logo */
  letter-spacing: 0.5px;
}

/* Responsive Header */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    text-align: center;
  }

  .logo {
    height: 50px;
  }

  .header-text h1 {
    font-size: 20px;
  }
}

/* Banner */
.banner {
  text-align: center;
  background: #e6f4f6;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}

.banner img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Content Layout */
.content-wrapper {
  display: flex;
  flex: 1;
}

/* Side Menu */
.side-menu {
  width: 220px;
  background: #004466; /* Slightly deeper blue */
  border-radius: 10px;
  padding: 20px;
}

.side-menu h3 {
  color: #ffd966; /* Yellowish accent for menu title */
  text-align: center;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
}

.side-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-menu ul li {
  margin: 10px 0;
}

.side-menu ul li a {
  text-decoration: none;
  color: #fff;
  padding: 10px;
  display: block;
  border-radius: 6px;
  transition: background 0.3s, color 0.3s;
  font-weight: 600;
}

.side-menu ul li a:hover {
  background: #ffa500; /* orange hover - matches logo */
  color: #fff;
}

/* Main Content */
.main-content {
  flex: 1;
  padding: 25px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.main-content h2 {
  font-size: 26px;
  color: #005580; /* Deep teal */
  border-bottom: 2px solid #ffa500; /* Orange underline */
  display: inline-block;
  margin-bottom: 15px;
  padding-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-content p {
  line-height: 1.6;
  text-align: justify;
  color: #333;
}

/* Gallery */
.gallery {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 10px 0;
  margin: 10px 0;
  background: #f9f9f9;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.gallery img {
  width: 150px;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #ccc;
  transition: 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
  border-color: #ffa500; /* Orange border hover */
}

/* Bottom Navigation */
.bottom-nav {
  display: flex;
  justify-content: center;
  background: #eee;
  padding: 8px 0;
  margin: 10px 0;
  border-top: 1px solid #ddd;
}

.bottom-nav a {
  margin: 0 10px;
  padding: 6px 12px;
  text-decoration: none;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fdfdfd;
  transition: 0.3s;
}

.bottom-nav a:hover {
  background: #ffa500; /* Orange hover */
  color: #fff;
}

.bottom-nav .active {
  font-weight: bold;
  background: #ddd;
}

/* Footer */
footer {
  background: #005580; /* Deep teal */
  color: #fff;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  border-radius: 6px 6px 0 0;
  margin-top: 10px;
}

footer a {
  color: #ffa500; /* Orange links */
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Generic Text Styling */
p, li, div, span {
  text-align: justify;
}

/* Headings */
h1 {
  font-size: 22px;
  color: #333;
  margin-bottom: 10px;
  text-align: justify;
}

/* Notes */
.note {
  font-style: italic;
  color: red;
  font-weight: bold;
  margin-bottom: 20px;
}

.note strong {
  color: red;
  font-weight: bold;
}

/* Hotel Info / Blocks */
.hotel {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.hotel h2 {
  font-size: 18px;
  color: #005580; /* Deep teal */
  margin-bottom: 8px;
}

.hotel p {
  margin: 5px 0;
}

.hotel ul {
  margin: 10px 20px;
}

.hotel li {
  margin-bottom: 6px;
}

/* Hotel Block Card */
.hotel-block {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  padding: 20px;
  margin-bottom: 25px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.hotel-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.hotel-info {
  flex: 2;
}

.hotel-info h2 {
  font-size: 20px;
  color: #004466;
  margin: 0;
  padding: 0;
  line-height: 1.4;
  word-break: break-word;
}

.hotel-info p {
  margin: 4px 0;
  line-height: 1.6;
}

.hotel-info ul {
  list-style: none;
  padding-left: 0;
}

.hotel-info ul li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 18px;
}

.hotel-info ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffa500; /* Orange bullet */
  font-size: 18px;
}

/* Hotel Image */
.hotel-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotel-image img {
  width: 300px;       /* fixed width */
  height: 200px;      /* fixed height */
  object-fit: cover;  /* crops to fit while keeping proportions */
  border-radius: 6px; /* optional: rounded corners */
}

.hotel-image img:hover {
  transform: scale(1.05);
}

/* Hotel Contact */
.hotel-contact {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}

.hotel-contact strong {
  color: #004466;
}

.hotel-contact p {
  margin: 2px 0;
  font-size: 14px;
  color: #555;
}

/* Contact Layout */
.contact-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-header img {
  width: 180px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.contact-details {
  flex: 1;
}

.contact-details p {
  margin: 6px 0;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

.contact-details strong {
  color: #004466;
}

.contact-bio {
  background: #f9f9f9;
  padding: 20px;
  border-left: 4px solid #ffa500; /* Orange border */
  border-radius: 6px;
  box-shadow: inset 0 1px 4px rgba(0,0,0,0.05);
}

.contact-bio p {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  text-align: justify;
}


.two-column {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.two-column div {
  flex: 1;
  min-width: 300px;
}

.main-content h2,
.main-content h3,
.main-content h4 {
  color: #333;
  margin-top: 20px;
}

.main-content p,
.main-content li {
  line-height: 1.6;
  color: #444;
}

.main-content hr {
  margin: 30px 0;
  border: none;
  border-top: 1px dashed #ccc;
}

/* Contact Form */
.contact-form {
  background: #f1f5f8;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin-top: 30px;
}

.contact-form h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #005580;
  text-transform: uppercase;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  margin-bottom: 15px;
  transition: border-color 0.3s;
  background-color: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #005580;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .form-buttons {
  display: flex;
  gap: 15px;
}

.contact-form button {
  padding: 10px 20px;
  background-color: #005580;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #ffa500;
}
