/*
Theme Name: Under Construction
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: A simple black and white under construction theme
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: under-construction
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color:#fff ;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 20px;
    max-width: 800px;
}

.construction-icon {
    font-size: 60px;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

h1 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    color: #77b255;
    font-weight: 300;
}

.divider {
    width: 100px;
    height: 2px;
    background-color: #fff;
    margin: 30px auto;
}

.message {
    font-size: 16px;
    line-height: 1.6;
    color: #aaa;
    margin-bottom: 40px;
}

.contact-info {
    margin-top: 50px;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #fff;
    transition: opacity 0.3s ease;
}

.contact-info a:hover {
    opacity: 0.7;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .construction-icon {
        font-size: 60px;
    }
}
