:root {
    --primary-color: #7c1c1c;
    /* Deep Maroon */
    --secondary-color: #d4af37;
    /* Warm Gold */
    --text-dark: #2d2d2d;
    --text-light: #5f5f5f;
    --bg-light: #f9f6f0;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-light);
    background-color: #ffffff;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    font-weight: 700;
}

/* Navbar */
.navbar {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background-color: #ffffff !important;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color) !important;
    letter-spacing: 0.5px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 16px;
    margin: 0 10px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-book {
    background-color: var(--primary-color);
    color: #ffffff;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.btn-book:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Reusable Components */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.hero-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/vasavi-hero.jpg') center/cover no-repeat;
    padding: 120px 0;
    text-align: center;
    color: white;
    margin-top: 76px;
}

.hero-header h1 {
    color: white;
    font-size: 48px;
    margin-bottom: 20px;
}