/*
Theme Name: GARR Coming Soon
Theme URI: 
Author: GARR Theme Creator
Author URI: 
Description: Coming Soon theme for Groupe d'Appui aux Rapatriés et Réfugiés (GARR), a Haitian organization supporting repatriates and refugees
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: garr-comingsoon
Tags: nonprofit, humanitarian, organization, haiti, coming-soon
*/

@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css');
@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@200..900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

:root {
    --primary-color: #CE1126; /* Haitian flag red */
    --secondary-color: #003893; /* Haitian flag blue */
    --text-color: #333;
    --light-color: #fff;
    --dark-color: #000;
    --accent-color: #ffcc00;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Titillium Web', sans-serif;
    background-color: #f8f9fa;
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.coming-soon-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(240,240,240,0.9) 100%);
}

.coming-soon-container {
    max-width: 800px;
    text-align: center;
    padding: 3rem;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.logo {
    max-width: 200px;
    margin-bottom: 2rem;
}

h1 {
    font-family: 'Antonio', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
}

h2 {
    font-family: 'Antonio', sans-serif;
    font-weight: 500;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.countdown {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.countdown-item {
    margin: 0 1rem;
    text-align: center;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: block;
    min-width: 80px;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-top: 0.5rem;
    color: var(--text-color);
}

.social-icons {
    margin-top: 2rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--light-color);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    color: var(--light-color);
}

.contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-item i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.footer {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--dark-color);
    color: var(--light-color);
    margin-top: auto;
}

.footer p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .coming-soon-container {
        padding: 2rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .countdown {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        margin: 0.5rem;
    }
    
    .countdown-number {
        font-size: 2rem;
        min-width: 60px;
    }
}
