/* =========================================
   MARSILIO FICINO MEDIA GROUP - FINAL MASTER
   ========================================= */

/* 1. GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #050505; /* Corporate Black */
    color: #E0E0E0;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
}

/* 2. BACKGROUND ASSET */
.bg-liquid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: url('./assets/marsilio-ficino-media-group-digital-ip-infrastructure.jpg') no-repeat center center/cover;
    opacity: 0.4; 
}

/* 3. LAYOUT */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

/* 4. TYPOGRAPHY & LINKS */
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.subtitle {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    line-height: 1.5;
}

a.talent-link {
    color: #ffffff !important; 
    text-decoration: none;
    border-bottom: 1px solid #444;
    transition: all 0.3s ease;
}
a.talent-link:hover {
    color: #D4AF37 !important; 
    border-bottom: 1px solid #D4AF37;
}

/* 5. SECTIONS */
.mission {
    margin-top: 100px;
    border-left: 1px solid #333;
    padding-left: 30px;
}

.mission p {
    font-size: 1.2rem;
    color: #ddd;
    max-width: 700px;
    line-height: 1.6;
}

.roster-block {
    margin-top: 60px;
}

.talent-list {
    list-style: none;
}

.talent-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* 6. FORM STYLING (The "Clear Glass" Fix) */
.booking-form-container {
    margin-top: 80px;
    padding: 40px;
    
    max-width: 650px; 
    margin-left: 0;   
    margin-right: auto; 
    
    /* RESTORING CLEAR GLASS (0.02 White) */
    background: rgba(255, 255, 255, 0.02); 
    border: 1px solid rgba(255, 255, 255, 0.15); 
    border-radius: 4px;
    text-align: left;
    
    /* Stronger blur to separate it from background without darkening */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.booking-form-container h2 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.booking-form-container label {
    display: block;
    color: #888;
    margin-top: 25px;
    font-size: 0.75em;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* Lighter Inputs for Better Visibility */
.booking-form-container input[type="text"],
.booking-form-container textarea,
.booking-form-container select {
    width: 100%;
    padding: 15px;
    margin-top: 10px;
    /* Much clearer input background (30% black instead of 60%) */
    background: rgba(0, 0, 0, 0.3); 
    border: 1px solid #333;
    color: #fff;
    font-family: 'Inter', sans-serif;
    border-radius: 0px; 
    transition: border-color 0.3s ease;
}

.booking-form-container input:focus,
.booking-form-container textarea:focus,
.booking-form-container select:focus {
    outline: none;
    border-color: #fff;
    background: rgba(0, 0, 0, 0.8);
}

.booking-form-container button {
    margin-top: 50px;
    padding: 20px 30px;
    background: #fff; 
    color: #000;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 3px;
    width: 100%;
    transition: all 0.3s ease;
}

.booking-form-container button:hover {
    background: #ccc;
}

/* 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); }
}