/*
Theme Name: VM Consulting Theme
Theme URI: https://consultoriasvm.com
Description: An interactive professional consulting experience for VM Consultoría.
Author: Antigravity AI
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: recollection
*/

/* --- Global Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #051041; /* Brand Deep Navy */
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Grain Overlay --- */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.05;
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
    background-repeat: repeat;
}

/* --- Accessibility --- */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* --- Layout Containers --- */
#app-shell {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ui-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.ui-layer > * {
    pointer-events: auto;
}

/* --- Utility Classes --- */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

button {
    background: none;
    border: 1px solid rgba(0, 212, 248, 0.3); /* Brand Cyan */
    color: white;
    padding: 12px 24px;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

button:hover {
    background: #0078D6; /* Brand Vibrant Blue */
    color: white;
    border-color: #0078D6;
}

/* More styles will be added as we build components */

/* --- Cursor Follower --- */
#cursor-follower {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 1px solid #00D4F8; /* Brand Cyan */
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s, border-color 0.3s;
    display: none;
    mix-blend-mode: difference;
}

/* --- Mobile Specifics --- */
@media (max-width: 768px) {
    #cursor-follower {
        display: none !important;
    }
    #scene-content {
        left: 20px !important;
        bottom: 120px !important;
    }
    .nav-arrow {
        display: none !important;
    }
    #menu-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}
