
:root {
    --sage: #9CAF88;
    --rose: #E5C3C6;
    --sand: #F9F7F2;
    --taupe: #7D746D;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--taupe);
    background-color: var(--sand);
}

/* --- NAVIGATION --- */
nav {
    background: var(--white);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(156, 175, 136, 0.1);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--sage);
    text-decoration: none;
    letter-spacing: 2px;
    font-style: italic;
}

.back-link {
    text-decoration: none;
    color: var(--taupe);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- HERO --- */
.alumni-hero {
    padding: 80px 10% 40px;
    text-align: center;
}

.accent-text { 
    color: var(--rose); 
    font-weight: 500; 
    text-transform: uppercase; 
    font-size: 0.75rem; 
    letter-spacing: 4px; 
    display: block;
    margin-bottom: 10px;
}

h1 { 
    font-family: 'Playfair Display', serif; 
    font-size: 3rem; 
    color: var(--sage); 
    font-weight: 400;
}

.intro-p { max-width: 600px; margin: 20px auto; font-style: italic; }

/* --- MASONRY GALLERY --- */
.alumni-container {
    padding: 20px 10% 100px;
}

.masonry-grid {
    column-count: 3;
    column-gap: 20px;
}

.alumni-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: 0.3s;
}

.alumni-item:hover {
    transform: translateY(-5px);
}

.alumni-item img {
    width: 100%;
    display: block;
}

.alumni-details {
    padding: 20px;
    text-align: center;
}

.alumni-details h3 {
    font-family: 'Playfair Display', serif;
    color: var(--sage);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.alumni-details p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--rose);
}

/* --- TESTIMONIAL MINI-SECTION --- */
.testimonial-bar {
    background-color: var(--rose);
    color: var(--white);
    padding: 60px 15%;
    text-align: center;
    margin-bottom: 80px;
}

.testimonial-bar blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
}

.testimonial-bar cite {
    display: block;
    margin-top: 15px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-style: normal;
}

@media (max-width: 900px) {
    .masonry-grid { column-count: 2; }
}

@media (max-width: 600px) {
    .masonry-grid { column-count: 1; }
    h1 { font-size: 2.2rem; }
}

hr {
    color: lightgrey;
    height: 3px;
}
