/* --- LUXURY THEME VARIABLES --- */
:root {
    --gold: #D4AF37; /* The Gold from your crown */
    --gold-hover: #b59021;
    --dark-bg: #121212;
    --card-bg: #1e1e1e;
    --text-light: #f5f5f5;
    --text-muted: #aaaaaa;
}

/* --- GLOBAL FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;500&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

h1, h2, h3, h4, .navbar-brand {
    font-family: 'Playfair Display', serif; /* Luxury Serif Font */
}

/* --- NAVBAR --- */
.navbar-custom {
    background-color: var(--dark-bg);
    padding: 15px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.navbar-brand img {
    height: 50px; /* Adjust logo size */
    margin-right: 10px;
}
.navbar-brand span {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
}
.btn-staff {
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 20px;
    padding: 5px 20px;
    transition: 0.3s;
}
.btn-staff:hover {
    background: var(--gold);
    color: #000;
}

/* --- HERO SECTION --- */
.hero-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?q=80&w=2070&auto=format&fit=crop'); 
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.hero-title {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- CARDS (HOTELS & ROOMS) --- */
.luxury-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.luxury-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.card-header-img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}
.card-body {
    padding: 2rem;
}
.card-title {
    color: var(--dark-bg);
    font-weight: bold;
}
.location-text {
    color: var(--gold);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* --- BUTTONS --- */
.btn-gold {
    background-color: var(--gold);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}
.btn-gold:hover {
    background-color: var(--gold-hover);
    color: white;
}