/*!
Theme Name: Xtreme Nano - Premium Coming Soon
Theme URI: https://xtreme-nano.com
Description: Premium Coming Soon landing page theme for Xtreme Nano luxury car detailing brand. Features cinematic automotive imagery, bilingual Arabic/English content, and luxury minimalist design.
Version: 1.0.0
Author: Xtreme Nano
Author URI: https://xtreme-nano.com
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: xtreme-nano
Domain Path: /languages
Requires at least: 5.0
Requires PHP: 7.4
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Outfit:wght@300;400;500;600;700&family=Cairo:wght@300;400;500;600;700;800&display=swap');

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

html, body {
  width: 100%;
  height: 100%;
}

body {
  background-color: #0D0D0D;
  color: #F2F2F2;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography System */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

p {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
}

/* Arabic Typography */
.arabic-text {
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  direction: rtl;
  text-align: right;
}

.arabic-text.bold {
  font-weight: 700;
}

.arabic-text.light {
  font-weight: 400;
}

/* Colors */
:root {
  --primary-black: #0D0D0D;
  --primary-purple: #6A0DAD;
  --accent-gold: #FFD700;
  --text-light: #F2F2F2;
  --text-gray: #B0B0B0;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 1.5rem;
}

/* Top Section */
.hero-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  animation: fadeInDown 1s ease-out;
}

.hero-top h1 {
  color: #FFFFFF;
  text-align: center;
  margin: 0;
}

.hero-top p {
  color: #D3D3D3;
  text-align: center;
  max-width: 600px;
  font-size: 1.25rem;
  margin: 0;
}

/* Decorative Line */
.decorative-line {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.line-segment {
  height: 2px;
  width: 3rem;
  background: linear-gradient(to right, transparent, var(--accent-gold));
}

.line-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--accent-gold);
}

/* Bottom Section */
.hero-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-bottom h2 {
  color: var(--accent-gold);
  font-size: 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}

.hero-bottom .tagline {
  color: #FFFFFF;
  font-size: 2rem;
  text-align: center;
  max-width: 900px;
  margin: 0;
}

.hero-bottom .location {
  color: #A0A0A0;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-top: 1rem;
}

/* Floating Accent Elements */
.floating-accent {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(106, 13, 173, 0.05);
  filter: blur(60px);
  animation: float 6s ease-in-out infinite;
}

.floating-accent.top-right {
  top: 80px;
  right: 40px;
  width: 128px;
  height: 128px;
}

.floating-accent.bottom-left {
  bottom: 128px;
  left: 40px;
  width: 160px;
  height: 160px;
  animation-delay: 1s;
}

/* Footer */
.site-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-text {
  color: #808080;
  font-size: 0.875rem;
  margin: 0;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-top h1 {
    font-size: 2.5rem;
  }

  .hero-top p {
    font-size: 1rem;
  }

  .hero-bottom .tagline {
    font-size: 1.5rem;
  }

  .hero-bottom h2 {
    font-size: 1.25rem;
  }

  .hero-content {
    padding: 2rem 1rem;
  }
}

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

  .hero-top h1 {
    font-size: 2rem;
  }

  .hero-top p {
    font-size: 0.95rem;
  }

  .hero-bottom .tagline {
    font-size: 1.25rem;
  }

  .decorative-line {
    margin-top: 1rem;
  }

  .line-segment {
    width: 2rem;
  }
}

/* WordPress Specific */
.wp-block-image {
  max-width: 100%;
}

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

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

a:hover {
  opacity: 0.8;
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent-gold);
  color: var(--primary-black);
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* Print Styles */
@media print {
  body {
    background-color: white;
    color: black;
  }

  .hero-section {
    display: none;
  }
}
