/* Main CSS for Acoustic Panel Design & Installation Template */
/* Using only pastel high-contrast colors with conservative font sizes */

:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --primary-soft-blue: #7fb3d3;
  --primary-soft-blue-light: #b8d4e7;
  --primary-soft-blue-dark: #5a8fb8;
  
  --primary-warm-gray: #9b9b9b;
  --primary-warm-gray-light: #c5c5c5;
  --primary-warm-gray-dark: #6b6b6b;
  
  --primary-sage-green: #8fbc8f;
  --primary-sage-green-light: #b4d3b4;
  --primary-sage-green-dark: #6a936a;
  
  --primary-cream: #f5f5dc;
  --primary-cream-light: #faf9f0;
  --primary-cream-dark: #e6e6c7;
  
  --primary-charcoal: #2f4f4f;
  --primary-charcoal-light: #5a7a7a;
  --primary-charcoal-dark: #1a2a2a;
  
  /* Acoustic Panel Theme Colors */
  --acoustic-accent: var(--primary-soft-blue);
  --text-primary: var(--primary-charcoal);
  --text-secondary: var(--primary-warm-gray-dark);
  --bg-light: var(--primary-cream);
  --bg-section: var(--primary-cream-light);
}

/* Base Typography - Conservative Sizes */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-light);
  line-height: 1.6;
  font-size: 16px;
}

/* Conservative Heading Sizes */
h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

/* Navigation - Conservative Brand Size */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Section Styling */
.section-padding {
  padding: 4rem 0;
}

.section-alt {
  background-color: var(--bg-section);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--primary-soft-blue-light) 100%);
  display: flex;
  align-items: center;
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(47, 79, 79, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
  border: 2px solid var(--primary-cream-dark);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(47, 79, 79, 0.15);
}

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

/* Feature Items */
.feature-item {
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  border-left: 4px solid var(--acoustic-accent);
  margin-bottom: 1rem;
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(47, 79, 79, 0.1);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--primary-sage-green);
}

/* Reviews/Testimonials */
.review-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(47, 79, 79, 0.1);
  height: 100%;
  border-top: 4px solid var(--primary-sage-green);
}

/* FAQ Cards */
.faq-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(47, 79, 79, 0.08);
  border-left: 4px solid var(--acoustic-accent);
}

.faq-question {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(47, 79, 79, 0.1);
}

.form-control {
  border-radius: 8px;
  border: 2px solid var(--primary-cream-dark);
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--acoustic-accent);
  box-shadow: 0 0 0 0.2rem rgba(127, 179, 211, 0.25);
}

.btn-primary {
  background-color: var(--acoustic-accent);
  border-color: var(--acoustic-accent);
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--primary-soft-blue-dark);
  border-color: var(--primary-soft-blue-dark);
}

/* Gallery */
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(47, 79, 79, 0.1);
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--acoustic-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Blog Cards */
.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(47, 79, 79, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-3px);
}

.blog-image {
  height: 200px;
  object-fit: cover;
}

/* Footer - High Contrast Colors Only */
.footer {
  background-color: var(--primary-charcoal);
  color: var(--primary-cream);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-cream);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--primary-cream-light);
  text-decoration: none;
}

.footer a:hover {
  color: white;
}

/* Decorative Elements */
.decorative-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--primary-sage-green-light);
  opacity: 0.6;
  z-index: -1;
}

/* Utility Classes */
.text-acoustic {
  color: var(--acoustic-accent);
}

.bg-acoustic {
  background-color: var(--acoustic-accent);
}

.border-acoustic {
  border-color: var(--acoustic-accent);
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Price Plan Cards */
.price-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(47, 79, 79, 0.1);
  text-align: center;
  height: 100%;
  position: relative;
  border: 2px solid var(--primary-cream-dark);
}

.price-card.featured {
  border-color: var(--acoustic-accent);
  transform: scale(1.05);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--acoustic-accent);
}

/* Case Study Cards */
.case-study-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(47, 79, 79, 0.1);
  height: 100%;
  border-top: 4px solid var(--primary-sage-green);
}

/* Timeline Items */
.timeline-item {
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  margin-bottom: 1rem;
  border-left: 4px solid var(--acoustic-accent);
  box-shadow: 0 2px 10px rgba(47, 79, 79, 0.08);
}

/* Career Cards */
.career-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(47, 79, 79, 0.1);
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary-sage-green);
}

/* Core Info Items */
.coreinfo-item {
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(47, 79, 79, 0.08);
  margin-bottom: 1rem;
  text-align: center;
} 

.hero-section h1 {
    padding-top: 125px;
}


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

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

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

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

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
