@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
    --primary: #ff0000;
    --secondary: #800000;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Lato', sans-serif; line-height: 1.6; color: var(--dark); background: #fff; }
a { text-decoration: none; transition: 0.3s; }
img { max-width: 100%; }

/* Typography */
h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--secondary); margin-bottom: 15px; }
.text-center { text-align: center; }
.section-pad { padding: 80px 20px; max-width: 1200px; margin: 0 auto; }
.btn-red { background: var(--primary); color: #fff; padding: 12px 30px; border: none; cursor: pointer; font-weight: bold; text-transform: uppercase; }
.btn-red:hover { background: var(--secondary); }

/* Header */
.top-bar { background: var(--secondary); color: #fff; padding: 8px 0; font-size: 0.9rem; text-align: center; }
header { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 10px 20px; max-width: 1200px; margin: 0 auto; }
.logo img { height: 60px; }
.nav-links a { margin-left: 20px; color: var(--dark); font-weight: bold; text-transform: uppercase; font-size: 0.9rem; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }

/* Hero Slider */
.hero-section { position: relative; height: 500px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s; }
.hero-slide.active { opacity: 1; }
.hero-content { position: relative; z-index: 2; background: rgba(255,255,255,0.9); padding: 40px; text-align: center; max-width: 600px; border-top: 5px solid var(--primary); }

/* Inner Page Banner */
.page-banner { height: 300px; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; position: relative; }
.page-banner::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); }
.page-banner h1 { position: relative; z-index: 2; color: #fff; font-size: 3rem; }

/* Grids */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }

/* Service/Amenity Box */
.amenity-box { text-align: center; padding: 20px; border: 1px solid #eee; border-radius: 8px; transition: 0.3s; }
.amenity-box:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.1); transform: translateY(-5px); }
.amenity-box img { height: 60px; margin-bottom: 15px; }

/* Footer */
footer { background: #111; color: #aaa; padding: 60px 0 20px; margin-top: 50px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; padding: 0 20px; }
.footer-col h4 { color: #fff; margin-bottom: 20px; }
.footer-col a { color: #aaa; display: block; margin-bottom: 10px; }
.footer-col a:hover { color: var(--primary); }

/* Mobile Sticky */
.mobile-sticky { display: none; position: fixed; bottom: 0; left: 0; width: 100%; z-index: 999; }
.sticky-btn { flex: 1; padding: 15px; text-align: center; color: #fff; font-weight: bold; }

/* Modal */
.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); }
.modal-content { background: #fff; margin: 10% auto; padding: 30px; width: 90%; max-width: 450px; position: relative; border-top: 5px solid var(--primary); }
.close-btn { position: absolute; right: 15px; top: 10px; font-size: 30px; cursor: pointer; }
.form-input { width: 100%; padding: 12px; border: 1px solid #ddd; margin-bottom: 15px; }

@media (max-width: 768px) {
    .nav-links { display: none; } /* Mobile Menu Toggle needed */
    .mobile-sticky { display: flex; }
    .hero-content { width: 90%; }
}