
:root {
    --primary-color: #1a2e35; /* Deep Alpine Green */
    --accent-color: #c5a059; /* Luxury Gold */
    --text-light: #f8f9fa;
    --text-dark: #333333;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: #fdfbf7;
    padding-top: 86px; /* Offset for fixed navbar */
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'SwissTime', serif;
}

.cinzel { font-family: 'Cinzel', serif; }

/* Navigation */
.navbar {
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
}

.navbar-brand {
    color: var(--text-light) !important;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navbar-brand span { color: var(--accent-color); }

.navbar-brand img {
    max-height: 70px;
    width: auto;
}

.nav-link {
    color: rgba(255,255,255,0.8) !important;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active { color: var(--accent-color) !important; }

/* Hero Specific (Only for Home) */
.hero-wrapper {
    margin-top: -86px; /* Negate body padding for full screen hero */
}
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 20px;
}

/* Buttons */
.btn-luxury {
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 15px 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s;
    border-radius: 0;
    position: relative;
    z-index: 1;
}
.btn-luxury:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

/* Page Headers */
.page-header-section {
    padding: 100px 0 60px;
    text-align: center;
}
.section-subtitle {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}
.section-title {
    font-size: 3rem;
    color: var(--primary-color);
}

/* Images */
.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: 20px 20px 0 var(--accent-color);
}

/* Rooms */
.room-card {
    background: white;
    margin-bottom: 30px;
    transition: transform 0.3s;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.room-card:hover { transform: translateY(-10px); }
.room-img { width: 100%; height: 300px; object-fit: cover; }
.room-details { padding: 2rem; text-align: center; }
.room-price { font-family: 'Cinzel', serif; color: var(--accent-color); font-size: 1.1rem; }

/* New Room Layout */
.room-row .owl-carousel img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.room-row .room-details h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 2rem;
}
.room-row .room-details p {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}
.room-row .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
}

.room-row .btn-luxury {
    background: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
}

.room-row .btn-luxury:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

.room-row .btn-secondary {
    background: #6c757d;
    border: 1px solid #6c757d;
    color: white;
}

.room-row .btn-secondary:hover {
    background: #5a6268;
    border-color: #5a6268;
    color: white;
}

/* Contact */
.contact-info-box { background: var(--primary-color); color: white; padding: 3rem; height: 100%; }
.contact-form-box { background: white; padding: 3rem; }
.form-control { border: none; border-bottom: 1px solid #ddd; padding: 15px 0; background: transparent; border-radius: 0; }
.form-control:focus { box-shadow: none; border-bottom-color: var(--accent-color); }

/* Service Boxes */
.service-box {
    transition: transform 0.3s ease;
    cursor: pointer;
}
.service-box:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

/* Floating Feedback Icon */
.floating-chat-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease, background-color 0.3s;
}

.floating-chat-icon:hover {
    transform: scale(1.1);
    background-color: #b08d4b;
}

.star-rating i {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
}

.star-rating i.active {
    color: #ffc107;
}

.star-rating i:hover,
.star-rating i:hover ~ i {
    color: #ddd;
}

.star-rating:hover i {
    color: #ffc107;
}

.star-rating i:hover ~ i {
    color: #ddd;
}
