/* =========================================
   FICINO MODELING AGENCY - THE STUDIO
   ========================================= */

/* 1. BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #050505; /* Deepest Black */
    color: #F0F0F0;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.5;
    overflow-x: hidden;
}

/* 2. THE LIQUID BACKGROUND */
.bg-liquid {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    
    /* CRITICAL FIX: Ensure this filename matches exactly what is in your assets folder */
    background-image: url('assets/ficino-modeling-agency-digital-talent-board.jpg');
    
    background-size: cover;
    background-position: center; 
    background-repeat: no-repeat;
    z-index: 1;
    
    /* Gradient Overlay */
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0) 100%), 
                url('assets/ficino-modeling-agency-digital-talent-board.jpg');
    background-size: cover;
    background-position: center;
}

/* 3. LAYOUT */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 4. TYPOGRAPHY - FASHION STYLE */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 6vw, 6rem);
    line-height: 1;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.highlight {
    font-style: italic; 
    color: #E5E5E5; 
}

.subtitle {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #C6A87C; 
    margin-bottom: 4rem;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #FFF;
}

h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #888;
    margin-bottom: 1rem;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
    display: inline-block;
}

/* 5. SECTIONS */
main {
    max-width: 600px;
}

.mission p {
    font-size: 1.1rem;
    color: #CCC;
    margin-bottom: 4rem;
}

.rosters {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 5rem;
}

.talent-list {
    list-style: none;
}

.talent-list li {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.tier {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #666;
    vertical-align: middle;
    margin-left: 0.5rem;
}

/* 6. BUTTONS & FOOTER */
.btn-book {
    display: inline-block;
    text-decoration: none;
    background: transparent;
    color: #FFF;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    padding: 1rem 3rem;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.4s ease;
}

.btn-book:hover {
    border-color: #C6A87C; 
    color: #C6A87C;
    background: rgba(198, 168, 124, 0.05);
}

footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.copyright {
    font-size: 0.75rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.parent-link {
    color: #777;
    text-decoration: none;
    transition: color 0.3s;
}
.parent-link:hover { color: #FFF; }

/* 7. ANIMATIONS */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1.5s ease-out 0.5s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1.5s ease-out 1s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 8. MOBILE OPTIMIZATION */
@media (max-width: 768px) {
    .bg-liquid {
        background-position: 70% center; 
    }
    
    h1 { font-size: 3.5rem; }
    
    .container {
        padding: 4rem 1.5rem;
        justify-content: flex-end; 
    }

    footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================================
   LINK STYLING
   ========================================= */

a {
    text-decoration: none; 
    color: inherit; 
}

/* Specific Style for the Model Names */
.talent-link {
    color: #FFFFFF;         
    text-decoration: none;  
    border-bottom: 1px solid transparent; 
    transition: all 0.3s ease;
    cursor: pointer;
}

.talent-link:hover {
    color: #C6A87C;         
    border-bottom: 1px solid #C6A87C; 
}