/* --- PROJECTS ROOM: OPEN AIR ENGINEERING --- */

/* 1. BASE HULL */
body {
    background-image: url('../assets/frontier-view.png'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    
    /* DIMMER SWITCH */
    background-color: rgba(0, 0, 0, 0.4);
    background-blend-mode: multiply;

    font-family: "Snell Roundhand", cursive;
    color: #ff8c00; /* Amber */
    
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
}

/* 2. TITLES & LOGO */
.sector-logo {
    width: 300px;
    height: auto;
    margin-top: 20px;
    margin-bottom: 5px;
    filter: sepia(100%) saturate(300%) hue-rotate(-15deg) drop-shadow(0 0 15px #ff8c00);
}

.site-title, h1 {
    font-size: 3.5rem !important;
    text-align: center;
    margin-top: 10px;
    color: #ff8c00 !important;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.4);
}

/* 3. PROJECT GRID (Invisible Structure) */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px; 
    max-width: 1400px; 
    width: 90%;
    margin: 40px auto;
}

/* 4. PROJECT CARDS (NO BOXES) */
.project-card {
    background: transparent !important; 
    border: none !important;          
    box-shadow: none !important;      
    backdrop-filter: none !important;
    
    padding: 20px;
    text-align: center; 
    transition: transform 0.4s ease;
}

.project-card:hover {
    transform: scale(1.05); 
    text-shadow: 0 0 30px #ff8c00, 0 0 60px #ff4500;
}

/* 5. TEXT STYLING */
.project-card h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #ff8c00;
    text-shadow: 0 0 15px rgba(255, 140, 0, 0.5);
}

.project-card p {
    font-size: 1.8rem;
    line-height: 1.4;
    color: #ffaa00; 
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
}

/* 6. STATUS TAGS (THE FIX: Now Amber) */
.status {
    font-family: "Courier New", monospace;
    font-size: 1rem;
    color: #ff8c00 !important; /* FIXED: Was Red, now Amber */
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
    border-bottom: 1px solid #ff8c00 !important; /* FIXED: Matching border */
    padding-bottom: 5px;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.6);
}

/* 7. NAVIGATION */
.nav-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: 50px;
}

.btn {
    display: inline-block;
    font-family: "Snell Roundhand", cursive;
    color: #ff8c00 !important;
    border: 1px solid #ff8c00;
    text-decoration: none;
    padding: 10px 30px;
    font-size: 1.5rem;
    border-radius: 5px;
    transition: 0.3s;
    background: transparent;
}

.btn:hover {
    background: rgba(255, 140, 0, 0.2);
    box-shadow: 0 0 20px #ff8c00;
    color: #ffffff !important;
}