:root {
    --white: #ffffff;
    --peach-bg: #fff5f0;
    --peach-accent: #ff9a7b;
    --black: #000000;
    --text-dark: #1a1a1a;
    --text-muted: #666666;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Luxury Header */
.main-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 30px 8%; background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky; top: 0; z-index: 1000;
}
.brand { font-weight: 800; letter-spacing: 1px; font-size: 0.9rem; }
.main-nav a { 
    text-decoration: none; color: var(--text-dark); 
    font-size: 0.8rem; font-weight: 700; margin-left: 25px; 
    text-transform: uppercase;
}

/* Page Intro */
.admin-intro {
    padding: 100px 8% 60px;
    text-align: center;
    background: linear-gradient(to bottom, var(--white), var(--peach-bg));
}
.admin-intro h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800; line-height: 1;
}
.serif-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 900;
    color: var(--peach-accent);
}

/* Rank Tag Styling */
.rank-tag {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    padding: 6px 15px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border-radius: 4px;
}

/* GOC Section Layout */
.goc-section { padding: 80px 8%; border-bottom: 1px solid var(--peach-bg); }

.goc-container {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Flip every second person */
.goc-container.alternate { flex-direction: row-reverse; }

/* SMALLER IMAGES - The "Anti-Clog" Fix */
.goc-visual {
    flex: 1;
    max-width: 450px; /* Limits the size of the admin photos */
    position: relative;
}

.goc-visual img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 30px 30px 0px var(--soft-peach); /* Decorative background block */
}

.goc-text { flex: 1.2; }

.name {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.bio-body p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Quote Box */
.quote-block {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.4rem;
    border-left: 4px solid var(--peach-accent);
    padding-left: 25px;
    margin: 40px 0;
    color: var(--text-dark);
}

/* Socials */
.social-links { display: flex; gap: 20px; }
.social-links a {
    width: 45px; height: 45px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-dark);
    transition: 0.3s;
    text-decoration: none;
}
.social-links a:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* --- MOBILE OPTIMIZATION --- */
@media (max-width: 968px) {
    .goc-container, .goc-container.alternate {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .goc-visual {
        max-width: 300px; /* Makes images much smaller on mobile */
        margin: 0 auto;
    }

    .goc-visual img {
        box-shadow: 15px 15px 0px var(--peach-bg);
    }

    .name { font-size: 2.2rem; }
    
    .quote-block {
        text-align: left;
        font-size: 1.1rem;
    }
    
    .social-links { justify-content: center; }
}

.final-footer {
    padding: 60px;
    text-align: center;
    background: var(--black);
    color: var(--white);
    font-size: 0.8rem;
    opacity: 0.8;
}