body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    min-width: 100vw;
    box-sizing: border-box;
    background: url('img/landing page.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255,255,255,0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.logo {
    max-width: 300px;
    width: 60vw;
    height: auto;
    margin-bottom: 32px;
    filter: drop-shadow(0 2px 12px rgba(0,0,0,0.08));
}

.coming-soon {
    color: #ba0000;
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
    text-align: center;
    text-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
