/*
Theme Name: Site Moved
Description: A simple theme to notify visitors that the site has moved
Version: 1.0
Author: Bediot Attributes
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, var(--bg-color) 0%, #e3f2fd 100%);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.site-moved-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.site-moved-content {
    background: white;
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.site-moved-logo {
    margin-bottom: 30px;
}

.site-moved-logo img {
    max-width: 200px;
    max-height: 80px;
    width: auto;
    height: auto;
}

.site-moved-icon {
    color: var(--accent-color);
    margin-bottom: 30px;
}

.site-moved-icon svg {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.site-moved-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.2;
}

.site-moved-message {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #666;
}

#countdown {
    font-weight: 700;
    color: var(--accent-color);
    font-size: 1.3em;
}

.site-moved-buttons {
    margin-bottom: 40px;
}

.visit-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 124, 186, 0.3);
}

.visit-now-btn:hover {
    background: #005a87;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 124, 186, 0.4);
    color: white;
    text-decoration: none;
}

.site-moved-progress {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 30px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), #28a745);
    border-radius: 3px;
    transition: width 1s ease;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.site-moved-footer {
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-moved-content {
        padding: 40px 20px;
    }
    
    .site-moved-title {
        font-size: 2rem;
    }
    
    .site-moved-message {
        font-size: 1.1rem;
    }
    
    .visit-now-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .site-moved-title {
        font-size: 1.8rem;
    }
    
    .site-moved-message {
        font-size: 1rem;
    }
}

/* Animation for content entrance */
.site-moved-content {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}