/*
Theme Name: دليل السينما القبطية
Theme URI: https://copticcinema.com
Author: menabag digital solutions
Author URI: https://wa.me/201014178658
Description: قالب ووردبريس مخصص ومتكامل لموقع دليل السينما القبطية (هيدر ديناميكي، القائمة الجانبية، محرك البحث، ونظام المفضلة). مصمم بأعلى معايير السرعة والتوافق مع إضافة Coptic Cinema - Content Type.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: coptic-cinema
Domain Path: /languages/
Tags: rtl-language-support, custom-header, custom-menu, sidebar, grid-layout, accessibility-ready

License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* ==========================================================================
   1. Root Variables & Theme Setup (المتغيرات الأساسية للمظهر)
   ========================================================================== */
:root {
  --primary-color: #00a8ff;
  --primary-hover: #0086cc;
  --accent-color: #25d366;
  --bg-dark: #121212;
  --bg-card: #1a1a1a;
  --bg-elevated: #242424;
  --text-main: #ffffff;
  --text-muted: #bbbbbb;
  --border-color: #333333;
  --font-arabic: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --transition-fast: 0.2s ease-in-out;
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 8px;
}

/* ==========================================================================
   2. Core Reset & Global Styles (التنسيقات العامة للنمط RTL)
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  direction: rtl;
  font-family: var(--font-arabic);
  background-color: var(--bg-dark);
  color: var(--text-main);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--bg-dark);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover, a:focus {
  color: var(--primary-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   3. Floating WhatsApp Utility (زر الواتساب العائم)
   ========================================================================== */
.whatsapp-fab {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: transform var(--transition-smooth), box-shadow var(--transition-fast);
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}