/* Coming Soon Page Styles */
/* Uses the same brand color scheme as v2 */

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

:root {
    /* ECO Canada Colors */
    --eco-dark-green: #006F44;
    --eco-light-green: #6CC24A;
    --eco-dark-blue: #293549;
    --eco-dark-grey: #2a2a2a;
    --eco-gold: #91694e;

    /* OAC Colors */
    --oac-deep-blue: #1F458C;
    --oac-ocean-blue: #008CDB;
    --oac-sunset-orange: #EAB138;
    --oac-sky-blue: #BAD1FF;
    --oac-seafoam: #FFF5E0;
    --oac-dark-grey: #2A2A2A;

    /* Typography */
    --font-primary: 'Open Sans', Arial, sans-serif;
}

body {
    font-family: var(--font-primary);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: background 0.3s ease;
}

/* ECO Canada Theme (Default) */
body.brand-eco {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: var(--eco-dark-grey);
}

body.brand-eco .container {
    border-top: 5px solid var(--eco-dark-green);
}

body.brand-eco .title {
    color: var(--eco-dark-green);
}

body.brand-eco .subtitle {
    color: var(--eco-light-green);
}

body.brand-eco .link.active {
    background-color: var(--eco-dark-green);
    color: white;
}

body.brand-eco .link:hover {
    background-color: var(--eco-light-green);
    color: white;
}

/* OAC Theme */
body.brand-oac {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: var(--oac-dark-grey);
}

body.brand-oac .container {
    border-top: 5px solid var(--oac-deep-blue);
}

body.brand-oac .title {
    color: var(--oac-deep-blue);
}

body.brand-oac .subtitle {
    color: var(--oac-ocean-blue);
}

body.brand-oac .link.active {
    background-color: var(--oac-deep-blue);
    color: white;
}

body.brand-oac .link:hover {
    background-color: var(--oac-ocean-blue);
    color: white;
}

/* Container */
.container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
    padding: 40px;
    text-align: center;
}

/* Header */
.header {
    margin-bottom: 40px;
}

.logo {
    max-width: 250px;
    height: auto;
    margin: 0 auto;
}

/* Content */
.content {
    margin-bottom: 40px;
}

.title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.message {
    margin: 30px 0;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.message p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.message p:last-child {
    margin-bottom: 0;
}

.domain-info {
    font-size: 1rem;
    color: #666;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.domain-info strong {
    color: #333;
    font-weight: 700;
}

/* Links */
.links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.link {
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
}

.eco-link {
    background-color: #f0f0f0;
    color: var(--eco-dark-green);
    border-color: var(--eco-dark-green);
}

.oac-link {
    background-color: #f0f0f0;
    color: var(--oac-deep-blue);
    border-color: var(--oac-deep-blue);
}

/* Footer */
.footer {
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 30px 20px;
    }

    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .logo {
        max-width: 180px;
    }

    .links {
        flex-direction: column;
        gap: 10px;
    }

    .link {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .message p {
        font-size: 1rem;
    }
}
