/* --- Reset & Basics --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f7f6;
    overflow: hidden; /* Prevents scrollbars during animation */
    position: relative;
}

/* --- The Blueprint Background Effect --- */
.blueprint-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(#e1e8ed 1px, transparent 1px), 
        linear-gradient(90deg, #e1e8ed 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
}

/* --- Main Layout --- */
.content-wrapper {
    text-align: center;
    width: 100%;
    max-width: 600px;
    padding: 20px;
    animation: fadeIn 1.5s ease-out;
}

.card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 46, 82, 0.15); /* Navy shadow */
    border-top: 5px solid #003056; /* Brand Navy Blue */
}

/* --- Logo Styling --- */
.logo-container img {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

/* --- Typography --- */
h1 {
    color: #003056; /* Brand Navy */
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1rem;
}

.sub-text {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
}

/* --- Construction Progress Bar --- */
.construction-status {
    background: #f0f4f8;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 2rem;
    text-align: left;
}

.label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #003056;
    text-transform: uppercase;
}

.progress-bar {
    height: 10px;
    background: #ddd;
    border-radius: 5px;
    margin: 8px 0;
    overflow: hidden;
    position: relative;
}

/* The moving striped bar */
.progress-fill {
    height: 100%;
    width: 65%; /* Set static width */
    background: repeating-linear-gradient(
        45deg,
        #003056,
        #003056 10px,
        #004a85 10px,
        #004a85 20px
    );
    border-radius: 5px;
    animation: stripeMove 2s linear infinite;
}

.status-text {
    font-size: 0.8rem;
    color: #555;
    font-style: italic;
}

/* --- Button --- */
.contact-section p {
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}

.btn {
    display: inline-block;
    background-color: #003056; /* Brand Navy */
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s;
}

.btn:hover {
    background-color: #004a85; /* Lighter Blue */
    transform: translateY(-2px);
}

/* --- Footer --- */
footer {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #777;
    line-height: 1.5;
}

/* --- Animations --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes stripeMove {
    0% { background-position: 0 0; }
    100% { background-position: 50px 0; }
}

/* --- Mobile Tweaks --- */
@media (max-width: 480px) {
    .card { padding: 2rem 1rem; }
    h1 { font-size: 1.5rem; }
}