/*
Theme Name: AutomatizerHUB
Theme URI: https://automatizerhub.com
Author: AutomatizerHUB Team
Description: A modern, high-performance theme for automation services.
Version: 1.0.0
*/

:root {
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --accent-primary: #06b6d4;
  --accent-secondary: #8b5cf6;
  --font-main: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.site-title a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.main-navigation a {
  font-weight: 500;
  color: var(--text-secondary);
}

.main-navigation a:hover {
  color: var(--accent-primary);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  background: radial-gradient(circle at top right, #1e293b 0%, transparent 40%),
    radial-gradient(circle at bottom left, #1e293b 0%, transparent 40%);
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(
    to right,
    var(--text-primary),
    var(--accent-primary)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--accent-primary);
  color: var(--bg-primary);
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.5);
  color: var(--bg-primary);
}

/* Footer */
.site-footer {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  background-color: var(--bg-primary);
}

/* Sections */
.section-padding {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: var(--text-primary);
}

/* Buttons */
.btn-group {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--text-secondary);
  color: var(--text-primary);
  box-shadow: none;
}

.btn-secondary:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
  transform: translateY(-2px);
}

.btn-large {
  padding: 15px 40px;
  font-size: 1.1rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-secondary);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center; /* Centered content cards */
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--accent-secondary);
}

.service-card .icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
}

.service-card h3 {
  color: var(--text-primary);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* CTA */
.cta {
  text-align: center;
  background: linear-gradient(45deg, var(--bg-secondary), var(--bg-primary));
}

.cta h2 {
  margin-bottom: 30px;
  font-size: 2.5rem;
}
