* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

h1, h2, h3, h4 { 
  margin: 0 0 10px 0; 
  font-weight: 700; 
  text-transform: uppercase; }

a { 
  text-decoration: none; 
  color: inherit; transition: 0.3s; }

.container { 
  max-width: 1100px; 
  margin: 0 auto; 
  padding: 0 20px; }

.section { 
  padding: 60px 0; }

.section-title { 
  text-align: center; 
  font-size: 2rem; 
  margin-bottom: 40px; 
  color: #0f2b4c; 
  position: relative; }

.section-title::after {
  content: ''; 
  display: block; 
  width: 60px; 
  height: 3px; 
  background: #c5a059;
  margin: 15px auto 0;
}

.top-bar { 
  background-color: #0a1f38; 
  color: #fff; 
  padding: 8px 0; 
  font-size: 0.9rem; }

.flex-end { 
  display: flex; 
  justify-content: flex-end; }

.top-bar a { 
  color: #fff; 
  font-weight: bold; }

  .main-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky; top: 0; z-index: 1000;
}

.header-content {
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding: 15px 20px;
}

.brand h1 { 
  font-size: 1.5rem; 
  color: #0f2b4c; 
  margin: 0; }

.brand span { 
  font-size: 0.9rem; 
  color: #c5a059; 
  display: block; 
  letter-spacing: 2px; }

.desktop-nav a {
  margin: 0 15px; 
  font-weight: 500; 
  font-size: 0.95rem; 
  color: #333;
}

.desktop-nav a:hover { 
  color: #c5a059; }

.btn-book-nav {
  background: #c5a059; 
  color: #fff; 
  padding: 10px 20px; 
  border-radius: 4px; 
  font-weight: bold;
}

.btn-book-nav:hover { 
  background: #b08d4b; }

.mobile-toggle { 
  display: none; 
  font-size: 1.5rem; 
  cursor: pointer; }

.hero {
  position: relative; 
  height: 500px; 
  overflow: hidden; 
  background: #333;
}

.slider-container { 
  width: 100%; 
  height: 100%; 
  position: relative; }

.slide {
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%;
  background-size: cover; 
  background-position: center; 
  opacity: 0; 
  transition: opacity 1s ease;
}

.slide.active { 
  opacity: 1; }

.hero-overlay {
  position: absolute; 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%);
  text-align: center; 
  color: white; 
  background: rgba(0, 0, 0, 0.6);
  padding: 40px; 
  width: 80%; 
  max-width: 800px; 
  border: 2px solid rgba(255,255,255,0.2);
}

.hero-overlay h2 { 
  font-size: 2.5rem; 
  margin-bottom: 10px; 
  letter-spacing: 2px; }

.hero-overlay h3 { 
  font-size: 1.2rem; 
  font-weight: 300; 
  margin-bottom: 30px; }

.btn-hero {
  background: #c5a059; 
  color: #fff; 
  padding: 12px 30px; 
  font-weight: bold; 
  font-size: 1rem;
}

.arrow {
  position: absolute; 
  top: 50%; 
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5); 
  border: none; 
  color: white;
  font-size: 2rem; 
  padding: 10px; 
  cursor: pointer; 
  z-index: 10;
}

.arrow.left { 
  left: 10px; }

.arrow.right { right: 10px; }

.features-section { 
  background: #fff; }

.features-grid {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
  gap: 30px; 
  text-align: center;
}

.feature-card { 
  padding: 20px; 
  border: 1px solid #eee; 
  transition: 0.3s; }

.feature-card:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

.feature-card .icon { 
  font-size: 3rem; 
  margin-bottom: 15px; }

.feature-map {
  margin-top: 15px;
  border-radius: 4px;
  overflow: hidden; 
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border: 1px solid #ddd;
}
.feature-map iframe {
  display: block; 
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 30px;
}

.room-card { 
  background: white; 
  border: 1px solid #ddd; 
  position: relative; 
}

.room-slideshow {
  position: relative;
  width: 100%;
  height: 250px; 
  overflow: hidden;
  background-color: #f0f0f0;
}

.room-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0; 
  transition: opacity 1s ease; 
  z-index: 0;
}

.room-slide.active {
  opacity: 1; 
  z-index: 1; 
}

.room-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%); 
  background-color: rgba(0, 0, 0, 0.5); 
  color: white;
  border: none;
  font-size: 1.5rem;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10; 
  transition: background 0.3s;
}

.room-arrow:hover {
  background-color: rgba(197, 160, 89, 0.9);
}

.room-arrow.left {
  left: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.room-arrow.right {
  right: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.room-info { 
  padding: 20px; 
  text-align: center; 
}
.room-info button {
  background: #0f2b4c; 
  color: white; 
  border: none; 
  padding: 10px 20px; 
  cursor: pointer; 
  margin-top: 10px;
}

.booking-section { 
  background: #0f2b4c; 
  text-align: center; }

.booking-section .section-title.white { 
  color: #fff; }

.booking-form { 
  display: flex; 
  justify-content: center; 
  gap: 10px; 
  flex-wrap: wrap; 
}

.booking-form input { 
  padding: 12px; 
  border: none; 
  border-radius: 4px; 
  width: 200px; 
}

.booking-form button {
  padding: 12px 25px; 
  background: #c5a059; 
  color: white; 
  border: none; 
  font-weight: bold; 
  cursor: pointer;
}

footer { 
  background: #111; 
  color: #aaa; 
  padding-top: 50px; }

.footer-content {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
  gap: 40px; 
  margin-bottom: 40px;
}
.footer-col h4 { 
  color: #fff; 
  margin-bottom: 20px; 
  border-bottom: 2px solid #333; 
  padding-bottom: 10px; 
  display: inline-block; 
}
.footer-col a { 
  display: block; 
  margin-bottom: 10px; 
}
.footer-col a:hover { 
  color: #fff; 
  padding-left: 5px; 
}
.footer-bottom { 
  background: #000; 
  text-align: center; 
  padding: 20px; 
  color: #666; 
  font-size: 0.85rem; 
}

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .mobile-toggle { display: block; }
  .hero-overlay h2 { font-size: 1.5rem; }
}