/* About Page Specific Styles */

/* Body/Page Background */
body.page-template-about-page-php {
    background-image: url('./assets/images/space.png'); /* Replace with your image path */
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

/* Page Container for layout */
.about-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Glass Morphism Effect */
.glass-morphism {
    background: rgba(255, 255, 255, 0.081); /* Semi-transparent white background */
    backdrop-filter: blur(10px); /* The key to the glass effect */
    -webkit-backdrop-filter: blur(10px); /* For Safari support */
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 40px; /* Space between sections */
}

/* Introduction Section Styles */
.intro-section .section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}


.intro-section .section-header h1 {
    font-size: 1.2em;
    color: #fff; /* Light text for contrast with glass effect */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    margin: 0;
}

.intro-content p {
    color: #fff;
    line-height: 1.8;
    font-size: 0.9em;
}
/* Services Section Styles */
.services-section h2 {
    font-size: 1.2em;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    text-align: left; /* Changed from center to left */
    margin-bottom: 15px;
}

.services-section p {
    color: #fff;
    text-align: left; /* Changed from center to left */
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 0.9em;
}

.service-tags-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* Changed from center to flex-start */
    gap: 15px;
}

.service-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 8px;
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-tag:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.service-tag h3 {
    margin: 0;
    font-size: 0.7em;
    color: #fff;
    text-align: left; /* Changed from center to left */
}

/* --- Mobile Styles --- */
@media (max-width: 768px) {
    /* Main container padding for smaller screens */
    .about-page-container {
        padding: 10px;
    }

    /* Introduction Section */
    .intro-section .section-header {
        flex-direction: column; /* Stacks the image and heading vertically */
        text-align: center;
        gap: 10px;
    }

    .intro-section .section-header h1 {
        font-size: 1.4em; /* Adjust heading size for better readability */
    }
    .intro-content{
        font-size: 0.9em;
        text-align: center;
    }

    .intro-section .section-header img {
        max-width: 100px; /* Makes the image smaller */
    }

    /* Services Section */
    .services-section h2 {
        text-align: center; /* Center align for a better mobile layout */
    }

    .services-section p {
        text-align: center;
    }

    .service-tags-container {
        flex-direction: column; /* Stacks the tags vertically */
        align-items: stretch; /* Makes tags full-width */
    }

    .service-tag {
        padding: 15px; /* Adjust padding for a cleaner look */
    }

    .service-tag h3 {
        text-align: center; /* Center align the tag text */
    }

}