/*
Theme Name: Privyer Luxury Transportation
Theme URI: https://privyer.com
Author: Rank One Media
Author URI: https://rank1media.com
Description: A premium WordPress theme for Privyer luxury transportation and concierge services. Features custom post types for fleet vehicles and services, Elementor compatibility, and a sophisticated dark design.
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: privyer
Tags: luxury, transportation, concierge, dark, business, custom-post-types, elementor

Privyer Luxury Transportation Theme, Copyright 2025 Rank One Media
Privyer is distributed under the terms of the GNU GPL v2 or later.
*/

:root {
  --color-bg-primary: #0d0d0d;
  --color-bg-secondary: #1a1a1a;
  --color-bg-tertiary: #141414;
  --color-accent: #ff9533;
  --color-accent-hover: #ff8520;
  --color-text-primary: #ffffff;
  --color-text-secondary: #d1d5db;
  --color-text-muted: #9ca3af;
  --color-border: rgba(255, 255, 255, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-accent-hover);
}

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

.btn-primary {
  display: inline-block;
  background-color: var(--color-accent);
  color: var(--color-text-primary);
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: scale(1.05);
  box-shadow: 0 10px 15px -3px rgba(255, 149, 51, 0.3);
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--color-text-primary);
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  border: 2px solid var(--color-text-primary);
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.btn-secondary:hover {
  background-color: var(--color-text-primary);
  color: var(--color-bg-primary);
}

.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  background: linear-gradient(135deg, var(--color-bg-secondary), var(--color-bg-primary));
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: rgba(255, 149, 51, 0.5);
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .section {
    padding: 3rem 0;
  }
}

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

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

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

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