/* =========================================
   1. Google Fonts Import
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Gelasio:ital,wght@0,400;0,700;1,400&family=Roboto:wght@300;400;500;700&display=swap');

/* =========================================
   2. Variables & Overrides
   ========================================= */
:root {
    --primary-color: #e4a853;
    /* Gold/Bronze */
    --primary-hover: #c58d3d;
    --text-dark: #222222;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --font-heading: 'Gelasio', serif;
    --font-body: 'Roboto', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-light);
    line-height: 1.7;
    background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* =========================================
   3. Custom Utility Classes
   ========================================= */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
    color: #fff;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    /* Sharp edges for luxury feel */
}

.btn-primary-custom:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #fff;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

/* =========================================
   4. Header & Navbar
   ========================================= */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark) !important;
}

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

.nav-link {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--text-dark) !important;
    margin-left: 15px;
    letter-spacing: 0.5px;
}

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

/* =========================================
   5. Hero Section
   ========================================= */
.hero-header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/font-hotel-img.jpeg');
    background-size: cover;
    background-position: center;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero-header h1 {
    color: #fff;
    font-size: 4rem;
    margin-bottom: 20px;
}

/* =========================================
   6. Room Cards
   ========================================= */
.room-card {
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.room-card:hover {
    transform: translateY(-10px);
}

.room-card img {
    height: 250px;
    object-fit: cover;
}

.room-card .card-body {
    padding: 25px;
}

.room-price {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
}

/* =========================================
   7. Footer
   ========================================= */
footer {
    background-color: var(--bg-dark);
    color: #bfbfbf;
    padding-top: 70px;
}

footer h5 {
    color: #fff;
    margin-bottom: 25px;
}

footer a {
    color: #bfbfbf;
}

footer a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 50px;
}