/* ========================================
   ROCKS 6 PAGE SPECIFIC STYLES
   Path: css/3rocksandminerals/rocks6.css
   ======================================== */

/* --- Layout Utilities --- */
img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 4px; /* Slight rounding for a slightly modernized look */
}

/* --- PAGE HEADER --- */
.r6-page-title {
    font-size: 2.2rem;
    color: #000000;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    font-family: Arial, Helvetica, sans-serif;
}

/* --- TOP SECTION (3 Sisters) --- */
.r6-top-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 20px; /* 20px spacing between photos */
    margin-bottom: 50px;
}

.r6-sister-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1; /* Equal width for all three */
}

.r6-caption-below {
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #000000;
    text-align: center;
}

/* --- BOTTOM SECTION (Complex Layout) --- */
.r6-bottom-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 15px; /* 15px between columns */
    margin-bottom: 50px;
}

/* Side Columns (Larger Photos) */
.r6-bot-side-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Center Column (Stacked Smaller Photos) */
.r6-bot-center-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Flexbox naturally allows this column to stretch taller than the sides */
}

.r6-caption-above {
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #000000;
    text-align: center;
}

/* Specific Spacing for Center Column */
.r6-center-image-1 {
    margin-bottom: 25px; /* 25px padding under bigrock.jpg */
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .r6-top-section {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .r6-bottom-section {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .r6-bot-side-col, .r6-bot-center-col {
        width: 100%;
        max-width: 400px; /* Prevent images from getting too huge on mobile */
    }
}