/* --- Color Palette & Variables --- */
:root {
    --bg-light: #f4f4f6;       /* Clean off-white background */
    --bg-dark: #222222;        /* Dark charcoal background */
    --accent-color: #821c37;   /* Elegant Maroon/Burgundy from Logo */
    --accent-color-hover: #5e1327;
    --text-dark: #333333;
    --text-light: #f7f5f0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* --- Typography Elements --- */
.subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.text-accent {
    color: var(--accent-color) !important;
}

.btn-accent {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-accent:hover {
    background-color: var(--accent-color-hover);
    color: white;
}

/* --- Navbar --- */
.navbar {
    transition: all 0.4s ease;
    padding: 20px 0;
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1030;
}

.navbar.scrolled {
    background-color: var(--bg-dark);
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: white !important;
    letter-spacing: 1px;
}

.navbar-brand span {
    color: var(--accent-color);
    font-size: 1rem;
    display: block;
    letter-spacing: 3px;
    text-align: left;
}

.nav-link {
    color: white !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

/* --- Floating Contact Buttons --- */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1050; /* High z-index to stay above other content */
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.btn-whatsapp {
    background-color: #25D366; /* Official WhatsApp Green */
}

.btn-call {
    background-color: var(--accent-color); /* Hotel's Maroon Theme */
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('img/bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero h1 {
    color: white;
    font-size: 4rem;
    letter-spacing: 2px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
    color: white;
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

/* --- Booking Bar --- */
.booking-bar {
    background: white;
    padding: 20px 40px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 80%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 10;
}

.booking-bar label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 5px;
}

.booking-bar input, .booking-bar select {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    padding: 5px 0;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-dark);
    background: transparent;
}

.booking-bar input:focus, .booking-bar select:focus {
    box-shadow: none;
    border-color: var(--accent-color);
    background: transparent;
}

/* --- General Section Spacing --- */
.section-padding {
    padding: 120px 0;
}

/* --- About Section (Staggered Images) --- */
.about-images {
    position: relative;
    height: 500px;
}

.img-stagger-1 {
    width: 65%;
    height: 400px;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.img-stagger-2 {
    width: 55%;
    height: 350px;
    object-fit: cover;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* --- Rooms Section --- */
.room-card {
    background-color: #fff;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.room-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.room-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.room-card:hover img {
    transform: scale(1.08);
}

.room-info {
    position: relative;
    padding: 25px;
    background: #fff;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.room-card:hover .room-info {
    border-bottom: 3px solid var(--accent-color);
}

.room-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.room-price {
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: #555;
    line-height: 1.6;
}

.room-price span {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.25rem;
}

/* --- Dark Section (Services & Facilities) --- */
.dark-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.dark-section .section-title {
    color: white;
}

.facility-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.facility-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-right: 20px;
}

.facility-text h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    letter-spacing: 1px;
    color: white;
}

.facility-text p {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.6;
    margin: 0;
}

/* --- Info Card overlay --- */
.info-card {
    background: var(--bg-light);
    padding: 40px;
    border: 1px solid #eaeaea;
}

.info-card h4 {
    color: var(--text-dark);
}

/* --- Footer --- */
.footer {
    background-color: #1a1a1a;
    color: #aaa;
    padding: 80px 0 30px;
    font-size: 0.9rem;
}

.footer h5 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.footer p {
    margin-bottom: 10px;
}

.footer a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--accent-color);
}

.footer-logo {
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .booking-bar {
        position: relative;
        transform: none;
        bottom: auto;
        left: auto;
        width: 100%;
        margin-top: -20px;
    }
    .hero h1 { font-size: 2.5rem; }
    .about-images { height: auto; margin-top: 40px; }
    .img-stagger-1, .img-stagger-2 { position: relative; width: 100%; height: 300px; }
    .img-stagger-2 { display: none; } /* Hide second image on mobile for cleaner look */
    
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}