/* styles.css */

:root {
    --navy: #1B263B;
    --gold: #C5A059;
}

body { 
    font-family: 'Inter', sans-serif; 
    color: var(--navy); 
    overflow-x: hidden; 
    background-color: white;
}

h1, h2, h3, .serif { 
    font-family: 'Playfair Display', serif; 
}

/* Navigation Links */
.nav-link { 
    transition: color 0.3s; 
    position: relative; 
    padding: 0.5rem 0; 
    color: var(--navy); 
    text-decoration: none;
}

.nav-link:hover { 
    color: var(--gold); 
}

/* The Active Page Underline */
.active-page { 
    color: var(--gold) !important; 
    font-weight: 600; 
}

.active-page::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    height: 2px; 
    background: var(--gold); 
}

/* PAGE ENTRANCE ANIMATION */
.page-wrapper {
    opacity: 0;
    animation: pageEntrance 0.6s ease-out forwards;
}

@keyframes pageEntrance {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Shared UI Components */
.btn-gold { 
    background-color: var(--gold); 
    color: white; 
    transition: all 0.3s; 
    border: 1px solid var(--gold); 
    display: inline-block;
}

.btn-gold:hover { 
    background-color: transparent; 
    color: var(--gold); 
    transform: translateY(-2px); 
}

.card-prof { 
    background: white; 
    border: 1px solid #e5e7eb; 
    border-top: 4px solid var(--gold); 
    transition: all 0.3s; 
    height: 100%; 
}

.card-prof:hover { 
    box-shadow: 0 10px 30px rgba(27, 38, 59, 0.1); 
    transform: translateY(-5px); 
}

/* Directory Placeholder Styles */
.directory-box { 
    background: repeating-linear-gradient(45deg, #f9f9f9, #f9f9f9 10px, #ffffff 10px, #ffffff 20px); 
    border: 2px dashed #e2e8f0; 
}