/* 3D-Printed Cosplay Armor Boutique - Main Styles */

/* Color Palette - 5 Primary Colors + Shades */
:root {
  --primary-cyan: #a3e4e8;
  --primary-lavender: #d4b3e8;
  --primary-peach: #f5c7a3;
  --primary-mint: #b8e8c1;
  --primary-rose: #f2b3c4;
  
  /* Light Shades */
  --light-cyan: #e1f5f7;
  --light-lavender: #f0e8f5;
  --light-peach: #fbebe1;
  --light-mint: #ebf5ed;
  --light-rose: #f9e8ec;
  
  /* Dark Shades */
  --dark-cyan: #7bc2c7;
  --dark-lavender: #b491c7;
  --dark-peach: #e09a6b;
  --dark-mint: #96c7a0;
  --dark-rose: #e691a3;
  
  /* Neutral Colors */
  --text-dark: #2c2c2c;
  --text-light: #6c757d;
  --white: #ffffff;
  --light-gray: #f8f9fa;
}

/* Typography - Conservative Sizes */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

.navbar-brand {
  font-size: 1.2rem !important;
  font-weight: 600;
  color: var(--primary-cyan);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
}

p {
  font-size: 1rem;
  color: var(--text-light);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-cyan) 0%, var(--light-lavender) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
}

.hero-shape-1 {
  width: 200px;
  height: 200px;
  background: var(--primary-peach);
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero-shape-2 {
  width: 150px;
  height: 150px;
  background: var(--primary-mint);
  bottom: 20%;
  left: 5%;
  animation: float 8s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 100px;
}

/* Services Section */
.services-section {
  background: var(--light-gray);
  padding: 80px 0;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-cyan);
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background: var(--white);
}

.team-card {
  text-align: center;
  background: var(--light-gray);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 4px solid var(--primary-lavender);
}

/* Testimonials Section */
.testimonials-section {
  background: var(--light-mint);
  padding: 80px 0;
}

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  height: 100%;
  border-left: 4px solid var(--primary-rose);
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: var(--white);
}

.faq-card {
  background: var(--light-peach);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  border-left: 4px solid var(--primary-peach);
}

.faq-question {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.faq-answer {
  color: var(--text-light);
  margin: 0;
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background: var(--light-lavender);
}

.gallery-item {
  margin-bottom: 30px;
}

.gallery-item img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: var(--light-rose);
}

.contact-form {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  padding: 12px 15px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-cyan);
  box-shadow: 0 0 0 0.2rem rgba(163, 228, 232, 0.25);
}

.btn-primary {
  background: var(--primary-cyan);
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: var(--dark-cyan);
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer h5 {
  color: var(--primary-cyan);
  margin-bottom: 20px;
}

.footer a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-cyan);
}

/* Section Spacing */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 20px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 15px;
}

.section-desc {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Make all SAL elements visible immediately regardless of animation state */
[data-sal] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  visibility: visible !important;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero-shape {
    animation: none;
  }
}

/* Utility Classes */
.text-primary-cyan { color: var(--primary-cyan); }
.text-primary-lavender { color: var(--primary-lavender); }
.text-primary-peach { color: var(--primary-peach); }
.text-primary-mint { color: var(--primary-mint); }
.text-primary-rose { color: var(--primary-rose); }

.bg-primary-cyan { background-color: var(--primary-cyan); }
.bg-primary-lavender { background-color: var(--primary-lavender); }
.bg-primary-peach { background-color: var(--primary-peach); }
.bg-primary-mint { background-color: var(--primary-mint); }
.bg-primary-rose { background-color: var(--primary-rose); } 


/* Team Social Links - Gradient Style */
.team-social-links {
    margin-top: 20px;
    padding: 18px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.social-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.linkedin-link {
    background: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #21cbf3 0%, #2196f3 100%);
}

.instagram-link {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.x-link {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    position: relative;
}

.x-link::after {
    content: '✦';
    font-weight: bold;
    font-size: 22px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: linear-gradient(135deg, #414345 0%, #232526 100%);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
