:root {
    --navy-blue: #0A2342;
    --steel-grey: #A4A4A4;
    --white: #FFFFFF;
    --light-bg: #F4F6F8;
    --text-color: #2C3E50;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Manrope', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--light-bg);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 80px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
.core-header { background: var(--white); padding: 20px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; color: var(--navy-blue); display: flex; align-items: center; gap: 8px; letter-spacing: 1px; }
.blue { color: var(--steel-grey); }
.hub-icon { font-size: 1.8rem; }

.hotel-nav a { margin-left: 25px; font-weight: 500; font-size: 0.95rem; color: #555; text-transform: uppercase; }
.hotel-nav a:hover, .hotel-nav a.active { color: var(--navy-blue); }

.btn-book { background: var(--navy-blue); color: var(--white) !important; padding: 10px 25px; border-radius: 4px; font-weight: 700; font-size: 0.85rem; }
.btn-book:hover { background: #15355e; }

/* Mobile Menu */
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.mobile-toggle span { width: 25px; height: 3px; background: var(--navy-blue); }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--navy-blue); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.4s; }
.mobile-menu.open { right: 0; }
.close-btn { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 2rem; color: var(--white); cursor: pointer; }
.mobile-menu a { color: var(--white); font-size: 1.5rem; margin: 15px 0; font-family: var(--font-heading); }

/* Hero */
.hero-hotel { height: 85vh; background-size: cover; background-position: center; position: relative; }
.overlay { width: 100%; height: 100%; background: linear-gradient(rgba(10, 35, 66, 0.7), rgba(10, 35, 66, 0.4)); display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-content { color: var(--white); max-width: 800px; padding: 20px; }
.stars { color: #FFD700; font-weight: 700; letter-spacing: 2px; font-size: 0.9rem; display: block; margin-bottom: 15px; }
.hero-content h1 { font-family: var(--font-heading); font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; }
.hero-content p { font-size: 1.1rem; margin-bottom: 40px; opacity: 0.9; }

.booking-widget { background: var(--white); padding: 20px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); display: inline-block; }
#checkRate { display: flex; gap: 15px; align-items: flex-end; flex-wrap: wrap; }
.input-grp { text-align: left; }
.input-grp label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--navy-blue); margin-bottom: 5px; }
.input-grp input, .input-grp select { padding: 10px; border: 1px solid #ddd; border-radius: 4px; font-family: var(--font-body); color: var(--text-color); min-width: 150px; }
#checkRate button { background: var(--navy-blue); color: var(--white); border: none; padding: 12px 25px; border-radius: 4px; font-weight: 700; cursor: pointer; transition: 0.3s; }
#checkRate button:hover { background: #15355e; }

/* Amenities */
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-family: var(--font-heading); font-size: 2.5rem; color: var(--navy-blue); margin-bottom: 10px; }
.line { width: 60px; height: 3px; background: var(--steel-grey); margin: 0 auto; }
.line.left { margin: 20px 0; }

.amenity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.amenity-card { background: var(--white); padding: 40px 20px; text-align: center; border: 1px solid #eee; transition: 0.3s; border-bottom: 3px solid transparent; }
.amenity-card:hover { transform: translateY(-5px); border-bottom-color: var(--navy-blue); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.amenity-card .icon { font-size: 3rem; margin-bottom: 20px; }
.amenity-card h3 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 10px; color: var(--navy-blue); }
.amenity-card p { color: #666; font-size: 0.95rem; }

/* Room Preview */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.text-side h2 { font-family: var(--font-heading); font-size: 2.5rem; color: var(--navy-blue); margin-bottom: 20px; }
.room-features { list-style: none; margin: 30px 0; }
.room-features li { margin-bottom: 10px; font-weight: 500; color: #555; }
.btn-outline { border: 2px solid var(--navy-blue); color: var(--navy-blue); padding: 10px 30px; border-radius: 4px; font-weight: 700; transition: 0.3s; }
.btn-outline:hover { background: var(--navy-blue); color: var(--white); }
.img-side img { width: 100%; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* About & Contact */
.about-content { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.about-text h1 { font-family: var(--font-heading); font-size: 2.8rem; line-height: 1.2; color: var(--navy-blue); }
.about-text p { color: #555; margin-bottom: 15px; font-size: 1.05rem; }
.stats-row { display: flex; gap: 40px; margin-top: 40px; border-top: 1px solid #ddd; padding-top: 30px; }
.stat strong { display: block; font-size: 2rem; color: var(--navy-blue); font-family: var(--font-heading); }
.stat span { font-size: 0.9rem; color: #888; text-transform: uppercase; }
.about-img img { width: 100%; border-radius: 8px; }

.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; background: var(--white); padding: 50px; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.contact-info h2 { font-family: var(--font-heading); color: var(--navy-blue); margin-bottom: 20px; }
.c-list { list-style: none; margin-top: 30px; font-size: 1.1rem; }
.c-list li { margin-bottom: 15px; color: #555; }

.hotel-form .form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.hotel-form input, .hotel-form select, .hotel-form textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-family: var(--font-body); }
.btn-submit { width: 100%; background: var(--navy-blue); color: var(--white); border: none; padding: 15px; border-radius: 4px; font-weight: 700; cursor: pointer; transition: 0.3s; }
.btn-submit:hover { background: #15355e; }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-box { background: var(--white); padding: 30px; border-radius: 8px; border: 1px solid #eee; }
.review-box.highlight { border-top: 4px solid var(--navy-blue); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.stars { color: #FFD700; font-size: 1.2rem; margin-bottom: 15px; display: block; }
.review-box p { font-style: italic; color: #555; margin-bottom: 20px; }
.guest strong { display: block; color: var(--navy-blue); font-family: var(--font-heading); }
.guest span { font-size: 0.85rem; color: #888; }

.legal-text { max-width: 800px; margin: 0 auto; background: var(--white); padding: 50px; border-radius: 8px; }
.legal-text h1 { font-family: var(--font-heading); color: var(--navy-blue); }
.legal-text h3 { color: var(--navy-blue); margin-top: 30px; }

/* Footer */
.hotel-footer { background: var(--navy-blue); color: var(--white); padding: 60px 0 20px; margin-top: 80px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 30px; margin-bottom: 20px; }
.f-info h4 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 5px; }
.f-links a { color: #ccc; margin-left: 20px; font-size: 0.9rem; }
.f-links a:hover { color: var(--white); }
.copyright { text-align: center; font-size: 0.85rem; color: #aaa; }

/* Cookie */
.cookie-bar { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--white); padding: 15px; box-shadow: 0 -2px 10px rgba(0,0,0,0.1); display: flex; justify-content: center; align-items: center; gap: 20px; z-index: 9999; display: none; }
.cookie-bar.show { display: flex; }
.cookie-bar button { background: var(--navy-blue); color: var(--white); border: none; padding: 8px 20px; border-radius: 4px; cursor: pointer; }

@media (max-width: 900px) {
    .hotel-nav { display: none; }
    .mobile-toggle { display: flex; }
    .hero-content h1 { font-size: 2.5rem; }
    #checkRate { flex-direction: column; }
    #checkRate .input-grp, #checkRate button { width: 100%; }
    .amenity-grid, .split-layout, .about-content, .contact-wrapper, .reviews-grid { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; text-align: center; gap: 20px; }
}