* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-image: url('/assets/img/Belmar_Spa_and_Beach_Resort_Lagos.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.maintenance-container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 90%;
    width: 600px;
}

.maintenance-content {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.logo {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    filter: brightness(0.4);
}

.subtitle {
    color: #666;
    font-size: 1.25rem;
    margin: 1rem 0 0.25rem;
    font-weight: 500;
}

h1 {
    color: #666;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.message {
    color: #555;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.sub-message {
    color: #555;
    font-size: 1rem;
}

@media (max-width: 480px) {
    .maintenance-container {
        padding: 1rem;
    }

    .maintenance-content {
        padding: 2rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    .message {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) {
    .maintenance-content {
        padding: 4rem 3rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .message {
        font-size: 1.5rem;
    }

    .sub-message {
        font-size: 1.125rem;
    }
}