/* Neon Signs Template - Main CSS */

/* Color Variables */
:root {
  /* Primary Colors */
  --primary-neon-pink: #ee0564;
  --primary-electric-blue: #00afff;
  --primary-neon-green: #43f629;
  --primary-deep-purple: #7b00f8;
  --primary-warm-orange: #e75400;
  
  /* Light Shades */
  --light-pink: #ff74b9;
  --light-blue: #6ed0ff;
  --light-green: #71ff6a;
  --light-purple: #9359f3;
  --light-orange: #fd9e45;
  
  /* Dark Shades */
  --dark-pink: #bd0652;
  --dark-blue: #0f8adb;
  --dark-green: #46d41c;
  --dark-purple: #4600c8;
  --dark-orange: #e26200;
  
  /* Neutral Colors */
  --dark-bg: #0a0a0f;
  --darker-bg: #050508;
  --light-gray: #f8f9fa;
  --medium-gray: #708492;
  --dark-gray: #2d2f31;
  
  /* Font Sizes - Conservative */
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 1.875rem;
  --fs-4xl: 2.25rem;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --container-padding: 1.5rem;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--light-gray);
  background-color: var(--dark-bg);
  overflow-x: hidden;
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.20rem;
}

h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }
h5 { font-size: var(--fs-base); }
h6 { font-size: var(--fs-sm); }

p {
  margin-bottom: 1.20rem;
  font-size: var(--fs-base);
}

/* Navbar */
.navbar {
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
  backdrop-filter: blur(11px);
  border-bottom: 1px solid rgba(232, 0, 92, 0.20);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: var(--fs-lg) !important;
  font-weight: 700;
  color: var(--primary-neon-pink) !important;
  text-shadow: 0 0 12px var(--primary-neon-pink);
}

.navbar-nav .nav-link {
  color: var(--light-gray) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-electric-blue) !important;
  text-shadow: 0 0 8px var(--primary-electric-blue);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-neon-pink), var(--primary-electric-blue));
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  padding-top: 50px;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 50%, var(--darker-bg) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 40%, var(--primary-neon-pink) 0%, transparent 70%),
              radial-gradient(circle at 70% 60%, var(--primary-electric-blue) 0%, transparent 70%);
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  padding-top: 100px !important;
  position: relative;
  z-index: 2;
}

.neon-title {
  font-size: var(--fs-4xl);
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-neon-pink), var(--primary-electric-blue), var(--primary-neon-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 21px var(--primary-neon-pink);
  margin-bottom: 1.59rem;
}

/* Sections */
section {
  padding: var(--section-padding);
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 3.12rem;
}

.section-title h2 {
  color: var(--primary-electric-blue);
  text-shadow: 0 0 23px var(--primary-electric-blue);
  margin-bottom: 1.20rem;
}

.section-title p {
  color: var(--medium-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Cards */
.neon-card {
  background: linear-gradient(135deg, rgba(142, 1, 255, 0.10) 0%, rgba(6, 208, 255, 0.10) 100%);
  border: 1px solid rgba(247, 0, 98, 0.30);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2.24rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.neon-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(238, 0, 126, 0.10), transparent);
  transition: left 0.5s ease;
}

.neon-card:hover::before {
  left: 100%;
}

.neon-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 0, 139, 0.30);
  border-color: var(--primary-neon-pink);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-item {
  text-align: center;
}

.service-price {
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--primary-neon-green);
  text-shadow: 0 0 10px var(--primary-neon-green);
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  text-align: center;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-electric-blue);
  box-shadow: 0 0 22px var(--primary-electric-blue);
  margin: 0 auto 1rem;
  display: block;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 0, 125, 0.30);
  color: var(--light-gray);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.20rem;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-electric-blue);
  box-shadow: 0 0 15px rgba(0, 181, 255, 0.30);
  color: var(--light-gray);
}

.btn-neon {
  background: linear-gradient(135deg, var(--primary-neon-pink), var(--primary-electric-blue));
  border: none;
  color: white;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-neon:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(247, 13, 132, 0.40);
  color: white;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
  border-top: 1px solid rgba(249, 0, 94, 0.20);
  padding: 3rem 0 1rem;
  margin-top: 5.23rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2.24rem;
}

.footer-section h5 {
  color: var(--primary-electric-blue);
  text-shadow: 0 0 10px var(--primary-electric-blue);
  margin-bottom: 1.20rem;
}

.footer-section a {
  color: var(--medium-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-neon-pink);
}

.footer-bottom {
  text-align: center;
  padding-top: 2.06rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* FAQ Section */
.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 0, 94, 0.20);
  border-radius: 10px;
  margin-bottom: 1.20rem;
  overflow: hidden;
}

.faq-question {
  background: rgba(255, 2, 100, 0.10);
  padding: 1rem;
  font-weight: 600;
  color: var(--primary-electric-blue);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 17, 145, 0.20);
}

.faq-answer {
  padding: 1rem;
  color: var(--medium-gray);
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-item {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(10, 208, 246, 0.20);
}

.blog-content {
  padding: 1.5rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Space Page */
#space {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, var(--primary-neon-pink) 0%, var(--primary-electric-blue) 50%, var(--dark-bg) 100%);
  opacity: 0.1;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  margin-bottom: 2.24rem;
}

.breadcrumb-item img {
  width: 21px;
  height: 20px;
  filter: brightness(0.7);
}

/* Utilities */
.text-neon-pink { color: var(--primary-neon-pink) !important; }
.text-neon-blue { color: var(--primary-electric-blue) !important; }
.text-neon-green { color: var(--primary-neon-green) !important; }
.text-neon-purple { color: var(--primary-deep-purple) !important; }
.text-neon-orange { color: var(--primary-warm-orange) !important; }

.bg-dark-custom {
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.glow-pink { box-shadow: 0 0 20px var(--primary-neon-pink); }
.glow-blue { box-shadow: 0 0 20px var(--primary-electric-blue); }
.glow-green { box-shadow: 0 0 20px var(--primary-neon-green); } 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
