/* --- Full Page Background Image --- */
html, body {
    height: 100%; /* Ensures html and body fill the viewport height */
    margin: 0;
    padding: 0;
}

body {
    /* Set your full-page background image here */
    background-image: url('http://nps-bhatli.local/wp-content/uploads/2025/08/full-site-bg.jpg'); /* <--- REPLACE THIS WITH YOUR IMAGE URL */
    background-size: contain; /* Ensures the image covers the entire viewport */
    background-position: center center; /* Centers the image */
    background-repeat: repeat; /* Prevents the image from tiling */
    background-attachment: fixed; /* Makes the background fixed while content scrolls (parallax-like) */

    /* Optional: Fallback background color if image fails to load or for spaces around sections */
    background-color: #0f0f0f; /* A light grey fallback */

    /* Ensure content doesn't get hidden behind any fixed backgrounds or margins */
    overflow-x: hidden; /* Prevents horizontal scrollbar if elements slightly exceed width */
}

/* --- Contact Page Styles --- */
.contact-page-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 25px;
}

.contact-page-wrapper .page-title {
    font-family: 'Arial', sans-serif;
    font-size: 2.5em;
    color: #f6f6f6;
    margin-bottom: 30px;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: flex-start;
    background-color: #FFF9E5;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

.section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5em;
    color: #2c3e50;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

.contact-info {
    padding-right: 20px;
    font-family: 'Open Sans', sans-serif;
}

/* NEW: Card Grid for Details */
.contact-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.contact-card {
    background-color: #DCCFC0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 2.5em;
    color: #007bff;
    margin-bottom: 10px;
    display: block;
}

.card-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2em;
    color: #2c3e50;
    margin-bottom: 5px;
}

.contact-card p,
.contact-card address {
    margin: 0;
    color: #555;
    line-height: 1.5;
    font-style: normal;
}

.contact-card a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #0056b3;
}

.contact-map {
    padding-left: 20px;
}

.map-container {
    height: 400px;
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    .contact-info {
        padding-right: 0;
        margin-bottom: 20px;
    }
    .contact-map {
        padding-left: 0;
    }
    .map-container {
        height: 300px;
    }
}
@media (max-width: 480px) {
    .contact-page-wrapper .page-title{
        font-size: 1.8em;
    }
    .section-title {
        font-size: 1em;
    }
    .card-icon{
        font-size: 1.6em;
    }
    .card-title{
        font-size: 1em;
    }
    .contact-card p, .contact-card address{
        font-size: 0.8em;
    }
    .contact-card p{
        font-size: 0.8em;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    .contact-info {
        padding-right: 0;
        margin-bottom: 20px;
    }
    .contact-map {
        padding-left: 0;
    }
    .map-container {
        height: 300px;
    }
}