/* static/css/kenduadihi_page.css */

/* Kenduadihi Hero Section Specific Styles */
.kenduadihi-hero {
    /* Example: A specific background image for this hero section */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/kenduadihi_hero_banner.jpg') center center no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
    
}

.kenduadihi-page-heading {
    font-family: 'Saira', sans-serif; /* Your heading font */
    font-size: 4.5rem; /* Slightly larger for main page title */
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
}

/* Main Content Section */
.kenduadihi-content {
    background-color: transparent; /* This section sits on top of the body background, so make it transparent */
    padding: 60px 0;
}

/* Sidebar Specific Styles - can be customized */
.sticky-sidebar {
    position: sticky;
    top: 130px; /* Adjust based on navbar height + desired offset */
    z-index: 100;
    background-color: #fff; /* White background for the sidebar card */
    border-radius: 0.75rem;
}

.kenduadihi-sidebar-img {
    border: 4px solid var(--primary);
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.kenduadihi-sidebar-img:hover {
    transform: translateY(-5px);
}

/* Main Content Card - ensure white background */
.main-content-card {
    border-radius: 0.75rem;
    background-color: white; /* Explicitly white background to contrast with body background */
    padding: 40px;
    box-shadow: 0 4px 20px var(--shadow-medium); /* Slightly stronger shadow */
}

/* Section Titles within main content */
.main-content-card .section-title {
    font-family: 'Saira', sans-serif;
    font-size: 2rem; /* Adjusted for this page */
    font-weight: 700;
    color: var(--primary); /* Orange color */
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary); /* Light orange underline */
    position: relative;
    padding-left: 0;
}

/* Icons for section titles */
.main-content-card .section-title i {
    color: var(--primary);
    margin-right: 10px;
}

.main-content-card p {
    font-family: 'Inter', sans-serif;
    text-align: justify;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.main-content-card ul {
    list-style: none;
    padding-left: 0;
}

.main-content-card ul li {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 25px;
}
.main-content-card ul li::before {
    content: "\f00c"; /* Font Awesome Check icon for list items */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: var(--primary);
}

.kenduadihi-image {
    border-radius: 0.75rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}
.kenduadihi-image:hover {
    transform: scale(1.02);
}

/* Map Container Styling */
.map-container iframe {
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .kenduadihi-page-heading {
        font-size: 3.8rem;
    }
}

@media (max-width: 991.98px) {
    .kenduadihi-hero {
        padding: 80px 0 60px 0;
    }
    .kenduadihi-page-heading {
        font-size: 2.8rem;
    }
    .kenduadihi-hero .lead {
        font-size: 1.1rem;
    }
    .sticky-sidebar {
        position: static;
        top: auto;
    }
    .main-content-card .section-title {
        font-size: 1.6rem;
    }
    .main-content-card p, .main-content-card ul li {
        font-size: 1rem;
    }
    .main-content-card {
        padding: 25px;
    }
}

@media (max-width: 767.98px) {
    .kenduadihi-page-heading {
        font-size: 2.2rem;
    }
    .kenduadihi-hero .lead {
        font-size: 1rem;
    }
    .main-content-card .section-title {
        font-size: 1.4rem;
    }
    .main-content-card p, .main-content-card ul li {
        font-size: 0.95rem;
    }
}