@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Jost:wght@300;400;500&display=swap');
body, html { margin: 0; padding: 0; font-family: 'Jost', sans-serif; color: #444; background: #fff; scroll-behavior: smooth; }
.float-header { position: fixed; top: 0; left: 0; width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 25px 60px; box-sizing: border-box; z-index: 100; background: linear-gradient(rgba(0,0,0,0.6), transparent); transition: background 0.3s; }
.float-header:hover { background: rgba(0,0,0,0.8); }
.hotel-logo { color: white; cursor: pointer; text-align: center; }
.hotel-logo h1 { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 400; margin: 0; letter-spacing: 2px; }
.hotel-logo span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 4px; opacity: 0.8; }
.hotel-nav { display: flex; align-items: center; gap: 40px; }
.hotel-nav a { color: white; text-decoration: none; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px; cursor: pointer; opacity: 0.8; transition: opacity 0.3s; }
.hotel-nav a:hover, .hotel-nav a.active { opacity: 1; }
.book-now { border: 1px solid white; padding: 10px 20px; border-radius: 2px; }
.book-now:hover { background: white; color: black !important; }
.page { display: none; }
.page.active { display: block; animation: slowFade 0.8s ease; }
.fullscreen-hero { height: 100vh; background-size: cover; background-position: center; display: flex; flex-direction: column; justify-content: center; align-items: center; color: white; position: relative; }
.hero-center { text-align: center; max-width: 800px; padding: 20px; }
.hero-center h2 { font-family: 'Cormorant Garamond', serif; font-size: 5rem; font-weight: 300; margin: 0 0 20px 0; }
.hero-center p { font-size: 1.2rem; font-weight: 300; letter-spacing: 1px; }
.scroll-down { position: absolute; bottom: 40px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 3px; animation: bounce 2s infinite; }
.content-panel { padding: 100px 10%; }
.pt-large { padding-top: 150px; }
.bg-light { background: #fdfbf9; }
.bg-dark { background: #2c2927; color: white; }
.split-row { display: flex; justify-content: center; }
.text-block { max-width: 700px; text-align: center; }
.text-block h3, .panel-title { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; margin-bottom: 20px; color: #2c2927; }
.text-block p { font-size: 1.2rem; line-height: 1.8; color: #666; }
.room-gallery { display: flex; flex-direction: column; gap: 60px; margin-top: 50px; }
.room { display: flex; gap: 50px; align-items: center; }
.room:nth-child(even) { flex-direction: row-reverse; }
.room-img { flex: 1; height: 400px; background-size: cover; background-position: center; border-radius: 2px; }
.mock-room-1 { background-image: url('https://images.unsplash.com/photo-1578683010236-d716f9a3f461?auto=format&fit=crop&w=800&q=80'); }
.mock-room-2 { background-image: url('https://images.unsplash.com/photo-1542718610-a1d656d1884c?auto=format&fit=crop&w=800&q=80'); }
.room-info { flex: 1; padding: 40px; }
.room-info h4 { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; margin: 0 0 15px 0; }
.room-info p { font-size: 1.1rem; line-height: 1.6; color: #666; margin-bottom: 20px; }
.price { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 500; }
.booking-widget { max-width: 600px; margin: 0 auto; background: white; color: #333; padding: 50px; border-radius: 2px; text-align: center; }
.booking-widget h3 { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; margin: 0 0 10px 0; }
.date-row { display: flex; gap: 20px; margin-bottom: 20px; margin-top: 30px; }
.input-col { flex: 1; display: flex; flex-direction: column; text-align: left; margin-bottom: 20px; }
.input-col label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; color: #888; }
.input-col input, .input-col select { padding: 15px; border: 1px solid #ddd; font-family: 'Jost', sans-serif; background: #fff; }
.submit-book { background: #2c2927; color: white; border: none; padding: 18px; width: 100%; text-transform: uppercase; font-family: 'Jost', sans-serif; letter-spacing: 2px; cursor: pointer; transition: background 0.3s; margin-top: 10px; }
.submit-book:hover { background: #000; }
.hotel-footer { text-align: center; padding: 60px 10%; background: #1a1817; color: #888; border-top: 1px solid rgba(255,255,255,0.05); }
.hotel-footer p { margin-bottom: 20px; font-size: 0.85rem; letter-spacing: 1px; }
.f-links { display: flex; justify-content: center; gap: 30px; }
.f-links a { color: #888; text-decoration: none; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 2px; }
.f-links a:hover { color: white; }
@keyframes slowFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(10px); } }
