/*
Theme Name: wireAnts
Theme URI: 
Author: dp
Author URI: 
Description: wireantsChildTheme
Requires at least: 6.9
Tested up to: 6.9
Requires PHP: 5.7
Version: 
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Template: twentytwentytwo
Text Domain: wireants
Tags: 
*/

/* ANts CAlculator  */
.calculator-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        text-align: center;
}

.input-group label {
    display: block;
    margin-bottom: 0.5em;
}

.options-container {
    margin-bottom: 1em;
}

.option-button {
    padding: 10px 15px;
    margin-right: 5px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
}

.option-button.active {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

#result {
    margin-top: 20px;
    padding: 10px;
    background-color: #e9e9e9;
    border-radius: 4px;
    text-align: center;
}
/* ANts CAlculator  */

/* =========================================
   WIREANTS INTRO OVERLAY STYLES
   ========================================= */

/* The full-screen container covering your site */
#wireants-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    z-index: 999999; /* Higher than WP Admin Bar */
    display: block;
    transition: opacity 1.5s ease-out; /* The fade out effect */
}

/* Helper class to stop scrolling while intro is visible */
body.wireants-active {
    overflow: hidden !important;
}

/* Canvas positioning */
#wa-canvas {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* UI Layers */
#wa-ui-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

#wa-btn-container {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    /* Bottom position is handled by JS settings */
    bottom: 20%; 
}

/* The Enter Button */
#wa-enter-btn {
    pointer-events: auto;
    padding: 15px 50px;
    font-size: 20px;
    letter-spacing: 4px;
    color: #111;
    border: 2px solid #111;
    background: rgba(255, 255, 255, 0.90);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 900;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    -webkit-tap-highlight-color: transparent; 
}

#wa-enter-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

/* Info Text (Tap to scatter) */
#wa-info-text {
    position: absolute;
    width: 100%;
    text-align: center;
    font-family: sans-serif;
    font-size: 18px;
    pointer-events: none;
    z-index: 15;
    opacity: 0; /* JS fades this in */
    transition: opacity 2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}


