/*
Theme Name: Shadifi Elementor
Theme URI: https://shadifi.com
Author: Your Name
Author URI: https://yourwebsite.com
Description: A luxury wedding cinematography theme converted from React, built for Elementor
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shadifi-elementor
Tags: wedding, photography, cinematography, elementor, custom-menu, featured-images, post-formats

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.
*/

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #C4A962;
  --primary-foreground: #000000;
  --background: #000000;
  --foreground: #FFFFFF;
  --muted: #1a1a1a;
  --muted-foreground: #999999;
  --border: #333333;
  --sidebar-bg: #0a0a0a;
  --sidebar-border: #1a1a1a;
  --sidebar-foreground: #cccccc;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

.font-serif {
  font-family: 'Playfair Display', Georgia, serif;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Main Layout with Sidebar */
.main-layout {
  min-height: 100vh;
  background-color: var(--background);
}

.main-content {
  margin-left: 0;
}

@media (min-width: 1024px) {
  .main-content {
    margin-left: 11rem; /* 176px / 16 = 11rem */
  }
}

/* Buttons */
.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: #b39952;
  transform: translateY(-2px);
}

/* Hero Overlay */
.hero-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

/* Utility Classes */
.text-primary {
  color: var(--primary);
}

.bg-primary {
  background-color: var(--primary);
}

.uppercase {
  text-transform: uppercase;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

/* Page Content Styling */
.entry-content {
  color: var(--foreground);
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 300;
  color: var(--foreground);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.entry-content h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.entry-content h2 {
  font-size: 2rem;
  margin-top: 3rem;
}

.entry-content h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
}

.entry-content p {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.entry-content p.subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: var(--primary);
  margin-bottom: 3rem;
}

.entry-content a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s;
}

.entry-content a:hover {
  color: #b39952;
}

.entry-content ul,
.entry-content ol {
  color: var(--muted-foreground);
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.entry-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.entry-content strong {
  color: var(--foreground);
  font-weight: 600;
}

.entry-content .btn-primary,
.entry-content a.btn-primary {
  display: inline-block;
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.75rem 2rem;
  border-radius: 0.25rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-top: 1rem;
  transition: all 0.3s;
}

.entry-content .btn-primary:hover,
.entry-content a.btn-primary:hover {
  background-color: #b39952;
  transform: translateY(-2px);
  color: var(--primary-foreground);
}

/* Page Header */
.entry-header {
  text-align: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.entry-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--foreground);
  margin: 0;
}

/* Container Padding */
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 1024px) {
  .py-12 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  
  .entry-content h1 {
    font-size: 3rem;
  }
  
  .entry-content h2 {
    font-size: 2.25rem;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

/* Elementor Compatibility */
.elementor-section {
  position: relative;
}

.elementor-widget-wrap {
  position: relative;
}

/* WordPress Core */
.alignleft {
  float: left;
  margin-right: 1.5rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
