/* --- About Page Specific Styling --- */

/* Hero Image Header - No Text Here */
.about-hero-image {
    background-image: url('images/a1.png'); /* Using your specified image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 650px; /* Adjust height as needed for your image */
    padding-top: 90px; /* To push content below the fixed navbar */
    position: relative;
    overflow: hidden; 
    
    display: flex; /* Use flexbox to position content */
    align-items: flex-start; /* Align content to the top */
    justify-content: center; /* Center content horizontally */
    text-align: center; /* Ensure text itself is centered */
    color: #fff; /* Ensure text color is white */
}

/* Overlay for readability - adjusted slightly for top text */
.about-hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Darker overlay on the top, fading to less dark at the bottom */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

/* Container for the header text - make sure it's above the overlay */
.about-hero-image .header-content {
    position: relative;
    z-index: 2;
    padding-top: 4.5rem; /* Further push down content from the very top, beneath navbar */
}

/* Styling for the header title (Serving Happiness Since 2000) */
.about-hero-image .about-title {
    font-size: 3.5rem; /* Larger font size for prominence */
    font-weight: bold;
    margin-bottom: 1rem;
    letter-spacing: 2px; /* A bit more spacing */
    color: #ffc107; /* Yellow color to stand out */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Text shadow for better readability on image */
}

/* Styling for the header subtitle */
.about-hero-image .about-subtitle {
    font-size: 1.3rem; /* Slightly larger */
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    color: #f0f0f0; 
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); /* Text shadow for better readability on image */
}

/* REMOVED: .about-intro-text section is no longer needed */
/*
.about-intro-text {
    background-color: #121212;
    color: #fff;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}
*/

/* Content Section Headings */
.about-section-heading {
    font-size: 2.2rem;
    font-weight: bold;
    color: #ffc107; /* Yellow text for emphasis */
    margin-bottom: 1.2rem;
     margin-top: -72px;
}
/* Content Text */
.about-text {
    color: #f0f0f0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.0rem;

   
}

.about-text-link {
    color: #f0f0f0;
    margin-top: 2rem; 
    font-size: 1.0rem;
     margin-top: -88px;
}

.about-text-link a {
    color: #ffc107 !important;
    font-weight: bold;
    text-decoration: none;
}
body {
    background-color: #121212; 
    color: #f0f0f0; /* Light text color */
}

/* Custom Navigation Bar Styling */


/* REMOVED: Styling for the former header text, now in .about-hero-image directly */
/*
.about-intro-text .about-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    color: #ffc107;
}

.about-intro-text .about-subtitle {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: #f0f0f0; 
}
*/