/*
Theme Name: REPAGEY Canvas
Description: Blank canvas theme for REPAGEY.AI Page Builder integration. Provides minimal WordPress structure with "Edit with REPAGEY.AI" functionality.
Author: REPAGEY.AI
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
License: GPL v2 or later
*/

/* Blank Canvas Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* REPAGEY Content Container */
#repagey-content {
    width: 100%;
    min-height: 100vh;
}

/* REPAGEY Edit Button Styles */
.repagey-edit-button {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999999;
    background: #3B82F6;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: all 0.2s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.repagey-edit-button:hover {
    background: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.repagey-edit-button:active {
    transform: translateY(0);
}

/* Hide edit button in REPAGEY editor preview */
.repagey-editor-preview .repagey-edit-button {
    display: none;
}

/* Placeholder content for empty pages */
.repagey-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.repagey-placeholder h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.repagey-placeholder p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}
