/*
Theme Name: Study Room V4
Description: Interactive 3D Study Room experience built with Three.js. Features an immersive 3D environment with interactive objects, contextual HUD system, and document preview capabilities.
Author: Gerard
Version: 4.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: study-room-v4
Tags: 3d, interactive, threejs, portfolio, modern
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4

Study Room V4 WordPress Theme
============================

This theme provides a complete 3D interactive experience featuring:
- Three.js-powered 3D rendering
- Interactive objects and animations
- Contextual HUD help system
- Document preview system
- Mobile responsive design
- Gaming-style user interface

For installation instructions, see INSTALLATION-GUIDE.txt
*/

/* Basic WordPress theme styles - detailed styles are in assets/Code/css/styles.css */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Ensure full-width layout for 3D experience */
.study-room-container {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

/* WordPress admin bar compatibility */
body.admin-bar .study-room-container {
    height: calc(100vh - 32px);
    margin-top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .study-room-container {
        height: calc(100vh - 46px);
        margin-top: 46px;
    }
}