/* Demilie Inspired Theme */
body.demilie-theme {
    background-color: var(--color-bg-dark);
    color: var(--color-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    /* Create a repeating flower/hexagon pattern similar to reference */
    background-image: radial-gradient(var(--color-bg-pattern) 15%, transparent 16%),
                      radial-gradient(var(--color-bg-pattern) 15%, transparent 16%);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
}

h1, h2, h3, h4, h5, h6, .bold-brand {
    font-family: var(--font-heading);
    font-weight: 700;
}

.text-yellow {
    color: var(--color-yellow) !important;
}
.text-orange {
    color: var(--color-orange) !important;
}

/* Header */
.header {
    padding: 20px 0;
    transition: var(--transition);
}
.header.scrolled {
    background: rgba(0,0,0,0.9) !important;
    padding: 10px 0;
}

.bold-brand {
    font-size: 2.5rem;
    letter-spacing: -1px;
}

.site-logo {
    height: 70px;
    width: auto;
    display: block;
    object-fit: contain;
}
.site-logo--footer {
    height: 70px;
}
.site-logo--admin {
    height: 44px;
    margin: 0 auto;
}
.site-logo--login {
    height: 64px;
    margin: 0 auto;
}

.nav-link {
    color: var(--color-white) !important;
    font-size: 1.1rem;
    padding: 10px 20px !important;
    transition: var(--transition);
}
.nav-link:hover {
    color: var(--color-yellow) !important;
    transform: translateY(-2px);
}

/* Buttons */
.btn-demilie {
    background-color: var(--color-yellow);
    color: var(--color-text-dark);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 800;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(255, 184, 0, 0.3);
    text-transform: uppercase;
}
.btn-demilie:hover {
    background-color: var(--color-orange);
    color: var(--color-text-dark);
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.4);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 7rem;
    line-height: 1;
    color: var(--color-yellow);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    max-width: 500px;
    color: var(--color-orange);
}

/* Floating Elements (Mimicking 3D objects) */
.floating-obj {
    position: absolute;
    z-index: -1;
    pointer-events: none;
}
.floating-obj.front {
    z-index: 5;
}

/* Shapes for floating objects */
.shape-blob {
    background: var(--color-yellow);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    width: 200px;
    height: 200px;
}
.shape-hexagon {
    width: 150px;
    height: 86.6px;
    background-color: var(--color-orange);
    margin: 43.3px 0;
    position: relative;
}
.shape-hexagon::before,
.shape-hexagon::after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 75px solid transparent;
    border-right: 75px solid transparent;
}
.shape-hexagon::before {
    bottom: 100%;
    border-bottom: 43.3px solid var(--color-orange);
}
.shape-hexagon::after {
    top: 100%;
    width: 0;
    border-top: 43.3px solid var(--color-orange);
}


/* Sections */
.demilie-section {
    padding: 120px 0;
    position: relative;
}

.section-title {
    font-size: 5rem;
    color: var(--color-orange);
    text-align: center;
    margin-bottom: 60px;
}

.demilie-card {
    background: var(--color-bg-dark);
    border: 4px solid var(--color-yellow);
    border-radius: 40px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.demilie-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 20px 20px 0 var(--color-orange);
    border-color: var(--color-orange);
}

.demilie-card img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 20px;
}

.demilie-card h3 {
    color: var(--color-yellow);
    font-size: 2rem;
}

/* Loader */
.loader-wrapper {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--color-bg-dark);
    display: flex; justify-content: center; align-items: center;
    z-index: 9999;
}
.demilie-loader {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--color-yellow);
    font-weight: 700;
    display: flex;
}
.demilie-loader .dots {
    animation: bounce 1s infinite alternate;
}
@keyframes bounce {
    to { transform: translateY(-15px); }
}

/* Footer */
.footer {
    padding: 60px 0;
    border-top: 5px solid var(--color-yellow);
    text-align: center;
    background: #0a0a0a;
}
.footer-brand {
    font-size: 3rem;
}
.social-links a {
    color: var(--color-yellow);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: var(--transition);
}
.social-links a:hover {
    color: var(--color-orange);
    transform: scale(1.2);
}

/* Lenis */
html.lenis, html.lenis body { height: auto; width: 100vw; overflow-x: hidden; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

/* Glass Cards & Luxury UI Elements */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}
.glass-card:hover {
    border-color: var(--color-yellow);
    transform: translateY(-5px);
}

.btn-luxury {
    background-color: var(--color-yellow);
    color: var(--color-text-dark);
    border: 1px solid var(--color-yellow);
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 700;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}
.btn-luxury:hover {
    background-color: transparent;
    color: var(--color-yellow);
    border-color: var(--color-yellow);
    box-shadow: 0 0 15px rgba(255, 184, 0, 0.4);
}

/* Room Card styles */
.room-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}
.room-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--color-orange);
    color: var(--color-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    z-index: 2;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.room-img-wrapper {
    overflow: hidden;
    border-radius: 12px;
    height: 220px;
}
.room-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.room-card:hover .room-img {
    transform: scale(1.05);
}
.room-details {
    padding-top: 20px;
}
.room-title {
    color: var(--color-yellow);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

/* General helper background card */
.bg-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}
.bg-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

/* Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--color-orange);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
    z-index: 999;
    transition: var(--transition);
}
.floating-action-btn:hover {
    background-color: var(--color-yellow);
    color: var(--color-text-dark);
    transform: scale(1.1) rotate(15deg);
}

/* Mobile Quick Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    left: 20px;
    width: 52px;
    height: 52px;
    background-color: var(--color-yellow);
    color: var(--color-text-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 10px 25px rgba(255, 184, 0, 0.4);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}
.floating-call-btn:hover {
    background-color: var(--color-orange);
    color: var(--color-white);
    transform: scale(1.1);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    z-index: 999;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background-color: var(--color-yellow);
    color: var(--color-text-dark);
    border-color: var(--color-yellow);
}

/* Custom Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-yellow);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
}
.custom-cursor.hover {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 184, 0, 0.1);
    border-color: var(--color-orange);
}

@media (max-width: 991px) {
    .custom-cursor {
        display: none;
    }
}

/* ============================================================
   GLOBAL FONT COLOR FIXES - Dark Background Readability
   ============================================================ */

/* Override Bootstrap text-muted - too dark on black background */
.text-muted,
.text-secondary,
p.text-muted,
small.text-muted,
span.text-muted {
    color: #b0b8c8 !important;
}

/* General body text always white/light */
body, p, li, span, label, td, th {
    color: #e8eaf0;
}

/* Headings - bright white */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
}

/* Gold text utility */
.gold-text {
    color: var(--color-yellow) !important;
}

/* ---- FOOTER FIXES ---- */
.footer {
    color: #e8eaf0;
}
.footer-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--color-yellow);
    border-radius: 2px;
}
.footer-brand {
    color: #ffffff;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    color: #b0b8c8 !important;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}
.footer-links a:hover {
    color: var(--color-yellow) !important;
    padding-left: 4px;
}
.footer-contact li {
    color: #b0b8c8;
    margin-bottom: 10px;
    font-size: 0.95rem;
}
.footer-bottom p {
    color: #7a8290 !important;
}

/* ---- NAVBAR FIXES ---- */
.navbar-brand,
.bold-brand {
    color: #ffffff !important;
}

/* ---- CARD & SECTION TEXT ---- */
.card,
.glass-card {
    color: #e8eaf0;
}
.card-title, .card h3, .card h4 {
    color: #ffffff;
}
.card-text, .card p {
    color: #b0b8c8;
}

/* ---- BADGE TEXT ---- */
.badge {
    color: #e0e4ec !important;
}
.badge.bg-dark {
    color: #d4d8e0 !important;
}

/* ---- FORM ELEMENTS ---- */
.form-label {
    color: #d0d4dc !important;
    font-weight: 600;
}
.form-control,
.form-select {
    background-color: rgba(255,255,255,0.05) !important;
    border-color: rgba(255,255,255,0.15) !important;
    color: #ffffff !important;
}
.form-control::placeholder {
    color: #6a7080 !important;
}
.form-control:focus,
.form-select:focus {
    background-color: rgba(255,255,255,0.08) !important;
    border-color: var(--color-yellow) !important;
    box-shadow: 0 0 0 0.2rem rgba(255,184,0,0.15) !important;
    color: #ffffff !important;
}

/* ---- LEAD TEXT ---- */
.lead {
    color: #c0c8d4 !important;
}

/* ---- BORDER SECONDARY FIX ---- */
.border-secondary {
    border-color: rgba(255,255,255,0.12) !important;
}

/* ---- TABLE TEXT ---- */
.table {
    color: #e8eaf0;
}
.table td, .table th {
    border-color: rgba(255,255,255,0.1);
}

/* ---- LIST GROUP ---- */
.list-group-item {
    background: rgba(255,255,255,0.03);
    color: #e8eaf0;
    border-color: rgba(255,255,255,0.08);
}

/* ---- BG-DARKER SECTIONS ---- */
.bg-darker {
    background-color: #0a0a0a !important;
    color: #e8eaf0;
}

/* ---- SECTION HEADINGS ---- */
.display-4, .display-5, .display-6 {
    color: #ffffff;
}
.display-4.gold-text,
.display-5.gold-text {
    color: var(--color-yellow) !important;
}

/* ---- SMALL / STRONG / LIGHT TEXT ---- */
strong.text-light,
.text-light {
    color: #e8eaf0 !important;
}

/* ---- FOOTER BOTTOM copyright ---- */
.footer-bottom {
    border-color: rgba(255,255,255,0.08) !important;
}

/* ---- ROOM DETAILS PAGE TEXT ---- */
.room-details p,
.room-details li,
.room-details span {
    color: #c0c8d4;
}

/* ---- CONTACT PAGE TEXT ---- */
.contact-info-item p,
.contact-info-item span {
    color: #b8c0cc;
}
.contact-info-link,
.footer-contact-link {
    color: #b0b8c8 !important;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-word;
}
.contact-info-link:hover,
.footer-contact-link:hover {
    color: var(--color-yellow) !important;
}

/* ---- CONTACT TOP BAR ---- */
.contact-top-bar {
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(255, 184, 0, 0.2);
    font-size: 0.85rem;
    position: relative;
    z-index: 1030;
}
.contact-top-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 24px;
    padding: 8px 0;
}
.contact-top-link {
    color: #b0b8c8;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    word-break: break-word;
    font-size: 0.85rem;
}
.contact-top-link:hover {
    color: var(--color-yellow);
}
.contact-top-link i {
    color: var(--color-yellow);
    flex-shrink: 0;
}
.navbar-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 0 8px;
    margin-top: 12px;
    border-top: 1px solid rgba(255, 184, 0, 0.15);
}

/* ---- RESPONSIVE LAYOUT ---- */
@media (max-width: 991px) {
    .header {
        padding: 12px 0;
    }
    .site-logo {
        height: 50px;
    }
    .site-logo--footer {
        height: 56px;
    }
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        padding: 20px;
        border-radius: 12px;
        margin-top: 10px;
        border: 1px solid rgba(255, 184, 0, 0.15);
    }
    .navbar-nav {
        text-align: center;
    }
    .nav-link {
        font-size: 1rem;
        padding: 10px 15px !important;
    }
    .btn-demilie.ms-lg-3 {
        margin-left: 0 !important;
        margin-top: 15px;
        display: block;
        width: 100%;
        text-align: center;
    }
    .hero-title {
        font-size: 3.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    .section-title {
        font-size: 2.5rem;
    }
    .demilie-section {
        padding: 60px 0;
    }
    .floating-action-btn {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 1.2rem;
    }
    .back-to-top {
        bottom: 85px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
    .glass-card {
        padding: 20px;
    }
    .display-4 {
        font-size: 2.2rem;
    }
    .contact-top-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 10px 0;
    }
    .footer .col-md-6,
    .footer .col-lg-4,
    .footer .col-lg-3,
    .footer .col-lg-2 {
        text-align: center;
    }
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-links {
        justify-content: center;
    }
    .room-card .d-flex {
        flex-direction: column;
        gap: 12px;
        align-items: stretch !important;
    }
    .room-card .d-flex .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2.4rem;
    }
    .hero-section {
        min-height: 100vh;
        height: auto;
        padding: 110px 0 90px;
    }
    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    .btn-demilie,
    .btn-outline-hero,
    .btn-luxury {
        font-size: 0.9rem;
        padding: 10px 22px;
    }
    .room-img-wrapper {
        height: 180px;
    }
    .room-price {
        top: 12px;
        right: 12px;
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    .contact-top-bar {
        font-size: 0.78rem;
    }
    .contact-top-link span {
        word-break: break-all;
    }
    .display-4 {
        font-size: 1.8rem;
    }
    .lead {
        font-size: 1rem;
    }
    .footer {
        padding-top: 2rem !important;
    }
    .footer-contact li {
        font-size: 0.88rem;
    }
    .floating-obj {
        display: none;
    }
}
