/* Reset and base styles */ 
* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
} 
 
body { 
  font-family: 'Montserrat', sans-serif; 
  line-height: 1.6; 
  color: #f0f0f0; 
  background-color: #0a0a0a; 
} 
 
h1, h2, h3, h4, h5, h6 { 
  font-family: 'Cinzel', serif; 
} 
 
.container { 
  width: 90%; 
  max-width: 1200px; 
  margin: 0 auto; 
} 
 
/* Header styles */ 
header { 
  background-color: #0a0a0a; 
  color: #D4AF37; 
  padding: 1rem 0; 
  position: sticky; 
  top: 0; 
  z-index: 1000; 
  border-bottom: 2px solid #D4AF37; 
} 
 
.header-container { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
} 
 
.logo img { 
  height: 60px; 
  width: auto; 
  transition: all 0.3s ease; 
  max-width: 100%; 
} 
 
.nav-links { 
  display: flex; 
  list-style: none; 
} 
 
.nav-links li { 
  position: relative; 
} 
 
.nav-links a { 
  color: #D4AF37; 
  text-decoration: none; 
  padding: 0.5rem 1rem; 
  display: block; 
  transition: color 0.3s; 
  font-family: 'Cinzel', serif; 
} 
 
.nav-links a:hover { 
  color: #FFD700; 
} 
 
.menu-btn { 
  display: none; 
  background: none; 
  border: none; 
  color: #D4AF37; 
  font-size: 1.5rem; 
  cursor: pointer; 
} 
 
/* Hero section */ 
.hero-section { 
  position: relative; 
  height: 100vh; 
  overflow: hidden; 
} 
 
.hero-carousel { 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  z-index: -1; 
} 
 
.hero-slide { 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  opacity: 0; 
  transition: opacity 1.5s ease-in-out; 
} 
 
.hero-slide img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
} 
 
.hero-overlay { 
  position: relative; 
  background-color: rgba(10, 10, 10, 0.7); 
  color: #f0f0f0; 
  text-align: center; 
  padding: 2rem; 
  height: 100%; 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center; 
} 
 
.landing-welcome { 
  font-size: 3rem; 
  margin-bottom: 1rem; 
  color: #D4AF37; 
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); 
} 
 
.hero-overlay h2 { 
  color: #f0f0f0; 
  margin-bottom: 1rem; 
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); 
} 
 
.cta-button { 
  display: inline-block; 
  background-color: #8B0000; 
  color: #ffffff; 
  padding: 1rem 2rem; 
  text-decoration: none; 
  border-radius: 4px; 
  margin-top: 2rem; 
  font-weight: bold; 
  transition: background-color 0.3s, transform 0.2s; 
  border: 1px solid #D4AF37; 
  font-family: 'Montserrat', sans-serif; 
} 
 
.cta-button:hover { 
  background-color: #A52A2A; 
  transform: translateY(-2px); 
} 
 
/* Content sections */ 
.content-section { 
  padding: 4rem 0; 
  background-color: #1a1a1a; 
} 
 
.content-section h2 { 
  text-align: center; 
  margin-bottom: 2rem; 
  font-size: 2.5rem; 
  color: #D4AF37; 
} 
 
.content-section p { 
  margin-bottom: 1rem; 
} 
 
/* Rooms grid */ 
.rooms-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 2rem; 
  margin-top: 2rem; 
} 
 
.room-card { 
  background-color: #1a1a1a; 
  border-radius: 8px; 
  overflow: hidden; 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); 
  border: 1px solid #333; 
  transition: transform 0.3s, box-shadow 0.3s; 
} 
 
.room-card:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3); 
} 
 
.room-slideshow { 
  position: relative; 
  height: 250px; 
  overflow: hidden; 
} 
 
.room-slide { 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  opacity: 0; 
  transition: opacity 0.5s ease; 
} 
 
.room-slide img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
} 
 
.prev-room, .next-room { 
  position: absolute; 
  top: 50%; 
  transform: translateY(-50%); 
  background-color: rgba(0, 0, 0, 0.5); 
  color: #D4AF37; 
  border: none; 
  padding: 0.5rem; 
  cursor: pointer; 
  z-index: 10; 
  transition: background-color 0.3s; 
} 
 
.prev-room:hover, .next-room:hover { 
  background-color: rgba(0, 0, 0, 0.8); 
} 
 
.prev-room { 
  left: 0; 
} 
 
.next-room { 
  right: 0; 
} 
 
.room-card h3, .room-card p { 
  padding: 0 1rem; 
  color: #f0f0f0; 
} 
 
.room-card h3 { 
  margin: 1rem 0 0.5rem; 
  color: #D4AF37; 
  font-family: 'Cinzel', serif; 
} 
 
.book-room-btn { 
  display: block; 
  width: calc(100% - 2rem); 
  margin: 1rem; 
  padding: 0.75rem; 
  background-color: #8B0000; 
  color: #f0f0f0; 
  border: none; 
  border-radius: 4px; 
  cursor: pointer; 
  transition: background-color 0.3s; 
  border: 1px solid #D4AF37; 
  font-family: 'Montserrat', sans-serif; 
} 
 
.book-room-btn:hover { 
  background-color: #A52A2A; 
} 
 
/* Gallery slideshow */ 
.gallery-slideshow { 
  position: relative; 
  max-width: 100%; 
  margin: 2rem auto; 
  overflow: hidden; 
  border-radius: 8px; 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); 
  border: 1px solid #333; 
  height: 70vh; 
} 
 
.gallery-slide { 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  opacity: 0; 
  transition: opacity 0.8s ease; 
} 
 
.gallery-slide.active { 
  opacity: 1; 
} 
 
.gallery-slide img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
} 
 
.gallery-prev, .gallery-next { 
  position: absolute; 
  top: 50%; 
  transform: translateY(-50%); 
  background-color: rgba(0, 0, 0, 0.5); 
  color: #D4AF37; 
  border: none; 
  padding: 1rem; 
  cursor: pointer; 
  font-size: 1.5rem; 
  z-index: 10; 
  transition: background-color 0.3s; 
} 
 
.gallery-prev:hover, .gallery-next:hover { 
  background-color: rgba(0, 0, 0, 0.8); 
} 
 
.gallery-prev { 
  left: 0; 
} 
 
.gallery-next { 
  right: 0; 
} 
 
.gallery-dots { 
  position: absolute; 
  bottom: 15px; 
  width: 100%; 
  display: flex; 
  justify-content: center; 
  gap: 8px; 
  z-index: 10; 
} 
 
.gallery-dot { 
  width: 12px; 
  height: 12px; 
  border-radius: 50%; 
  background-color: rgba(255, 255, 255, 0.5); 
  cursor: pointer; 
  transition: background-color 0.3s; 
} 
 
.gallery-dot.active { 
  background-color: #D4AF37; 
} 
 
/* Modal */ 
.modal { 
  display: none; 
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  background-color: rgba(0, 0, 0, 0.9); 
  z-index: 1000; 
  justify-content: center; 
  align-items: center; 
} 
 
.modal-content { 
  position: relative; 
  max-width: 90%; 
  max-height: 90%; 
} 
 
.modal-close { 
  position: absolute; 
  top: 20px; 
  right: 30px; 
  color: #D4AF37; 
  font-size: 40px; 
  cursor: pointer; 
  z-index: 1001; 
} 
 
.modal-slideshow { 
  position: relative; 
  width: 100%; 
  height: 100%; 
} 
 
.modal-slide { 
  display: none; 
  text-align: center; 
} 
 
.modal-slide img { 
  max-width: 100%; 
  max-height: 80vh; 
  object-fit: contain; 
} 
 
.prev-modal, .next-modal { 
  position: absolute; 
  top: 50%; 
  transform: translateY(-50%); 
  background-color: rgba(0, 0, 0, 0.5); 
  color: #D4AF37; 
  border: none; 
  padding: 1rem; 
  cursor: pointer; 
  font-size: 1.5rem; 
} 
 
.prev-modal { 
  left: 0; 
} 
 
.next-modal { 
  right: 0; 
} 
 
/* Reservation form */ 
.reservation-section { 
  background-color: #1a1a1a; 
  padding: 2rem; 
  border-radius: 8px; 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); 
  margin: 2rem auto; 
  border: 1px solid #333; 
} 
 
.reservation-policy { 
  margin-bottom: 2rem; 
  padding: 1.5rem; 
  background-color: #252525; 
  border-radius: 8px; 
  border: 1px solid #333; 
} 
 
.reservation-policy h3, .reservation-policy h4 { 
  margin-top: 1.5rem; 
  margin-bottom: 0.5rem; 
  color: #D4AF37; 
  font-family: 'Cinzel', serif; 
} 
 
.gold-header { 
  color: #D4AF37 !important; 
  font-family: 'Cinzel', serif; 
} 
 
.reservation-policy ul { 
  margin-left: 2rem; 
  margin-bottom: 1rem; 
} 
 
.reservation-policy li { 
  color: #f0f0f0; 
} 
 
.reservation-form { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 1rem; 
} 
 
.form-group { 
  margin-bottom: 1rem; 
} 
 
.form-group label { 
  display: block; 
  margin-bottom: 0.5rem; 
  font-weight: bold; 
  color: #D4AF37; 
  font-family: 'Montserrat', sans-serif; 
} 
 
.form-group input, .form-group select, .form-group textarea { 
  width: 100%; 
  padding: 0.75rem; 
  border: 1px solid #333; 
  border-radius: 4px; 
  font-size: 1rem; 
  background-color: #252525; 
  color: #f0f0f0; 
  font-family: 'Montserrat', sans-serif; 
} 
 
.conditional-field { 
  display: none; 
  grid-column: 1 / -1; 
} 
 
.conditional-field label { 
  color: #D4AF37; 
} 
 
button[type="submit"] { 
  grid-column: 1 / -1; 
  background-color: #8B0000; 
  color: #f0f0f0; 
  padding: 1rem; 
  border: none; 
  border-radius: 4px; 
  cursor: pointer; 
  font-size: 1.1rem; 
  margin-top: 1rem; 
  transition: background-color 0.3s; 
  border: 1px solid #D4AF37; 
  font-family: 'Montserrat', sans-serif; 
} 
 
button[type="submit"]:hover { 
  background-color: #A52A2A; 
} 
 
/* Footer */ 
footer { 
  background-color: #0a0a0a; 
  color: #D4AF37; 
  text-align: center; 
  padding: 2rem 0; 
  margin-top: 4rem; 
  border-top: 2px solid #D4AF37; 
} 
 
.contact-link { 
  color: #D4AF37; 
  margin-bottom: 1rem; 
  display: inline-block; 
  text-decoration: none; 
  font-family: 'Montserrat', sans-serif; 
} 
 
.contact-link:hover { 
  color: #FFD700; 
} 
 
footer p { 
  color: #f0f0f0; 
  font-family: 'Montserrat', sans-serif; 
} 
 
/* Animations */ 
.fade-in-section { 
  opacity: 0; 
  transform: translateY(20px); 
  transition: opacity 0.6s ease, transform 0.6s ease; 
} 
 
.fade-in-section.is-visible { 
  opacity: 1; 
  transform: translateY(0); 
} 
 
/* Responsive styles */ 
@media (max-width: 768px) { 
  .menu-btn { 
    display: block; 
  } 
   
  .nav-links { 
    display: none; 
    flex-direction: column; 
    position: absolute; 
    top: 100%; 
    left: 0; 
    width: 100%; 
    background-color: #0a0a0a; 
    padding: 1rem 0; 
    border-top: 1px solid #D4AF37; 
  } 
   
  .nav-links.active { 
    display: flex; 
  } 
   
  .logo img { 
    height: 45px; 
  } 
   
  .landing-welcome { 
    font-size: 2rem; 
  } 
   
  .hero-overlay h2 { 
    font-size: 1.2rem; 
  } 
   
  .hero-overlay p { 
    font-size: 0.9rem; 
  } 
   
  .rooms-grid { 
    grid-template-columns: 1fr; 
  } 
   
  .reservation-form { 
    grid-template-columns: 1fr; 
  } 
   
  .gallery-slideshow { 
    height: 50vh; 
  } 
   
  .gallery-prev, .gallery-next { 
    padding: 0.5rem; 
    font-size: 1.2rem; 
  } 
   
  .content-section h2 { 
    font-size: 2rem; 
  } 
} 
 
@media (max-width: 480px) { 
  .logo img { 
    height: 35px; 
  } 
   
  .landing-welcome { 
    font-size: 1.8rem; 
  } 
   
.cta-button { 
padding: 0.8rem 1.5rem; 
font-size: 0.9rem; 
} 
.gallery-slideshow { 
height: 40vh; 
} 
.room-slideshow { 
height: 200px; 
} 
.logo img { 
height: 30px; 
} 
} 