/* CSS Variables for Premium Theme */
:root {
  --primary: #0A2540; /* Navy Blue */
  --accent: #D4AF37; /* Gold */
  --accent-hover: #b5952f;
  --bg-light: #F8F9FA;
  --text-dark: #333333;
  --text-light: #777777;
  --white: #FFFFFF;
  --font-main: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --transition: all 0.3s ease;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
  --bottom-nav-height: 70px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); color: var(--text-dark); line-height: 1.6; background-color: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-subtitle { color: var(--accent); font-size: 1rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; display: block; }
.section-title { font-family: var(--font-serif); font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-white-50 { color: rgba(255, 255, 255, 0.7); }
.dark-bg { background-color: var(--primary); }
.light-bg { background-color: var(--bg-light); }
.mt-4 { margin-top: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* Buttons */
.btn-primary { display: inline-block; background-color: var(--accent); color: var(--white); padding: 12px 28px; border-radius: 30px; font-weight: 600; transition: var(--transition); border: 2px solid var(--accent); }
.btn-primary:hover { background-color: transparent; color: var(--accent); }
.btn-primary.large { padding: 15px 35px; font-size: 1.1rem; }
.btn-outline { display: inline-block; background-color: transparent; color: var(--primary); padding: 12px 28px; border-radius: 30px; font-weight: 600; transition: var(--transition); border: 2px solid var(--primary); }
.btn-outline:hover { background-color: var(--primary); color: var(--white); }
.btn-outline-white { display: inline-block; background-color: transparent; color: var(--white); padding: 12px 28px; border-radius: 30px; font-weight: 600; transition: var(--transition); border: 2px solid var(--white); }
.btn-outline-white:hover { background-color: var(--white); color: var(--primary); }

/* Navbar */
.navbar { position: fixed; top: 0; left: 0; width: 100%; padding: 20px 0; z-index: 1000; transition: var(--transition); background: var(--white); box-shadow: var(--shadow); }
.navbar.transparent { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255, 255, 255, 0.1); box-shadow: none; }
.navbar.transparent .nav-links a, .navbar.transparent .menu-btn { color: var(--white); }
.navbar.scrolled { background: rgba(255, 255, 255, 0.95); padding: 12px 0; box-shadow: var(--shadow); }
.navbar.scrolled .nav-links a, .navbar.scrolled .menu-btn { color: var(--primary); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 50px; object-fit: contain; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { color: var(--primary); font-weight: 500; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background-color: var(--accent); transition: var(--transition); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.menu-btn { display: none; font-size: 2rem; color: var(--primary); cursor: pointer; }

/* Mobile Menu Slide-in Overlay */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background: var(--white); z-index: 1001; display: flex; flex-direction: column; padding: 80px 30px; box-shadow: -5px 0 20px rgba(0,0,0,0.1); transition: right 0.4s ease; }
.mobile-menu.active { right: 0; }
.mobile-menu .close-btn { position: absolute; top: 20px; right: 20px; font-size: 2rem; color: var(--primary); cursor: pointer; }
.mobile-menu a { font-size: 1.2rem; color: var(--primary); margin-bottom: 20px; font-weight: 500; display: block; }

/* Hero Banner (Home Page) */
.hero { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white); padding-top: 80px; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -2; overflow: hidden; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; animation: zoomIn 20s infinite alternate; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10, 37, 64, 0.75); z-index: 1; }
.hero-content { max-width: 800px; padding: 0 20px; z-index: 2; position: relative; text-shadow: 2px 4px 10px rgba(0,0,0,0.8); }
.hero h1 { font-family: var(--font-serif); font-size: 4.5rem; line-height: 1.2; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; margin-bottom: 40px; opacity: 0.9; }
.hero-actions { display: flex; gap: 20px; justify-content: center; align-items: center; }
@keyframes zoomIn { 0% { transform: scale(1); } 100% { transform: scale(1.1); } }

/* Page Header Banner (Inner Pages) */
.page-header { height: 50vh; min-height: 350px; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; }
.page-header-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.page-header-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10, 37, 64, 0.75); z-index: 1; }
.page-header h1 { font-family: var(--font-serif); font-size: 4rem; color: var(--white); margin-bottom: 10px; text-shadow: 2px 4px 10px rgba(0,0,0,0.8); z-index: 2; position: relative; }
.page-header p { color: var(--accent); font-size: 1.2rem; letter-spacing: 2px; text-transform: uppercase; text-shadow: 1px 2px 5px rgba(0,0,0,0.8); z-index: 2; position: relative; }

/* Grid Layouts */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* Stats Highlight / Features */
.stats { margin-top: -50px; position: relative; z-index: 10; }

/* Room Cards */
.room-card { background: var(--white); border-radius: 15px; overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.room-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.room-img { height: 250px; overflow: hidden; position: relative; }
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.room-card:hover .room-img img { transform: scale(1.1); }
.room-price { position: absolute; bottom: 15px; right: 15px; background: var(--accent); color: var(--white); padding: 8px 15px; border-radius: 30px; font-weight: bold; }
.room-info { padding: 25px; }
.room-info h3 { font-family: var(--font-serif); color: var(--primary); margin-bottom: 10px; font-size: 1.5rem; }
.room-amenities { display: flex; gap: 15px; margin-bottom: 20px; color: var(--text-light); border-bottom: 1px solid #eee; padding-bottom: 15px; }
.room-amenities i { color: var(--accent); margin-right: 5px; }

/* FAQ Section */
.faq-item { background: var(--white); border-radius: 10px; margin-bottom: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); overflow: hidden; }
.faq-question { padding: 20px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 600; color: var(--primary); }
.faq-question i { transition: transform 0.3s; color: var(--accent); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; color: var(--text-light); }
.faq-item.active .faq-answer { padding: 0 20px 20px; max-height: 500px; }

/* CTA Banner */
.cta-banner { background: linear-gradient(rgba(10,37,64,0.9), rgba(10,37,64,0.9)), url('/public/assets/images/6198a7d8-1aae-4bcf-86e7-c5516383518d-scaled.jpg') center/cover; text-align: center; color: var(--white); padding: 100px 20px; background-attachment: fixed; }

/* Contact Details */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info-card { background: var(--bg-light); padding: 30px; border-radius: 15px; text-align: center; margin-bottom: 20px; }
.contact-info-card i { font-size: 3rem; color: var(--accent); margin-bottom: 15px; }
.contact-form { background: var(--white); padding: 40px; border-radius: 15px; box-shadow: var(--shadow); }
.form-group { margin-bottom: 20px; }
.form-control { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 8px; font-family: inherit; font-size: 1rem; }
.form-control:focus { outline: none; border-color: var(--accent); }

/* Footer */
.footer { background: var(--primary); color: var(--white); padding: 80px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-logo { height: 60px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.about-col p { color: rgba(255, 255, 255, 0.7); margin-bottom: 20px; }
.social-links a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(255, 255, 255, 0.1); border-radius: 50%; margin-right: 10px; font-size: 1.2rem; }
.social-links a:hover { background: var(--accent); }
.footer-col h3 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 25px; position: relative; }
.footer-col h3::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 40px; height: 2px; background: var(--accent); }
.footer-col ul li { margin-bottom: 15px; }
.footer-col ul a { color: rgba(255, 255, 255, 0.7); }
.footer-col ul a:hover { color: var(--accent); padding-left: 5px; }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.5); font-size: 0.9rem; }

/* Mobile Bottom Footer Menu */
.mobile-bottom-nav { display: none; position: fixed; bottom: 0; left: 0; width: 100%; height: var(--bottom-nav-height); background: var(--white); box-shadow: 0 -5px 20px rgba(0,0,0,0.1); z-index: 1000; align-items: center; justify-content: space-around; padding: 0 10px; border-top-left-radius: 20px; border-top-right-radius: 20px; }
.bottom-nav-item { display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--text-light); font-size: 0.75rem; font-weight: 500; text-decoration: none; transition: var(--transition); flex: 1; }
.bottom-nav-item i { font-size: 1.5rem; margin-bottom: 4px; }
.bottom-nav-item.active, .bottom-nav-item:hover { color: var(--primary); }
.bottom-nav-item.highlight { background: var(--accent); color: var(--white); width: 55px; height: 55px; border-radius: 50%; transform: translateY(-20px); box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4); flex: 0 0 55px; }
.bottom-nav-item.highlight i { font-size: 1.8rem; margin-bottom: 0; }
.bottom-nav-item.highlight span { display: none; }

/* Animations */
.fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero h1 { font-size: 3.5rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  body { padding-bottom: calc(var(--bottom-nav-height) + 10px); }
  .nav-links, .desktop-btn { display: none; }
  .menu-btn { display: none; /* Already removed in HTML, but kept for safety */ }
  .nav-container { justify-content: center; } /* Centers the logo on mobile */
  .mobile-bottom-nav { display: flex; }
  .hero h1 { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary, .hero-actions .btn-outline, .hero-actions .btn-outline-white { width: 100%; }
  .stats { margin-top: 20px !important; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-grid .about-col { grid-column: 1 / -1; text-align: center; }
  .footer-grid .about-col .footer-logo { margin: 0 auto 20px; }
  .section { padding: 50px 0; }
  .page-header h1 { font-size: 2.5rem; }
  .section-title { font-size: 1.6rem; margin-bottom: 15px; }
  .section-subtitle { font-size: 0.85rem; }
  .cta-banner h2 { font-size: 2rem !important; }
}
