:root {
    --primary-orange: #d37318;
    /* Burnt Orange/Gold for Luxury */
    --dark-bg: #1c1c1c;
    --light-bg: #fdf8f5;
    /* Very light orange tint */
    --text-color: #555;
    --white: #ffffff;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
    color: #222;
}

/* Utility Classes */
.text-orange {
    color: var(--primary-orange) !important;
}

.bg-orange {
    background-color: var(--primary-orange) !important;
    color: white;
}

.bg-light-theme {
    background-color: var(--light-bg) !important;
}

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

/* Buttons */
.btn-hotel {
    background-color: var(--primary-orange);
    color: white;
    padding: 12px 35px;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary-orange);
    transition: all 0.3s ease;
    border-radius: 0;
    /* Square buttons for classic hotel look */
}

.btn-hotel:hover {
    background-color: transparent;
    color: var(--primary-orange);
}

.btn-outline-hotel {
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 10px 30px;
    font-family: 'Playfair Display', serif;
    border-radius: 0;
    transition: 0.3s;
}

.btn-outline-hotel:hover {
    background-color: var(--primary-orange);
    color: white;
}

/* Navbar */
.navbar {
    background-color: rgba(0, 0, 0, 0.85);
    padding: 20px 0;
    transition: 0.3s;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: white !important;
    letter-spacing: 2px;
}

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

.nav-link {
    color: #ddd !important;
    margin: 0 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?q=80&w=1470&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 50px;
    font-style: italic;
}

/* Booking Bar */
.booking-bar {
    background: white;
    padding: 30px;
    position: relative;
    margin-top: -80px;
    z-index: 10;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--primary-orange);
}

.booking-input-group label {
    font-size: 0.8rem;
    font-weight: bold;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
}

.booking-input {
    border: none;
    border-bottom: 1px solid #ddd;
    width: 100%;
    padding: 10px 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #333;
    outline: none;
}

/* Room Cards */
.room-card {
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    margin-bottom: 30px;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.room-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.room-details {
    padding: 25px;
}

.room-price {
    font-size: 1.5rem;
    color: var(--primary-orange);
    font-weight: bold;
    font-family: 'Playfair Display', serif;
}

.room-price span {
    font-size: 0.9rem;
    color: #999;
    font-weight: normal;
    font-family: 'Open Sans', sans-serif;
}

/* Amenities */
.amenity-box {
    text-align: center;
    padding: 30px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.amenity-box:hover {
    border-color: var(--primary-orange);
    background: var(--light-bg);
}

.amenity-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

/* Parallax Section */
.parallax-video {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1571896349842-68cfd4f9d86a?q=80&w=1470&auto=format&fit=crop');
    background-attachment: fixed;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 120px 0;
}

/* Gallery */
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    cursor: pointer;
}

.gallery-item {
    overflow: hidden;
    height: 300px;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

/* Testimonials */
.testimonial-carousel {
    background: var(--light-bg);
    padding: 80px 0;
}

/* Contact Form */
.contact-section {
    background: white;
}

.form-control {
    border-radius: 0;
    padding: 15px;
    border: 1px solid #ddd;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-orange);
}

/* Footer */
footer {
    background-color: #111;
    color: #999;
    padding: 70px 0 20px;
}

footer h4 {
    color: white;
    margin-bottom: 25px;
}

footer a {
    color: #999;
    text-decoration: none;
    transition: 0.3s;
}

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

@media (max-width: 991px) {
    .booking-bar {
        margin-top: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}