/* DELTA VELOCITY LLC
   Global Stylesheet 
   Matches "Ventures" Industrial/Cyber Design
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Oswald:wght@400;500;700&display=swap');

/* GLOBAL RESET */
body, html { 
    margin: 0; 
    padding: 0; 
    min-height: 100%; 
    font-family: 'Inter', sans-serif; 
    overflow-x: hidden; 
}

/* TYPOGRAPHY */
h1, h2, h3, h4, .font-display { 
    font-family: 'Oswald', sans-serif; 
    letter-spacing: 0.08em; 
    text-transform: uppercase; 
    font-weight: 500; 
}

.font-body { 
    font-family: 'Inter', sans-serif; 
    font-weight: 300; 
}

/* BACKGROUND - FIXED PNG */
.global-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -50;
    /* Ensure you have this image or a fallback */
    background-image: url('DVBackgroundLogo.webp');
    background-size: cover;
    background-position: center;
    background-color: #0f172a; /* Fallback dark blue */
}

.texture-overlay { 
    position: absolute; 
    inset: 0; 
    opacity: 0.3; 
    background-image: url("data:image/svg+xml,%3Csvg width='4' height='4' viewBox='0 0 4 4' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3h1v1H1V3zm2-2h1v1H3V1z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E"); 
}

/* HEADER & FOOTER */
.header-panel { 
    background-color: #000000; 
    border-bottom: 1px solid #1f2937; 
    height: 80px; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    padding: 0 2rem; 
    position: fixed; 
    z-index: 50; 
    top: 0; 
    width: 100%; 
}

/* Footer Locked */
.footer-panel { 
    background-color: #000000; 
    border-top: 1px solid #1f2937; 
    padding: 1.5rem 2rem; 
    position: fixed; 
    bottom: 0; 
    width: 100%; 
    z-index: 50; 
}

/* CARDS */

/* UPDATED: Glassmorphism - Less frosted, more clear */
.glass-card {
    background: rgba(60, 65, 75, 0.20); /* Neutral Gray, high transparency */
    backdrop-filter: blur(5px); /* Minimal blur for clearer look */
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

/* REVERTED: Original Gradient Style */
.metal-card {
    background: linear-gradient(160deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(78, 120, 135, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metal-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 25px -5px rgba(78, 120, 135, 0.2); 
    border-color: rgba(78, 120, 135, 0.6); 
}

/* BUTTONS */

/* REVERTED: Original Gradient Style */
.metal-btn {
    background: linear-gradient(to bottom, #4E7887, #375661);
    border-top: 1px solid #7FA6B5;
    border-bottom: 1px solid #1F3036;
    transition: all 0.2s ease;
    position: relative; 
    overflow: hidden;
    cursor: pointer;
}

.metal-btn:hover { 
    filter: brightness(1.1); 
    transform: translateY(-1px); 
    box-shadow: 0 0 15px rgba(78, 120, 135, 0.4); 
}

.metal-btn::after { 
    content: ''; 
    position: absolute; 
    top: 0; left: -100%; 
    width: 100%; height: 100%; 
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); 
    transition: 0.5s; 
}

.metal-btn:hover::after { 
    left: 100%; 
}

/* FORMS */
.form-input { 
    background: rgba(15, 23, 42, 0.6); 
    border: 1px solid #475569; 
    color: white; 
    transition: border-color 0.3s; 
}

.form-input:focus { 
    border-color: #4E7887; 
    outline: none; 
    ring: 1px #4E7887; 
}