/* Base Reset & Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #fbfaf8; /* A warm, minimal off-white */
    color: #2c2c2c;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Logo Styling */
.main-logo {
    height: 100px; /* Slightly bigger than before */
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 40px;
}

/* Main Content Styling */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.content-wrapper {
    max-width: 750px;
    text-align: center;
}

.coming-soon {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a4a4a;
    text-align: justify;
}

/* Footer Styling */
.site-footer {
    padding: 30px 20px;
    background-color: #ffffff;
    border-top: 1px solid #eaeaea;
    text-align: center;
    font-size: 0.95rem;
}

.footer-info {
    margin-bottom: 12px;
}

.contact-name {
    font-weight: 600;
    margin-left: 5px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-link {
    color: #555555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #000000;
}