/*
Theme Name: Meeting Portal Clean
Theme URI: https://localhost/
Author: Meeting Portal Team
Author URI: https://localhost/
Description: A clean, minimal theme for Meeting Portal with only shortcode content and meeting background.
Requires at least: 6.7
Tested up to: 6.8
Requires PHP: 7.2
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: meeting-portal-clean
Tags: meeting, portal, minimal, clean, business, professional
*/

/* ===== MEETING PORTAL CLEAN THEME ===== */

/* Global Background - Clean Meeting Image */
html,
body {
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), 
                url('https://images.unsplash.com/photo-1560439514-4e9645039924?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center center !important;
    background-size: cover !important;
    background-attachment: fixed !important;
    min-height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Reset all other backgrounds to transparent */
* {
    box-sizing: border-box;
}

*:not(html):not(body) {
    background: transparent !important;
}

/* Container for content - centered and clean */
.site-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

/* Meeting Portal Container - Clean styling */
.meeting-portal-container {
    background: rgba(0, 0, 0, 0.9) !important;
    color: white !important;
    border-radius: 20px !important;
    padding: 40px !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(10px);
    max-width: 500px;
    width: 100%;
}

/* Hide all WordPress chrome */
.wp-site-blocks > * {
    background: transparent !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    body, html {
        background-attachment: scroll !important;
    }
    
    .site-container {
        padding: 10px;
    }
    
    .meeting-portal-container {
        padding: 30px 20px !important;
    }
}

/* Clean form styling */
.meeting-portal-form input {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid #666666 !important;
    color: white !important;
    padding: 12px !important;
    border-radius: 8px !important;
    width: 100%;
    margin-bottom: 15px;
}

.meeting-portal-form input::placeholder {
    color: #cccccc !important;
}

.meeting-portal-form button {
    background-color: #666666 !important;
    color: white !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    cursor: pointer;
    width: 100%;
}

.meeting-portal-form button:hover {
    background-color: #888888 !important;
}