:root {
    --primary-color: #99582a;
    --secondary-color: #333;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a1a;
    --text-light: #666; /* Added a new variable for light text color */
}

/* Global Styles */
body {
    font-family: 'DM Sans', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    font-feature-settings: 'rlig'; /* Advanced font rendering */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Top Bar */
.top-bar {
    background-color: var(--white);
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

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

/* Buttons */
.btn-book-sm {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-book-sm:hover {
    background-color: #d81b60;
}

/* Button for Medium Size */
.btn-book-md {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
}

.btn-book-md:hover {
    background-color: #d81b60;
}

/* Button for Large Size */
.btn-book {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    margin-left: 15px;
    display: block;
    width: 100%;
    max-width: 250px;
}



/* Navigation */
.navbar {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
    color: var(--secondary-color);
    font-weight: 600;
    
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    font-size: 16px;
    text-align: center;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    z-index: 1;
    position: relative;
}

.hero-content h1 {
    font-size: 3.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 0 4px hsl(0deg 0% 0% / 50%);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.btn-book-lg {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-book-lg:hover {
    background-color: #d81b60;
    transform: translateY(-3px);
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
}

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

/* Package Cards */
.packages {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.package-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.package-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: bold;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.package-info {
    padding: 1.5rem;
    text-align: center;
}

.package-info h3 {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.price {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.package-features li {
    margin-bottom: 0.5rem;
    color: var(--text-light); /* Replaced #666 with the variable */
    font-size: 0.94rem;
}

.package-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--white);
}

.about h2 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
}

.about p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.btn-learn-more {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-learn-more:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Bathing Dates Section */
.bathing-dates-section {
    background-color: rgba(0, 0, 0, 0.5); /* Dark background overlay for contrast on text */
    color: var(--white);
    padding: 60px 0;
}

.bathing-date-box {
    text-decoration: none;
    color: inherit;
}

.box {
    background-color: var(--white);
    color: var(--secondary-color);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.box .day {
    font-size: 3rem;
    font-weight: bold;
}

.box .month-year {
    font-size: 1rem;
    color: var(--text-light);
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
}

h6 {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
}

.btn-outline-light {
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--black);
}

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

    .hero-content p {
        font-size: 1.2rem;
    }

    .package-buttons {
        flex-direction: column;
    }

    .quote-box {
        flex-direction: column;
        text-align: center;
    }

    .pm-image {
        width: 150px;
        height: 150px;
    }
}

/* Styling for Maha Kumbh Mela Section */
#maha-kumbh-mela-2025 {
    background-color: var(--light-bg); /* Matches the light background tone */
    padding: 60px 20px; /* Adds consistent spacing */
    border-top: 1px solid #ddd; /* Separator line for visual structure */
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Subtle shadow for depth */
}

#maha-kumbh-mela-2025 h1 {
    font-size: 2rem; /* Uniform with other section titles */
    color: var(--secondary-color);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
}

#maha-kumbh-mela-2025 h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color); /* Matches the primary accent */
}

#maha-kumbh-mela-2025 p {
    font-size: 1rem; /* Matches body text */
    line-height: 1.6; /* Comfortable line height for reading */
    color: var(--text-light);
    margin-bottom: 1.5rem; /* Space between paragraphs */
    text-align: justify;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #maha-kumbh-mela-2025 h1 {
        font-size: 1.5rem; /* Adjust title size for smaller screens */
    }

    #maha-kumbh-mela-2025 p {
        font-size: 0.9rem; /* Adjust paragraph size for readability */
    }
}
