/* --- Global Resets & Body Styles --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%; /* Important for full-viewport elements */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Helvetica, Arial, sans-serif;
    color: #fff; /* Default text color for the card */
}

body {
    display: flex; /* Use flexbox for centering the card */
    justify-content: center;
    align-items: center;
    padding: 20px; /* Padding around the card on smaller screens */
    overflow: hidden; /* Prevent scrollbars if image is slightly larger */
}

/* --- Full-Viewport Background Image --- */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/47thstreet.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    filter: brightness(0.7);
}

/* ... rest of the styles remain the same ... */
/* --- Semi-Transparent Card --- */
.card {
    background-color: rgba(0, 0, 0, 0.65); /* Semi-transparent dark background */
    backdrop-filter: blur(5px); /* Optional: Creates a frosted glass effect */
    border-radius: 12px;
    padding: 40px;
    max-width: 500px; /* Max width of the card */
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transform: translateY(0); /* For potential future animations */
    transition: transform 0.3s ease-out; /* For potential future animations */
}

.card h1 {
    font-size: 2.5rem; /* Large title */
    font-weight: 700;
    margin-bottom: 20px;
}

.card p {
    font-size: 1.15rem; /* Readable paragraph text */
    margin-bottom: 15px;
    opacity: 0.9;
}

.card p.contact-info {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.7;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .card {
        padding: 30px; /* Slightly less padding on mobile */
        max-width: 90%; /* Allow card to take more width on small screens */
    }

    .card h1 {
        font-size: 1.8rem;
    }

    .card p {
        font-size: 1rem;
    }
}