/* Custom Wall-Art Printing Template - Main Styles */

:root {
  /* Color Palette - 5 primary pastel high-contrast colors */
  --primary-sage: #9CAF88;
  --primary-sage-light: #B8C7A8;
  --primary-sage-dark: #7A8F68;
  
  --secondary-coral: #F4A261;
  --secondary-coral-light: #F7B881;
  --secondary-coral-dark: #E8924C;
  
  --accent-lavender: #B5A7E6;
  --accent-lavender-light: #C8BDF0;
  --accent-lavender-dark: #9B8DD9;
  
  --neutral-cream: #F8F6F0;
  --neutral-cream-light: #FBFAF7;
  --neutral-cream-dark: #EBE7DD;
  
  --text-charcoal: #2C3E2D;
  --text-charcoal-light: #4A5C4B;
  --text-charcoal-dark: #1A2A1B;
  
  /* Conservative Typography */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.75rem;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-charcoal);
  background-color: var(--neutral-cream);
  line-height: 1.6;
  font-size: var(--font-size-base);
    overflow-x: hidden;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Conservative Typography */
.navbar-brand {
  font-size: var(--font-size-xl) !important;
  font-weight: 600;
  color: var(--text-charcoal);
}

h1 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--text-charcoal);
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: var(--text-charcoal);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--text-charcoal);
  margin-bottom: 0.5rem;
}

h4, h5, h6 {
  font-size: var(--font-size-lg);
  font-weight: 500;
  color: var(--text-charcoal);
  margin-bottom: 0.5rem;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
}

/* Header */
#header {
  background-color: var(--neutral-cream);
  box-shadow: 0 2px 4px rgba(44, 62, 45, 0.1);
}

.navbar-nav .nav-link {
  color: var(--text-charcoal);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-sage);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--neutral-cream) 0%, var(--neutral-cream-light) 100%);
  position: relative;
  display: flex;
  align-items: center;
}

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--accent-lavender);
  opacity: 0.1;
  z-index: 1;
}

.hero-decorative:nth-child(1) {
  top: 10%;
  right: 15%;
}

.hero-decorative:nth-child(2) {
  bottom: 20%;
  left: 10%;
  background: var(--secondary-coral);
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 150px;
}

/* About Section */
#about {
  padding: 5rem 0;
  background-color: var(--neutral-cream-light);
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(44, 62, 45, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid var(--primary-sage);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(44, 62, 45, 0.15);
}

/* Services Section */
#services {
  padding: 5rem 0;
  background-color: var(--neutral-cream);
}

.service-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(44, 62, 45, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-image {
  height: 200px;
  background: var(--accent-lavender-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-charcoal);
  font-size: 3rem;
}

.service-content {
  padding: 1.5rem;
}

.service-price {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--secondary-coral);
  margin-top: 1rem;
}

/* Features Section */
#features {
  padding: 5rem 0;
  background-color: var(--neutral-cream-light);
}

.features-item {
  text-align: center;
  padding: 2rem;
}

.features-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

/* Price Plan Section */
#priceplan {
  padding: 5rem 0;
  background-color: var(--neutral-cream);
}

.price-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(44, 62, 45, 0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: scale(1.05);
}

.price-card.featured {
  border: 3px solid var(--secondary-coral);
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-coral);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--neutral-cream-dark);
}

/* Team Section */
#team {
  padding: 5rem 0;
  background-color: var(--neutral-cream-light);
}

.team-member {
  text-align: center;
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(44, 62, 45, 0.1);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--accent-lavender-light);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-charcoal);
  font-size: 4rem;
}

/* Reviews Section */
#reviews {
  padding: 5rem 0;
  background-color: var(--neutral-cream);
}

.review-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(44, 62, 45, 0.1);
  height: 100%;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-charcoal-light);
}

.review-author {
  font-weight: 600;
  color: var(--text-charcoal);
}

/* Case Study Section */
#casestudy {
  padding: 5rem 0;
  background-color: var(--neutral-cream-light);
}

.case-study-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(44, 62, 45, 0.1);
  height: 100%;
}

.case-study-image {
  height: 200px;
  background: var(--primary-sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-charcoal);
  font-size: 3rem;
}

.case-study-content {
  padding: 1.5rem;
}

/* Process Section */
#process {
  padding: 5rem 0;
  background-color: var(--neutral-cream);
}

.process-step {
  text-align: center;
  position: relative;
  padding: 2rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--secondary-coral);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

/* Timeline Section */
#timeline {
  padding: 5rem 0;
  background-color: var(--neutral-cream-light);
}

.timeline-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(44, 62, 45, 0.1);
  border-left: 4px solid var(--accent-lavender);
}

/* Career Section */
#career {
  padding: 5rem 0;
  background-color: var(--neutral-cream);
}

.career-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(44, 62, 45, 0.1);
  margin-bottom: 2rem;
}

.career-role {
  color: var(--secondary-coral);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Core Info Section */
#coreinfo {
  padding: 5rem 0;
  background-color: var(--neutral-cream-light);
}

.coreinfo-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(44, 62, 45, 0.1);
  height: 100%;
}

.coreinfo-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-lavender);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

/* Contact Section */
#contacts {
  padding: 5rem 0;
  background-color: var(--neutral-cream);
}

.contact-form {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 6px rgba(44, 62, 45, 0.1);
}

.form-control {
  border: 2px solid var(--neutral-cream-dark);
  border-radius: 8px;
  padding: 0.75rem;
  font-size: var(--font-size-base);
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(156, 175, 136, 0.25);
}

.btn-primary {
  background-color: var(--secondary-coral);
  border-color: var(--secondary-coral);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--secondary-coral-dark);
  border-color: var(--secondary-coral-dark);
}

.contact-info {
  background: var(--primary-sage-light);
  border-radius: 12px;
  padding: 2rem;
  color: var(--text-charcoal);
}

.contact-info-item {
  margin-bottom: 1.5rem;
}

.contact-info-item i {
  color: var(--primary-sage-dark);
  margin-right: 0.5rem;
}

/* Blog Section */
#blog {
  padding: 5rem 0;
  background-color: var(--neutral-cream-light);
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(44, 62, 45, 0.1);
  height: 100%;
}

.blog-image {
  height: 200px;
  background: var(--accent-lavender-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-charcoal);
  font-size: 3rem;
}

.blog-content {
  padding: 1.5rem;
}

.blog-link {
  color: var(--secondary-coral);
  text-decoration: none;
  font-weight: 600;
}

.blog-link:hover {
  color: var(--secondary-coral-dark);
  text-decoration: underline;
}

/* FAQ Section */
#faq {
  padding: 5rem 0;
  background-color: var(--neutral-cream);
}

.faq-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 6px rgba(44, 62, 45, 0.1);
}

.faq-question {
  font-weight: 600;
  color: var(--text-charcoal);
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--text-charcoal-light);
  line-height: 1.6;
}

/* Gallery Section */
#gallery {
  padding: 5rem 0;
  background-color: var(--neutral-cream-light);
}

.gallery-item {
  background: var(--primary-sage-light);
  border-radius: 12px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-charcoal);
  font-size: 3rem;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

/* Footer */
#footer {
  background-color: var(--text-charcoal);
  color: var(--neutral-cream);
  padding: 3rem 0 1rem;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-title {
  color: var(--neutral-cream);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-link {
  color: var(--neutral-cream-dark);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-sage-light);
}

.footer-bottom {
  border-top: 1px solid var(--text-charcoal-light);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

/* Utility Classes */
.section-padding {
  padding: 5rem 0;
}

.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

/* Custom Animation Classes (for Sal.js) */
[data-sal] {
  transition-duration: 0.5s;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .hero-decorative {
    display: none;
  }
  
  h1 {
    font-size: var(--font-size-2xl);
  }
  
  h2 {
    font-size: var(--font-size-xl);
  }
  
  .price-card:hover {
    transform: none;
  }
  
  .service-card:hover {
    transform: none;
  }
  
  .gallery-item:hover {
    transform: none;
  }
  
  /* No scroll animations on mobile */
  [data-sal] {
    transition: none !important;
  }
} 


/* Team Social Links - Modern Style */
.team-social-links {
    margin-top: 25px;
    padding: 20px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.social-link:hover::before {
    transform: scale(1.2);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #00c6ff);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #0099cc);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f093fb, #f5576c);
}

.x-link {
    background: linear-gradient(45deg, #000000, #434343);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 24px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
}
