/* ============================================================
   MIDAS HOTELS - LUXURY HOSPITALITY UI/UX DESIGN SYSTEM
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --midas-gold: #c5a880;
    --midas-gold-hover: #b08d55;
    --midas-gold-light: #f5efe6;
    --midas-gold-glow: rgba(197, 168, 128, 0.35);
    --midas-dark: #0e1318;
    --midas-dark-surface: #141c24;
    --midas-dark-border: #232d39;
    --midas-charcoal: #1c242f;
    --midas-muted: #8896a6;
    --midas-text: #2c3540;
    --midas-bg-light: #fbfbfa;
    --midas-font-heading: 'Cormorant Garamond', Georgia, serif;
    --midas-font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --midas-radius-sm: 8px;
    --midas-radius-md: 14px;
    --midas-radius-lg: 20px;
    --midas-shadow-sm: 0 4px 12px rgba(14, 19, 24, 0.05);
    --midas-shadow-md: 0 8px 24px rgba(14, 19, 24, 0.08), 0 1px 3px rgba(14, 19, 24, 0.04);
    --midas-shadow-lg: 0 16px 40px rgba(14, 19, 24, 0.12), 0 4px 12px rgba(14, 19, 24, 0.06);
    --midas-shadow-gold: 0 8px 25px rgba(197, 168, 128, 0.3);
}

/* Global Typography & Refinement */
body {
    font-family: var(--midas-font-body);
    color: var(--midas-text);
    background-color: var(--midas-bg-light);
    letter-spacing: -0.01em;
}

h1, h2, h3, h4, .banner__content-title, .section-heading__title, .widget-title {
    font-family: var(--midas-font-heading);
    letter-spacing: 0.02em;
    font-weight: 600;
}

h1 { font-size: 3.2rem; }
h2 { font-size: 2.6rem; }
h3 { font-size: 2.1rem; }

/* Refined Header & Navbar */
.header {
    background: rgba(14, 19, 24, 0.95) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(197, 168, 128, 0.2);
    transition: all 0.3s ease;
}

.header.menu-fixed {
    background: rgba(14, 19, 24, 0.98) !important;
    box-shadow: var(--midas-shadow-md);
}

.nav--menu > li > a {
    color: #e5e9f0 !important;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.nav--menu > li > a:hover,
.nav--menu > li.active > a {
    color: var(--midas-gold) !important;
}

/* Luxury Hero Banner Overhaul */
.banner {
    position: relative;
    background-size: cover;
    background-position: center;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(14, 19, 24, 0.75) 0%, rgba(14, 19, 24, 0.5) 50%, rgba(14, 19, 24, 0.85) 100%);
    z-index: 1;
}

.banner .container {
    position: relative;
    z-index: 2;
}

.banner__content-title {
    color: #ffffff;
    font-size: 3.8rem;
    line-height: 1.15;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.banner__content-title span {
    color: var(--midas-gold);
    font-style: italic;
}

/* Premium Booking Search Bar */
.booking-search {
    background: #ffffff;
    border-radius: var(--midas-radius-md);
    box-shadow: var(--midas-shadow-lg);
    border: 1px solid rgba(197, 168, 128, 0.3);
    padding: 24px 28px;
}

.booking-search .form--control {
    border: 1px solid #e1e6eb;
    border-radius: var(--midas-radius-sm);
    font-size: 0.95rem;
    padding: 12px 16px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.booking-search .form--control:focus {
    border-color: var(--midas-gold);
    box-shadow: 0 0 0 3px var(--midas-gold-glow);
}

/* Midas Gold Buttons */
.btn--base {
    background: linear-gradient(135deg, #c5a880 0%, #a88b5e 100%) !important;
    border: 1px solid #c5a880 !important;
    color: #ffffff !important;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.88rem;
    padding: 12px 28px;
    border-radius: var(--midas-radius-sm);
    box-shadow: var(--midas-shadow-gold);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn--base:hover {
    background: linear-gradient(135deg, #b08d55 0%, #94723c 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(197, 168, 128, 0.45);
    color: #ffffff !important;
}

.btn--base-outline {
    background: transparent !important;
    border: 1.5px solid var(--midas-gold) !important;
    color: var(--midas-gold) !important;
    font-weight: 600;
    border-radius: var(--midas-radius-sm);
    transition: all 0.25s ease;
}

.btn--base-outline:hover {
    background: var(--midas-gold) !important;
    color: #ffffff !important;
}

/* Room Cards Overhaul */
.room-card, .room-item, .card.custom--card {
    background: #ffffff;
    border-radius: var(--midas-radius-md) !important;
    border: 1px solid rgba(197, 168, 128, 0.2) !important;
    box-shadow: var(--midas-shadow-sm);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.room-card:hover, .room-item:hover, .card.custom--card:hover {
    transform: translateY(-6px);
    box-shadow: var(--midas-shadow-lg);
    border-color: rgba(197, 168, 128, 0.5) !important;
}

.room-card .badge, .room-badge {
    background: var(--midas-dark) !important;
    color: var(--midas-gold) !important;
    border: 1px solid var(--midas-gold);
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.72rem;
}

.room-card .price-tag, .room-price {
    font-family: var(--midas-font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--midas-gold-hover);
}

/* Luxury Breadcrumb */
.breadcrumb-area {
    background: linear-gradient(180deg, #0e1318 0%, #17202a 100%) !important;
    border-bottom: 1px solid rgba(197, 168, 128, 0.2);
    padding: 60px 0 45px;
    position: relative;
}

.breadcrumb-area .title {
    color: #ffffff;
    font-family: var(--midas-font-heading);
    font-size: 2.8rem;
    font-weight: 600;
}

.breadcrumb-area .breadcrumb-item,
.breadcrumb-area .breadcrumb-item a {
    color: var(--midas-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.breadcrumb-area .breadcrumb-item.active {
    color: var(--midas-gold);
}

/* Luxury Footer */
.footer-area {
    background: #090c10 !important;
    color: #a0aec0;
    border-top: 1px solid rgba(197, 168, 128, 0.2);
    padding-top: 70px;
}

.footer-area .widget-title {
    color: #ffffff;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 24px;
}

.footer-area .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 35px;
    height: 2px;
    background: var(--midas-gold);
}

.footer-area a {
    color: #8896a6;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-area a:hover {
    color: var(--midas-gold);
    padding-left: 4px;
}

.footer-bottom {
    background: #06080b;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 22px 0;
    font-size: 0.88rem;
    color: #637081;
}

.footer-bottom a {
    color: var(--midas-gold);
}

/* User Dashboard & Tables */
.custom--table {
    border-collapse: separate;
    border-spacing: 0 8px;
}

.custom--table thead tr th {
    background: #141c24;
    color: var(--midas-gold);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    border: none;
    padding: 14px 16px;
}

.custom--table thead tr th:first-child {
    border-radius: var(--midas-radius-sm) 0 0 var(--midas-radius-sm);
}

.custom--table thead tr th:last-child {
    border-radius: 0 var(--midas-radius-sm) var(--midas-radius-sm) 0;
}

.custom--table tbody tr {
    background: #ffffff;
    box-shadow: var(--midas-shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.custom--table tbody tr:hover {
    transform: translateY(-2px);
    box-shadow: var(--midas-shadow-md);
}

.custom--table tbody td {
    padding: 16px;
    border-top: none;
    border-bottom: 1px solid #edf2f7;
    vertical-align: middle;
}
