:root {
    --primary-color: #8B0000;
    /* Deep Maroon from logo */
    --secondary-color: #1a1a1a;
    --accent-color: #c5a059;
    /* Gold accent for luxury */
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

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

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

.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-outline-primary {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.navbar-brand img {
    height: 80px;
    background: #fff;
    padding: 8px;
    border-radius: 6px;
}

.nav-link {
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin: 0 10px;
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--secondary-color) !important;
}

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

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

.dropdown-toggle::after {
    display: none !important;
}

.nav-link i {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: var(--transition);
}

.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 1rem;
}

.dropdown-item {
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    animation: fadeInUp 1.2s ease;
}

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

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

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

/* Cards */
.custom-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

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

.custom-card img {
    transition: var(--transition);
}

.custom-card:hover img {
    transform: scale(1.1);
}

/* Packages */
.package-card {
    padding: 40px;
    text-align: center;
    border: 1px solid #eee;
}

.package-card.featured {
    background: var(--primary-color);
    color: var(--white);
}

.package-card.featured h3 {
    color: var(--white);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 15px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #600000 !important;
    border-color: #600000 !important;
}

.navbar .btn {
    font-size: 0.8rem;
    padding: 8px 20px !important;
    text-transform: uppercase;
    font-weight: 600;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-logo {
    height: 90px;
    margin-bottom: 20px;
}

.footer-links h5 {
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #eee;
    text-decoration: none;
    transition: var(--transition);
}

footer .text-muted {
    color: #ccc !important;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Booking Widget */
.booking-widget {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
    animation: fadeInUp 1.5s ease;
}

.booking-widget .form-control {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 12px;
}

.booking-widget .btn-primary {
    padding: 12px 30px;
}

/* Management Section */
.mgmt-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    border-bottom: 5px solid var(--accent-color);
    transition: var(--transition);
}

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

.mgmt-card h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.mgmt-card .designation {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 20px;
    display: block;
}

.company-badge {
    display: inline-block;
    padding: 5px 15px;
    background: #f0f0f0;
    border-radius: 50px;
    font-size: 0.8rem;
    margin: 5px;
    color: #666;
}

/* Hotel Grid */
.hotel-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.hotel-card .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.hotel-img-container {
    height: 200px;
    overflow: hidden;
}

.hotel-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hotel-card:hover .hotel-img-container img {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .navbar {
        background: var(--white);
    }

    .nav-link {
        color: var(--secondary-color) !important;
    }

    .booking-widget .row > div {
        margin-bottom: 15px;
    }
}


@media screen and (max-width: 767px){
    .navbar {
        padding: 0px;
    }
}