/*
Theme Name: Geneau Signs Temporary
Theme URI: https://geneausigns.com
Author: digiBandit
Author URI: https://geneausigns.com
Description: Temporary landing page for Geneau Signs while the full site is under construction.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: geneau-signs
*/

/* =============================================
   DESIGN: Industrial Dark — Brutalist Utility
   - Background: #1a1a1a
   - Accent: #8dc63f (chartreuse) — logo & location only
   - Buttons: flat outlined rectangles, dark fill
   - Phone: large bold white, primary CTA
   - Single-column centred, mobile-first
   ============================================= */

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

html, body {
    background: #1a1a1a;
    color: #ffffff;
    font-family: 'Roboto', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
}

/* Hide default WordPress elements */
#wpadminbar { display: none !important; }
html { margin-top: 0 !important; }

.gs-page {
    min-height: 100vh;
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 52px 24px 44px;
    animation: gsFadeIn 0.3s ease-out;
}

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

/* Logo */
.gs-logo {
    width: 100%;
    max-width: 280px;
    margin-bottom: 28px;
}
.gs-logo img {
    width: 100%;
    height: auto;
    display: block;
}

/* Tagline */
.gs-tagline-block {
    text-align: center;
    margin-bottom: 32px;
}
.gs-tagline {
    color: #aaaaaa;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    font-weight: 400;
    margin: 0 0 6px;
    text-transform: uppercase;
}
.gs-location {
    color: #8dc63f;
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    font-style: italic;
}

/* Service Buttons */
.gs-services {
    width: 100%;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
    list-style: none;
}
.gs-service-btn {
    width: 100%;
    padding: 18px 16px;
    background: #242424;
    border: 1px solid #3a3a3a;
    border-radius: 6px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 400;
    font-family: inherit;
    text-align: center;
    cursor: default;
    transition: border-color 0.15s ease;
    display: block;
}
.gs-service-btn:hover {
    border-color: #555555;
}

/* Contact */
.gs-contact {
    width: 100%;
    max-width: 440px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.gs-phone {
    color: #ffffff;
    font-size: 1.9rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.01em;
    margin-bottom: 4px;
    display: block;
}
.gs-phone:hover { color: #e0e0e0; }
.gs-email {
    color: #cccccc;
    font-size: 0.95rem;
    text-decoration: none;
    display: block;
}
.gs-email:hover { color: #ffffff; }
.gs-address {
    color: #888888;
    font-size: 0.88rem;
    margin: 4px 0 0;
    text-decoration: none;
    display: block;
}
.gs-address:hover {
    color: #aaaaaa;
    text-decoration: underline;
}
.gs-copyright {
    color: #666666;
    font-size: 0.78rem;
    margin: 10px 0 0;
    line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
    .gs-page { animation: none; }
    .gs-service-btn { transition: none; }
}
