:root {
    --primary-color: var(--dynamic-primary, #d97706);
    --secondary-color: var(--dynamic-secondary, #b45309);
    --text-dark: #2d3436;
    --text-muted: #636e72;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
    padding: 20px 0;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 15px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero */
.hero-section {
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

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

/* Cards */
.room-card {
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
    border: none;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.booking-widget {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: -30px;
    position: relative;
    z-index: 10;
    border: 1px solid #eee;
}

.booking-widget .form-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.booking-widget .form-select {
    border: 1px solid #eef0f2;
    border-radius: 10px;
    padding: 10px;
    font-weight: 500;
}

.btn-book-now {
    background: #d97706;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    width: 100%;
    margin-top: 15px;
    transition: 0.3s;
}

.btn-book-now:hover {
    background: #b45309;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(217, 119, 6, 0.3);
}

/* Amenities */
.amenity-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
}

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

.object-fit-cover {
    object-fit: cover;
}

/* Testimonials */
.testimonial-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid var(--primary-color);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 0 30px;
}

.footer h6 {
    color: #ffffff;
    font-weight: 700;
}

.footer p.text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s;
}

.footer-link:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer i.text-primary {
    color: var(--primary-color) !important;
}

.footer .border-secondary {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #6d4e1f;
    border-color: #6d4e1f;
    transform: scale(1.05);
}

/* Inner Page Header */
.inner-hero {
    padding: 150px 0 80px;
    background: #f8f9fa;
    margin-bottom: 50px;
}
