/*
Theme Name: Pure Decor Pro
Theme URI: http://pure-decor.com
Author: Pure Decor
Description: قالب ووردبريس احترافي مخصص لشركة بيور للديكورات الحديثة (Industrial Luxury).
Version: 1.0
Text Domain: pure-decor
*/

/* ==========================================================================
   Base Styles
   ========================================================================== */
body {
    font-family: 'Cairo', sans-serif;
    background-color: #0a1929; /* Deep dark industrial background */
    color: #ffffff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* ==========================================================================
   Glassmorphism Utilities
   ========================================================================== */
.glass-panel {
    background: rgba(15, 47, 79, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.glass-card {
    background: linear-gradient(135deg, rgba(30, 79, 122, 0.4) 0%, rgba(15, 47, 79, 0.8) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.glass-card:hover {
    border-color: rgba(212, 175, 55, 0.4); /* Premium Gold border on hover */
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   Typography & Gradients
   ========================================================================== */
.text-gradient {
    background: linear-gradient(to left, #ffffff, #8ba8c4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   Custom Scrollbar
   ========================================================================== */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0a1929;
}
::-webkit-scrollbar-thumb {
    background: #1e4f7a;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #2c6ca3;
}

/* ==========================================================================
   Hero & Overlays
   ========================================================================== */
.hero-overlay {
    background: linear-gradient(to right, rgba(10, 25, 41, 0.95) 0%, rgba(15, 47, 79, 0.7) 100%);
}

/* ==========================================================================
   Masonry Grid (For Gallery)
   ========================================================================== */
.masonry-grid {
    column-count: 1;
    column-gap: 1.5rem;
}
@media (min-width: 768px) { 
    .masonry-grid { column-count: 2; } 
}
@media (min-width: 1024px) { 
    .masonry-grid { column-count: 3; } 
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   Lightbox
   ========================================================================== */
#lightbox {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* ==========================================================================
   WordPress Default Content Styling (For page.php and single.php)
   ========================================================================== */
.wp-content-area {
    color: #cbd5e1;
    font-size: 1.125rem;
    line-height: 1.8;
}

.wp-content-area h1, 
.wp-content-area h2, 
.wp-content-area h3, 
.wp-content-area h4, 
.wp-content-area h5, 
.wp-content-area h6 { 
    color: #ffffff; 
    font-weight: 800; 
    margin-bottom: 1.25rem; 
    margin-top: 2.5rem; 
}

.wp-content-area h1 { font-size: 2.5rem; }
.wp-content-area h2 { font-size: 2rem; }
.wp-content-area h3 { font-size: 1.75rem; }

.wp-content-area p { 
    margin-bottom: 1.5rem; 
}

.wp-content-area ul { 
    list-style-type: disc; 
    margin-right: 2rem; 
    margin-bottom: 1.5rem; 
}

.wp-content-area ol { 
    list-style-type: decimal; 
    margin-right: 2rem; 
    margin-bottom: 1.5rem; 
}

.wp-content-area li {
    margin-bottom: 0.5rem;
}

.wp-content-area a { 
    color: #5a9bd5; 
    text-decoration: none; 
    transition: color 0.3s ease;
}

.wp-content-area a:hover {
    color: #d4af37; /* Premium Gold */
    text-decoration: underline;
}

.wp-content-area blockquote {
    border-right: 4px solid #5a9bd5;
    padding-right: 1.5rem;
    margin-right: 0;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #94a3b8;
    background: rgba(255,255,255,0.02);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.wp-content-area img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

/* WordPress Core Alignments */
.aligncenter {
    display: block;
    margin: 0 auto 1.5rem;
}
.alignleft {
    float: left;
    margin: 0 1.5rem 1.5rem 0;
}
.alignright {
    float: right;
    margin: 0 0 1.5rem 1.5rem;
}




