/*
Theme Name: ELITE ADSARTISTS
Theme URI: https://eliteadsartists.ro
Author: ELITE ADSARTISTS
Description: Tema custom pentru agenția ELITE ADSARTISTS — design Qubed+Quart hybrid cu accent verde Higgsfield. Compatibilă cu Elementor.
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: elite-adsartists
Tags: agency, creative, minimal, dark, elementor
*/

/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --color-bg: #0a0a0a;
  --color-bg-light: #ffffff;
  --color-accent: #DCFF48;
  --color-text: #ffffff;
  --color-text-dark: #0a0a0a;
  --color-text-muted: rgba(255, 255, 255, 0.6);
  --color-text-muted-dark: rgba(10, 10, 10, 0.6);
  --color-border: rgba(255, 255, 255, 0.1);
  --color-border-dark: rgba(10, 10, 10, 0.1);
  --max-w: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a { text-decoration: none; }

.h-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 40px;
  background: transparent;
  transition: background 0.3s, padding 0.3s;
}

.site-header.header-scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  padding: 14px 40px;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}

.site-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--color-accent);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  border-radius: 4px;
}

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

.main-navigation a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.main-navigation a:hover { opacity: 1; }
.main-navigation .current-menu-item a {
  opacity: 1;
  font-weight: 700;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--color-accent);
  color: #0a0a0a;
}

.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(220, 255, 72, 0.3);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-sm { padding: 10px 20px; font-size: 12px; }
.btn-lg { padding: 16px 36px; font-size: 14px; }

/* ===== FOOTER ===== */
.site-footer {
  background: #000;
  color: #fff;
  padding: 80px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--color-text-muted);
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}

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

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
  font-size: 13px;
  color: var(--color-text-muted);
}

.footer-bottom a {
  color: var(--color-text-muted);
  transition: color 0.2s;
}

.footer-bottom a:hover { color: #fff; }

/* ===== UTILITIES ===== */
.h-section { padding: 100px 0; }
.h-section-dark { background: var(--color-bg); color: var(--color-text); }
.h-section-light { background: var(--color-bg-light); color: var(--color-text-dark); }

.h-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.h-eyebrow-dark { color: var(--color-text-muted-dark); }

.h-h1 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.h-h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.h-h2-big {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.h-accent { color: var(--color-accent); }
.h-accent-dark { color: #0a0a0a; }

.h-lead {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.h-lead-dark { color: var(--color-text-muted-dark); }
.h-lead-big { font-size: 1.25rem; max-width: 700px; }
.h-text-center { text-align: center; }

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .site-header { padding: 16px 20px; }
  .main-navigation { display: none; }
  .btn-sm { padding: 8px 16px; font-size: 11px; }
  .h-container { padding: 0 24px; }
  .h-section { padding: 70px 0; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding-top: 30px;
  }
}
