/* --- About Page Specific Styles --- */

/* Full Page Background Image for About Page ONLY */
body {
    background-image: url('https://odishayatra.in/wp-content/uploads/2025/07/WhatsApp-Image-2025-07-23-at-11.20.07-AM.jpeg'); /* Path relative to about.css */
    background-size: cover;        /* Ensures the image covers the entire viewport */
    background-position: center center; /* Centers the image */
    background-attachment: fixed;  /* Makes the background fixed while content scrolls */
    background-repeat: no-repeat;  /* Prevents the image from repeating */
    min-height: 100vh;             /* Ensures body takes at least full viewport height */
    margin: 0;                     /* Remove default body margin */
    padding: 0;                    /* Remove default body padding */
    overflow-x: hidden;            /* Prevent horizontal scrollbar if content overflows */
}

/* Optional: Overlay for readability if background is busy/bright */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); /* Adjust opacity (0.0 to 1.0) for a dark overlay */
    z-index: -1; /* Place it behind content */
}

/* Ensure your main content containers are transparent or semi-transparent
   so the body background image can be seen through them. */
#primary,
.site-main,
.about-page-content,
.about-intro-section, /* Added this new class */
.additional-about-sections {
    background-color: transparent !important; /* Forces transparency */
    position: relative; /* Ensures correct stacking context */
    z-index: 1; /* Ensures content is above the body::before overlay */
}

/* General container for the about page content */
.about-page-content {
    margin-top: 0; /* Adjust as needed based on header */
    margin-bottom: 60px; /* Spacing below content */
}

/* New Intro Section (replaces the banner text overlay) */
.about-intro-section {
    padding: 60px 20px;
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
    box-sizing: border-box;
    max-width: 1200px; /* Constrain width like other containers */
    margin-left: auto;
    margin-right: auto;
}

.about-page-title {
    font-size: 3.5em;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.intro-paragraph {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1em;
    line-height: 1.7;
    color: #F0F0F0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* Additional sections container (now holds only the vision/mission example) */
.additional-about-sections {
    max-width: 1200px;
    margin: 0 auto; /* Center it */
    padding: 0 20px; /* Consistent padding */
    box-sizing: border-box;
}

/* Individual sections within the About page */
.about-block {
    margin-bottom: 40px;
    padding: 30px;
    color: #FFFCFB;
}

/* Glassmorphism for sub-sections/cards */
.glassmorphic-card {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly less opaque */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px; /* Slightly less rounded */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glassmorphic-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.about-block h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    text-align: center;
    color: #FFFCFB;
}

/* Vision/Mission specific styles */
.mission-content p {
    margin-bottom: 1em;
    text-align: justify;
}

/* Removed: Team Section Styles, Contact Button Style */

/* Responsive Adjustments */
@media (max-width: 992px) {
    .about-intro-section {
        padding: 40px 20px;
    }
    .about-page-title {
        font-size: 3em;
    }
    .intro-paragraph {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .about-intro-section {
        padding: 30px 15px;
    }
    .about-page-title {
        font-size: 2.5em;
    }
    .intro-paragraph {
        font-size: 0.95em;
    }
    .additional-about-sections {
        padding: 0 15px;
    }
    .about-block {
        padding: 20px;
        margin-bottom: 30px;
        border-radius: 10px;
    }
    .about-block h2 {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .about-intro-section {
        padding: 20px 10px;
    }
    .about-page-title {
        font-size: 2em;
    }
    .intro-paragraph {
        font-size: 0.9em;
    }
    .additional-about-sections {
        padding: 0 10px;
    }
    .about-block {
        padding: 15px;
        margin-bottom: 20px;
        border-radius: 8px;
    }
    .about-block h2 {
        font-size: 1.8em;
    }
}