/* General Styling & Background */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #f0f0f0;
    background-color: #0c0a14;
    background-image: radial-gradient(circle at top, rgba(35, 43, 68, 0.5) 0%, rgba(12, 10, 20, 0) 60%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

/* Main content container */
.main-container {
    max-width: 700px;
    width: 100%;
}

/* Logo Styling */
.logo {
    max-width: 320px;
    width: 80%;
    height: auto;
    margin-bottom: 2rem;
    /* Optional: subtle animation */
    animation: float 6s ease-in-out infinite;
}

/* Title Styling ("Coming Soon") */
.coming-soon-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(236, 119, 255, 0.3), 0 0 10px rgba(119, 255, 251, 0.3);
    margin-bottom: 1.5rem;
}

/* Description paragraph */
.description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #c0c0d0;
    max-width: 550px;
    margin: 0 auto 2rem auto;
}

/* Contact Info & Email Link */
.contact-info {
    font-size: 1rem;
    color: #c0c0d0;
}

.contact-info a {
    color: #a7d8ff; /* A sky-like blue */
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(167, 216, 255, 0.7);
}

/* Social Media Icons */
.social-links {
    margin-top: 2.5rem;
    margin-bottom: 3rem;
}

.social-links a {
    font-size: 1.8rem;
    color: #c0c0d0;
    margin: 0 18px;
    transition: all 0.3s ease-in-out;
}

.social-links a:hover {
    color: #a7d8ff;
    transform: translateY(-5px) scale(1.1);
}

/* Footer */
footer {
    font-size: 0.9rem;
    color: #555;
}

/* Keyframe animation for subtle logo movement */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
    .coming-soon-title {
        font-size: 1.8rem;
    }
    .description {
        font-size: 1rem;
    }
    .logo {
        max-width: 250px;
    }
}
