/*
Theme Name: AcidLabz
Theme URI: https://acidlabz.com
Author: AcidLabz
Description: Exact recreation of the AcidLabz dark graffiti design mockup. Multi-page ready.
Version: 1.2.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: acidlabz
*/

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background-color: #0a0a0a;
  color: #e0e0e0;
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(40,40,40,0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(30,30,30,0.3) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  min-height: 100vh;
}

a { color: #c8ff00; text-decoration: none; transition: color 0.2s; }
a:hover { color: #e0ff66; }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200,255,0,0.12);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 14px 24px;
}

.logo-small {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-logo-img {
  height: 34px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: #ccc;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

.main-nav a:hover,
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a {
  color: #fff;
}

.main-nav .current-menu-item > a::after,
.main-nav .current_page_item > a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #c8ff00;
  border-radius: 2px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 2px solid #c8ff00;
  color: #c8ff00;
  padding: 5px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
}

/* Hero */
.hero {
  text-align: center;
  padding: 50px 0 30px;
}

.hero-logo {
  max-width: 100%;
  width: 680px;
  margin: 0 auto 8px;
  filter: drop-shadow(0 0 18px rgba(200,255,0,0.4));
}

.tagline {
  font-family: 'Shadows Into Light', 'Segoe Script', cursive;
  font-size: 1.85rem;
  color: #f0f0f0;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Divider */
.divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,255,0,0.35), transparent);
  margin: 28px 0;
}

/* Section titles */
.section-title {
  text-align: center;
  font-family: 'Shadows Into Light', cursive;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 32px;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-color: #c8ff00;
  text-decoration-thickness: 2px;
}

/* Services */
.services {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.service-card {
  flex: 1;
  text-align: center;
  padding: 8px 12px;
}

.service-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, #c8ff00, transparent);
  align-self: stretch;
  margin: 10px 0;
  opacity: 0.6;
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.service-card h3 {
  font-family: 'Shadows Into Light', cursive;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.82rem;
  color: #aaa;
  line-height: 1.5;
}

/* About */
.about {
  text-align: center;
  padding: 5px 0 25px;
}

.about p {
  max-width: 680px;
  margin: 0 auto 18px;
  font-size: 0.95rem;
  color: #c5c5c5;
  line-height: 1.7;
}

.green-brush {
  display: block;
  width: 160px;
  height: 7px;
  margin: 12px auto 0;
  background: #c8ff00;
  border-radius: 3px;
  transform: rotate(-1.5deg);
  box-shadow: 0 0 10px rgba(200,255,0,0.45);
}

/* Contact */
.contact {
  text-align: center;
  padding: 10px 0 45px;
}

.contact-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.contact-info a {
  color: #c8ff00;
  display: flex;
  align-items: center;
  gap: 7px;
}

.contact-info .sep { color: #555; }

.socials {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.socials a {
  color: #c8ff00;
  font-size: 1.4rem;
  display: inline-flex;
  transition: transform 0.2s, filter 0.2s;
}

.socials a:hover {
  transform: scale(1.12);
  filter: drop-shadow(0 0 6px #c8ff00);
}

/* Page templates */
.page-header {
  text-align: center;
  padding: 45px 0 25px;
  margin-bottom: 30px;
}

.page-title {
  font-family: 'Shadows Into Light', cursive;
  font-size: 2.4rem;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 9px;
  text-decoration-color: #c8ff00;
  text-decoration-thickness: 2px;
}

.entry-content {
  max-width: 700px;
  margin: 0 auto;
  color: #d0d0d0;
  font-size: 1.02rem;
  line-height: 1.75;
  padding-bottom: 50px;
}

.entry-content h2 {
  font-family: 'Shadows Into Light', cursive;
  color: #fff;
  margin: 1.6em 0 0.5em;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 22px 0 35px;
  border-top: 1px solid rgba(200,255,0,0.1);
  font-size: 0.8rem;
  color: #777;
}

/* Responsive */
@media (max-width: 700px) {
  .services {
    flex-direction: column;
    gap: 28px;
  }
  .service-divider { display: none; }
  .main-nav { display: none; }
  .main-nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 16px;
    background: #111;
    border: 1px solid rgba(200,255,0,0.2);
    border-radius: 6px;
    min-width: 160px;
    padding: 8px 0;
  }
  .main-nav a { display: block; padding: 10px 18px; }
  .menu-toggle { display: block; }
  .tagline { font-size: 1.45rem; }
  .hero { padding: 30px 0 20px; }
}
