/*
Theme Name: Lehoia
Description: Professional lawyer WordPress theme with dark navy design and gold accents
Version: 1.0
Author: Lehoia Team
Text Domain: lehoia
Domain Path: /languages
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: lawyer, legal, business, one-column, custom-menu, custom-logo, featured-images, threaded-comments, translation-ready
*/

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --background: 220 23% 11%;
  --foreground: 210 40% 98%;
  --card: 220 23% 11%;
  --card-foreground: 210 40% 98%;
  --popover: 220 23% 11%;
  --popover-foreground: 210 40% 98%;
  --primary: 43 74% 66%;
  --primary-foreground: 220 23% 11%;
  --secondary: 215 25% 17%;
  --secondary-foreground: 210 40% 98%;
  --muted: 215 25% 17%;
  --muted-foreground: 217 10% 64%;
  --accent: 215 25% 17%;
  --accent-foreground: 210 40% 98%;
  --destructive: 0 62% 30%;
  --destructive-foreground: 210 40% 98%;
  --border: 215 25% 17%;
  --input: 215 25% 17%;
  --ring: 43 74% 66%;
  --radius: 0.5rem;
  
  /* Shadows */
  --shadow-elegant: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 40px rgba(218, 165, 32, 0.3);
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
}

.font-serif {
  font-family: 'Playfair Display', Georgia, serif;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: hsla(var(--background), 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid hsl(var(--border));
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: hsl(var(--primary));
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: hsl(var(--foreground));
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.nav-menu a:hover {
  color: hsl(var(--primary));
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-gold {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(43 74% 56%));
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-glow);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(218, 165, 32, 0.4);
}

.btn-gold-outline {
  background: transparent;
  color: hsl(var(--primary));
  border: 2px solid hsl(var(--primary));
}

.btn-gold-outline:hover {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn-lg {
  padding: 1rem 2rem;
}

.btn-xl {
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background-color: hsl(var(--background));
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsl(var(--background)), hsla(var(--background), 0.95), hsla(var(--background), 0.9));
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0;
  position: relative;
}

.split-content {
  display: flex;
  flex-direction: column;
}

.home-hero-left {
  justify-content: center;
}

.home-hero-right {
  align-items: center;
}

.subtitle-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.accent {
  width: 5rem;
  height: 2px;
  background-color: hsl(var(--primary));
}

.subtitle {
  color: hsl(var(--primary));
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

.title {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.1;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
}

.paragraph-large {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  max-width: 28rem;
  margin-bottom: 2rem;
}

._2-buttons {
  display: flex;
  gap: 1rem;
}

.button-primary {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(43 74% 56%));
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-glow);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(218, 165, 32, 0.4);
}

.button-secondary {
  background: transparent;
  color: hsl(var(--primary));
  border: 2px solid hsl(var(--primary));
}

.button-secondary:hover {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.contact-section {
  padding: 4rem 0;
}

.contact-wrapper {
  display: grid;
  gap: 3rem;
}

.contact-left,
.contact-right {
  background: hsl(var(--secondary));
  padding: 2.5rem;
  border-radius: var(--radius);
}

.contact-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.contact-left .title {
  margin-bottom: 1rem;
}

.contact-left .paragraph-large {
  max-width: 36rem;
}

.contact-directly-title {
  font-weight: 600;
  color: hsl(var(--foreground));
}

.contact-directly-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: hsl(var(--foreground));
  text-decoration: none;
  padding: 1rem 0;
}

.contact-directly-link:hover {
  color: hsl(var(--primary));
}

.contact-directly-icon {
  font-size: 1.25rem;
}

.contact-form-card {
  background: hsl(var(--background));
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-elegant);
}

.input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.input,
.text-area {
  width: 100%;
  padding: 1rem;
  border: 1px solid hsl(var(--muted));
  border-radius: 0.75rem;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
}

.input:focus,
.text-area:focus {
  outline: 2px solid hsl(var(--primary));
  border-color: transparent;
}

@media (min-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr 1.25fr;
    align-items: stretch;
  }
}

@media (max-width: 900px) {
  .contact-left,
  .contact-right {
    padding: 2rem;
  }
}

.image-wrapper {
  position: relative;
}

.image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-elegant);
}

.image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsla(var(--primary), 0.2), transparent);
  border-radius: var(--radius);
  transform: rotate(6deg);
  z-index: -1;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-badge {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-badge::before {
  content: '';
  width: 5rem;
  height: 2px;
  background-color: hsl(var(--primary));
}

.hero-badge p {
  color: hsl(var(--primary));
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.1;
  color: hsl(var(--foreground));
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-title .accent {
  color: hsl(var(--primary));
}

.hero-description {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  max-width: 28rem;
  text-align: center;
}


.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1rem;
}

@media (min-width: 1024px) {
  .hero-buttons {
    flex-direction: row;
    align-items: flex-start;
  }
}

.hero-buttons-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons-group {
    flex-direction: row;
  }
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 12rem;
  height: 16rem;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-elegant);
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsla(var(--primary), 0.2), transparent);
  border-radius: var(--radius);
  transform: rotate(6deg);
  z-index: -1;
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  color: hsl(var(--primary));
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

/* Cards */
.card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.card-content {
  padding: 1.5rem;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Footer */
.site-footer {
  background-color: hsl(var(--secondary));
  border-top: 1px solid hsl(var(--border));
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-bottom {
  border-top: 1px solid hsl(var(--border));
  padding-top: 2rem;
  text-align: center;
  color: hsl(var(--muted-foreground));
}

/* Utilities */
.text-center { text-align: center; }
.text-primary { color: hsl(var(--primary)); }
.text-muted { color: hsl(var(--muted-foreground)); }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: bold; }
.uppercase { text-transform: uppercase; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.pt-4 { padding-top: 1rem; }
.py-20 { padding: 5rem 0; }

/* Responsive utilities */
@media (max-width: 768px) {
  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .nav-menu {
    display: none;
  }

  ._2-buttons {
    flex-direction: column;
  }
}

/* Widget and small component styles */
.sidebar {
  background-color: hsl(var(--secondary));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 2rem;
}

.widget {
  margin-bottom: 1.5rem;
}

.widget-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.footer-widgets {
  margin-bottom: 2rem;
}

.search-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.search-field {
  flex: 1 1 250px;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  color: hsl(var(--foreground));
}

.search-submit {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.75rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  cursor: pointer;
}

.search-submit:hover {
  opacity: 0.95;
}
