/* ========================================= */
/* HERO SECTION CSS (UPDATED: Black Text)    */
/* ========================================= */

/* Ensure these fonts are imported */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Manrope:wght@400;600;800&display=swap');

/* HERO CONTAINER */
#hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #000; /* Default text color changed to Black */
}

/* VIDEO STYLING */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Brightness increased to make sure Black text pops */
    filter: brightness(1.2) contrast(1.1); 
}

/* OVERLAY REMOVED (To allow full brightness) */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none; /* <--- CHANGED: No Grey Layer */
    z-index: 1;
    pointer-events: none; /* Lets clicks pass through if needed */
}

/* CONTENT STYLING */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 85%;
    max-width: 1400px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; 
}

/* 1. SUB HEADLINE (Parasmani Ferro Industries) */
.sub-headline {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    
    /* UPDATED TO BLACK */
    color: #000000; 
    border-left: 3px solid #000000; /* Border is now Black */
    
    margin-bottom: 1.5rem;
    font-weight: 800;
    padding-left: 15px;
}

/* 2. MAIN HEADLINE (Premium Alloys) */
.main-headline {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    line-height: 1.1;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    
    /* UPDATED TO BLACK */
    color: #000000;
}

/* 3. HOLLOW TEXT (Ready Stock) */
.hollow-text {
    /* UPDATED TO BLACK STROKE */
    -webkit-text-stroke: 1px #000000;
    color: transparent; 
}

/* 4. DESCRIPTION */
.hero-description {
    max-width: 600px;
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    
    /* UPDATED TO BLACK */
    color: #000000;
    font-weight: 700; /* Bolder for readability */
    
    line-height: 1.6;
    margin-bottom: 3rem;
}

/* READABILITY GLOW (Crucial for Black text on Video) */
.main-headline, 
.sub-headline, 
.hero-description {
    /* Adds a soft white glow behind the black text */
    text-shadow: 0px 0px 25px rgba(255, 255, 255, 0.9);
}


/* THE WHITE CONTROL BAR */
.info-bar {
    display: flex;
    align-items: center;
    background: #fff; 
    color: #000;      
    padding: 1.5rem 2.5rem;
    gap: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3); /* Made shadow slightly lighter */
    transform: translateY(20px); 
}

.info-block {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #555;
    font-weight: 600;
    margin-bottom: 4px;
}

.info-data {
    font-size: 1.2rem;
    font-weight: 800;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.info-separator {
    width: 1px;
    height: 30px;
    background: #ddd;
}

.btn-primary {
    background: #000; 
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #333;
    transform: translateX(5px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .info-bar {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 1.5rem;
        background: rgba(255,255,255,0.95);
    }
    .info-separator { display: none; }
    .cta-container { width: 100%; }
    .btn-primary { width: 100%; justify-content: center; }
}