:root {
    --primary-color: #6d071a;
    /* Premium Maroon */
    --secondary-color: #c5a059;
    /* Luxury Gold Accent */
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333333;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Force Maroon Theme on Bootstrap Utilities */
.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-primary {
    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: white !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: white;
    font-size: 0.9rem;
}

/* Premium Navbar */
.navbar {
    padding: 10px 0;
    transition: all 0.3s ease;
    z-index: 1050 !important;
    /* Ensure navbar is above other sticky elements like the booking form */
}

/* Modern Logo Style */
.brand-logo {
    background: linear-gradient(45deg, #6d071a, #4a0410, #c5a059, #6d071a);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    animation: gradient-anim 5s ease infinite;
    letter-spacing: -1px;
}

@keyframes gradient-anim {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 600;
    padding: 8px 12px !important;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.dropdown-menu {
    border-top: 3px solid var(--secondary-color);
    border-radius: 0;
    margin-top: 15px;
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background-color: rgba(197, 160, 89, 0.1);
    color: var(--primary-color);
}

/* Carousel */
.carousel-item {
    height: 85vh;
    min-height: 600px;
    background-color: #000;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    opacity: 0.6;
}

.carousel-caption {
    bottom: 30%;
    text-align: left;
    left: 10%;
    right: 10%;
}

.carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.carousel-caption p {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.3s;
    animation-fill-mode: both;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #4a0410;
    border-color: #4a0410;
    transform: translateY(-2px);
}

.btn-contact {
    background-color: var(--primary-color);
    /* Restore Maroon */
    border-color: var(--primary-color);
    color: white !important;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: #4a0410;
    border-color: #4a0410;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(109, 7, 26, 0.3);
}

/* Global Button Styles - Rounded */
.btn {
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-lg {
    padding: 10px 35px;
    font-size: 1rem;
}

.btn-primary:hover,
.btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(109, 7, 26, 0.2);
}

.section-title {
    position: relative;
    display: inline-block;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin-top: 10px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Offcanvas */
/* Mega Menu */
.navbar .dropdown-menu.mega-menu {
    width: 600px;
    padding: 30px;
    background: linear-gradient(135deg, #6d071a 0%, #4a0410 100%);
    left: 50%;
    transform: translateX(-50%);
    margin-top: 15px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.mega-menu h6 {
    color: var(--secondary-color);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(197, 160, 89, 0.3);
    padding-bottom: 8px;
    letter-spacing: 0.5px;
}

.mega-menu a {
    color: rgba(255, 255, 255, 0.8);
    display: block;
    padding: 5px 0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.mega-menu a::before {
    content: '\F59F';
    /* Bootstrap Icon for Star */
    font-family: 'bootstrap-icons';
    margin-right: 8px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
}

.mega-menu a:hover {
    color: #fff;
    padding-left: 5px;
}

@media (max-width: 991.98px) {
    .offcanvas {
        width: 300px !important;
    }

    .offcanvas-body .nav-link {
        padding: 15px 20px !important;
        border-bottom: 1px solid #eee;
    }

    .carousel-caption h1 {
        font-size: 2.5rem;
    }

    .carousel-caption {
        bottom: 20%;
        left: 5%;
        right: 5%;
        text-align: center;
    }

    .carousel-item {
        height: 70vh;
    }
}

/* Service Card Improvements */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    transition: transform 0.5s ease;
}

.service-card:hover .transition-transform {
    transform: scale(1.1);
}

.transition-transform {
    transition: transform 0.5s ease;
}

/* Unified Page Hero */
.page-hero {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 0;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    color: white !important;
}

.page-hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    color: white !important;
}

@media (max-width: 768px) {
    .page-hero {
        height: 300px;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .page-hero p {
        font-size: 1rem;
    }
}