/* Luxury Dark Blue Theme */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
    --primary-bg: #001529; /* Deep dark blue */
    --secondary-bg: #002244; /* Lighter dark blue */
    --accent-color: #d4af37; /* Luxury Gold */
    --accent-hover: #b5952f;
    --text-main: #f4f4f4;
    --text-muted: #a0aab2;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Jost', sans-serif;
    --light-bg: #f9f9f9;
}

body {
    font-family: var(--font-body);
    color: #333;
    background-color: #fff;
    line-height: 1.6;
    padding-top: 50px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Navbar */
.navbar {
    background-color: var(--primary-bg) !important;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.navbar-scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: #fff !important;
    letter-spacing: 1px;
}

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

.nav-link {
    color: var(--text-main) !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    margin: 0 10px;
    transition: color 0.3s;
}

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

/* Buttons */
.btn-gold {
    background-color: var(--accent-color);
    color: #fff;
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 0;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}

.btn-gold:hover {
    background-color: var(--accent-hover);
    color: #fff;
}

.btn-outline-gold {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
    padding: 10px 25px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-outline-gold:hover {
    background-color: var(--accent-color);
    color: #fff;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 21, 41, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 30px;
    letter-spacing: 1px;
}

/* Sections */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--secondary-bg);
    margin-bottom: 20px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 0 auto 40px;
}

/* Dark Section */
.dark-section {
    background-color: var(--secondary-bg);
    color: var(--text-main);
}

.dark-section .section-title {
    color: #fff;
}

/* Amenity Cards */
.amenity-card {
    text-align: center;
    padding: 30px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    height: 100%;
}

.amenity-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.amenity-icon {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* Room Cards */
.room-card {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

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

.room-img {
    position: relative;
    overflow: hidden;
}

.room-img img {
    width: 100%;
    transition: transform 0.5s;
}

.room-card:hover .room-img img {
    transform: scale(1.05);
}

.room-price {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--accent-color);
    color: #fff;
    padding: 10px 20px;
    font-weight: 600;
    font-family: var(--font-heading);
}

.room-content {
    padding: 30px;
}

.room-title {
    font-size: 1.5rem;
    color: var(--secondary-bg);
    margin-bottom: 15px;
}

.room-features {
    display: flex;
    gap: 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.room-features i {
    color: var(--accent-color);
    margin-right: 5px;
}

/* Footer */
.footer {
    background-color: var(--primary-bg);
    color: var(--text-muted);
    padding: 60px 0 20px;
}

.footer-title {
    color: #fff;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-contact li {
    display: flex;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--accent-color);
    margin-top: 5px;
    margin-right: 15px;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.9rem;
}
