/* ===== CAMPUS LIFE PAGE STYLES ===== */

.campus-hero {
    padding: calc(var(--spacing-unit) * 12) 0 calc(var(--spacing-unit) * 8);
    padding-top: 120px;
    background: var(--graphite-black);
    text-align: center;
}

.hero-text {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(209, 213, 219, 0.8);
    margin-top: calc(var(--spacing-unit) * 4);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Life Timeline */
.life-timeline-section {
    padding: calc(var(--spacing-unit) * 12) 0;
    background: var(--tungsten-gray);
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: calc(var(--spacing-unit) * 4);
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        var(--molten-copper) 0%, 
        rgba(184, 115, 51, 0.3) 50%,
        var(--molten-copper) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: calc(var(--spacing-unit) * 6);
    padding-left: calc(var(--spacing-unit) * 6);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: calc(var(--spacing-unit) * -1.5);
    top: calc(var(--spacing-unit) * 0.5);
    width: 12px;
    height: 12px;
    background: var(--molten-copper);
    border-radius: 50%;
    border: 3px solid var(--tungsten-gray);
    box-shadow: 0 0 10px var(--molten-copper);
}

.timeline-time {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--molten-copper);
    margin-bottom: calc(var(--spacing-unit) * 1);
}

.timeline-content {
    background: var(--graphite-black);
    border-radius: 16px;
    padding: calc(var(--spacing-unit) * 4);
    box-shadow: 
        8px 8px 16px rgba(0, 0, 0, 0.3),
        -4px -4px 8px rgba(255, 255, 255, 0.02);
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: calc(var(--spacing-unit) * 1.5);
    color: var(--titanium-silver);
}

.timeline-content p {
    color: rgba(209, 213, 219, 0.7);
    font-size: 0.9375rem;
    max-width: 100%;
    line-height: 1.7;
}

/* Organizations Section */
.organizations-section {
    padding: calc(var(--spacing-unit) * 12) 0;
    background: var(--graphite-black);
}

.organizations-section .section-title {
    text-align: center;
}

.org-card {
    background: var(--tungsten-gray);
    border-radius: 20px;
    padding: calc(var(--spacing-unit) * 5);
    text-align: center;
    height: 100%;
    transition: var(--transition-smooth);
    box-shadow: 
        8px 8px 16px rgba(0, 0, 0, 0.3),
        -4px -4px 8px rgba(255, 255, 255, 0.02);
}

.org-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        12px 12px 24px rgba(0, 0, 0, 0.4),
        -6px -6px 12px rgba(255, 255, 255, 0.03);
}

.org-icon {
    font-size: 3rem;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.org-card h3 {
    font-size: 1.25rem;
    margin-bottom: calc(var(--spacing-unit) * 2);
    color: var(--titanium-silver);
}

.org-card p {
    color: rgba(209, 213, 219, 0.7);
    font-size: 0.9375rem;
    max-width: 100%;
    line-height: 1.7;
}

/* Housing Section */
.housing-section {
    padding: calc(var(--spacing-unit) * 12) 0;
    background: var(--tungsten-gray);
}

.housing-section .section-title {
    text-align: center;
}

.housing-text {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: rgba(209, 213, 219, 0.8);
    margin-top: calc(var(--spacing-unit) * 3);
    margin-bottom: calc(var(--spacing-unit) * 4);
    max-width: 100%;
    line-height: 1.8;
}

.housing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.housing-features li {
    padding: calc(var(--spacing-unit) * 2) 0;
    color: rgba(209, 213, 219, 0.7);
    font-size: 1rem;
    position: relative;
    padding-left: calc(var(--spacing-unit) * 4);
}

.housing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--molten-copper);
    font-weight: bold;
    font-size: 1.25rem;
}

.housing-visual {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    filter: brightness(0.7) contrast(1.2);
    transition: var(--transition-smooth);
}

.housing-section:hover .housing-visual {
    filter: brightness(0.8) contrast(1.3);
}

.housing-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 20px,
            rgba(184, 115, 51, 0.05) 20px,
            rgba(184, 115, 51, 0.05) 22px
        );
}

@media (max-width: 768px) {
    .timeline-container {
        padding-left: calc(var(--spacing-unit) * 3);
    }
    
    .timeline-item {
        padding-left: calc(var(--spacing-unit) * 4);
    }
    
    .housing-visual {
        height: 300px;
        margin-top: calc(var(--spacing-unit) * 4);
    }
    
    .org-card {
        padding: calc(var(--spacing-unit) * 4);
    }
}

