/*
Theme Name: Fandu Resources Theme
Theme URI: https://fandu.co.zm
Author: Fandu Resources
Author URI: https://fandu.co.zm
Description: Custom theme for Fandu Resources Investments
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fandu
*/

/* Original styles from index.html */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    color: #ffffff;
    min-height: 100vh;
}

.site-container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.logo {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffd700;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.tagline {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #cccccc;
}

.countdown {
    font-size: 2em;
    margin-bottom: 40px;
    color: #ffd700;
    font-family: 'Courier New', monospace;
}

.date {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #ffd700;
    font-family: 'Courier New', monospace;
}

.contact {
    margin-top: 40px;
}

.contact a {
    color: #ffd700;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.contact a:hover {
    color: #ffffff;
}

.equipment-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.equipment-image:hover {
    transform: scale(1.02);
}

.footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    font-size: 0.9em;
    color: #cccccc;
}

.footer i {
    color: #ffd700;
    margin-right: 5px;
}

.copyright {
    margin-top: 15px;
    font-size: 0.85em;
    color: #888888;
}

@media (max-width: 600px) {
    .logo {
        font-size: 2em;
    }

    h1 {
        font-size: 1.8em;
    }

    .tagline {
        font-size: 1em;
    }

    .countdown {
        font-size: 1.5em;
    }
}
