/* === ABOUT US PAGE === */

/* PAGE LAYOUT */
.about-section-container {
    min-height: calc(100vh - 200px); /* leaves space for header/footer */
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2C1241; /* Dark purple background */
    font-family: 'Luckybones', sans-serif;
}

/* CARD STYLE */
.about-section {
    background-color: #3A1E56; /* Matches Thank You card */
    max-width: 900px;
    width: 100%;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
    color: #EADDF7; /* Light purple text */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* HEADINGS */
.about-section h2 {
    font-size: 2.2rem;
    color: #C468FF; /* Bright purple for headings */
    text-align: center;
    margin-bottom: 25px;
}

.about-section h3 {
    font-size: 1.8rem;
    color: #C468FF;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* PARAGRAPHS */
.about-section p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #F7F7F7;
    margin-bottom: 15px;
}

/* ABOUT US IMAGES */
.about-us-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 30px 0;
}

/* Force uniform image size */
.about-us-images img {
    width: 100%;
    aspect-ratio: 1 / 1;   /* perfect square */
    object-fit: cover;    /* crops instead of stretching */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Tablet */
@media (max-width: 1024px) {
    .about-us-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .about-us-images {
        grid-template-columns: 1fr;
    }
}
