/* Development Notice Modal - DELETE THIS FILE WHEN SITE IS LIVE */
.dev-notice-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease-out;
}

.dev-notice-modal {
    background: #fff;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    z-index: 9999;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.4s ease-out;
}

.dev-notice-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.dev-notice-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #1a1a1a;
}

.dev-notice-message {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0 0 28px 0;
}

.dev-notice-button {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dev-notice-button:hover {
    background: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.dev-notice-overlay.dismissed {
    animation: fadeOut 0.3s ease-out forwards;
}

.dev-notice-modal.dismissed {
    animation: slideDown 0.3s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(30px);
    }
}

@media (max-width: 640px) {
    .dev-notice-modal {
        padding: 32px 24px;
    }

    .dev-notice-icon {
        font-size: 40px;
    }

    .dev-notice-title {
        font-size: 20px;
    }

    .dev-notice-message {
        font-size: 14px;
    }
}