/*
Theme Name: Fire Content
Theme URI: https://firecontent.io
Author: Fire Content Team
Author URI: https://firecontent.io
Description: A modern, glassmorphic landing page theme for Fire Content - AI-powered content creation platform. Features warm amber/coral color scheme with dark navy backgrounds, custom typography, and smooth animations.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: firecontent
Tags: one-column, custom-colors, custom-menu, featured-images, theme-options, translation-ready

Fire Content WordPress Theme, Copyright 2024
Fire Content is distributed under the terms of the GNU GPL
*/

/* Ember Glow Design - Luminous Minimalism */

:root {
  --primary: oklch(0.72 0.15 45);
  --primary-foreground: oklch(0.15 0.02 250);
  --background: oklch(0.15 0.02 250);
  --foreground: oklch(0.95 0.01 45);
  --card: oklch(0.20 0.03 250 / 0.6);
  --card-foreground: oklch(0.95 0.01 45);
  --border: oklch(0.35 0.08 35 / 0.3);
  --radius: 1rem;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
}

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

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Glass Card Effect */
.glass-card {
  background: var(--card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px 0 rgba(10, 25, 41, 0.37);
}

/* Glow Hover Effect */
.glow-hover {
  transition: box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glow-hover:hover {
  box-shadow: 0 0 20px rgba(255, 167, 38, 0.4),
              0 0 40px rgba(255, 167, 38, 0.2);
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(to right, oklch(0.72 0.15 45), oklch(0.68 0.16 35));
  color: var(--primary-foreground);
}

.btn-primary:hover {
  box-shadow: 0 0 20px rgba(255, 167, 38, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  background: var(--card);
  box-shadow: 0 0 20px rgba(255, 167, 38, 0.2);
}

/* Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.site-logo img {
  height: 2.5rem;
  width: auto;
}

.main-navigation {
  display: none;
}

@media (min-width: 768px) {
  .main-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.main-navigation a {
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.main-navigation a:hover {
  opacity: 1;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

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

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.gradient-text {
  background: linear-gradient(to right, oklch(0.75 0.14 45), oklch(0.68 0.16 35));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.8;
  margin-bottom: 3rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

/* CTA Form */
.cta-form {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-align: left;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(10, 25, 41, 0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 167, 38, 0.3);
  border-radius: calc(var(--radius) - 0.25rem);
  color: var(--foreground);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-textarea {
  min-height: 6rem;
  resize: vertical;
}

.form-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  opacity: 0.7;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Feature Grid */
.features-section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  font-size: 1.25rem;
  opacity: 0.7;
  max-width: 42rem;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 2rem;
  transition: all 0.5s ease;
}

.feature-card:hover {
  transform: scale(1.05);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: linear-gradient(to bottom right, 
    rgba(255, 167, 38, 0.2), 
    rgba(255, 121, 97, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: oklch(0.75 0.14 45);
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-description {
  opacity: 0.7;
  line-height: 1.7;
}

/* Steps Section */
.steps-section {
  padding: 5rem 0;
  position: relative;
}

.steps-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    transparent,
    rgba(32, 48, 64, 0.3),
    transparent);
}

.steps-grid {
  display: grid;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  padding: 1.5rem;
  height: 100%;
}

.step-number {
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255, 167, 38, 0.2);
  margin-bottom: 1rem;
}

.step-image {
  aspect-ratio: 16/9;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.step-description {
  opacity: 0.7;
  line-height: 1.7;
}

/* Stats Section */
.stats-section {
  padding: 5rem 0;
}

.stats-grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto 4rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-card {
  padding: 2rem;
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(to right, oklch(0.75 0.14 45), oklch(0.68 0.16 35));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 3.5rem;
  }
}

.stat-label {
  opacity: 0.7;
}

/* Testimonials */
.testimonials-section {
  position: relative;
  border-radius: 1.5rem;
  padding: 3rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.testimonials-overlay {
  position: absolute;
  inset: 0;
  background: var(--card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.testimonials-grid {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial {
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 1.125rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
}

.testimonial-role {
  font-size: 0.875rem;
  opacity: 0.7;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 167, 38, 0.3);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-column h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: 0.5rem;
}

.footer-menu a {
  font-size: 0.875rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-menu a:hover {
  opacity: 1;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 167, 38, 0.3);
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.6;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
