/* Custom-Printed Fabric Template - Main Styles */
:root {
  /* Primary Color Palette - Pastel & High Contrast */
  --primary-lavender: #E6E6FA;
  --primary-sage: #9CAF88;
  --primary-coral: #FF9B9B;
  --primary-cream: #FFFBF0;
  --primary-navy: #2C3E50;
  
  /* Light/Dark Shades */
  --lavender-light: #F3F3FF;
  --lavender-dark: #D4C5F9;
  --sage-light: #B8D1A3;
  --sage-dark: #7A8B6C;
  --coral-light: #FFB8B8;
  --coral-dark: #E67E7E;
  --cream-light: #FFFFFF;
  --cream-dark: #F5F1E8;
  --navy-light: #3B4F66;
  --navy-dark: #1E2A38;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Poppins', sans-serif;
}

/* Global Styles */
body {
  font-family: var(--font-primary);
  color: var(--primary-navy);
  background-color: var(--primary-cream);
  line-height: 1.6;
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-navy);
}

h1 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-navy);
}

h2 {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--primary-navy);
}

h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

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

.hero-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--coral-light);
  border-radius: 50%;
  opacity: 0.3;
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero-decoration::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: var(--sage-light);
  border-radius: 50%;
  top: -20px;
  left: -20px;
  opacity: 0.5;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

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

.section-light {
  background-color: var(--cream-light);
}

.section-dark {
  background-color: var(--lavender-light);
}

.section-accent {
  background-color: var(--sage-light);
  color: var(--navy-dark);
}

/* Service Cards */
.service-card {
  background: var(--cream-light);
  border: 2px solid var(--sage-light);
  border-radius: 15px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(44, 62, 80, 0.1);
}

.service-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

.service-price {
  background: var(--coral-light);
  color: var(--navy-dark);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  display: inline-block;
}

/* Team Cards */
.team-card {
  background: var(--cream-light);
  border: none;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: scale(1.02);
}

.team-card img {
  height: 250px;
  object-fit: cover;
}

/* Reviews/Testimonials Cards */
.review-card {
  background: var(--lavender-light);
  border: none;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
}

.review-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--coral-dark);
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: serif;
}

/* FAQ Cards */
.faq-card {
  background: var(--cream-light);
  border: 1px solid var(--sage-light);
  border-radius: 10px;
  margin-bottom: 1rem;
}

.faq-question {
  background: var(--sage-light);
  color: var(--navy-dark);
  font-weight: 600;
  padding: 1rem;
  margin: 0;
  border-radius: 10px 10px 0 0;
}

.faq-answer {
  padding: 1rem;
  background: var(--cream-light);
  margin: 0;
  border-radius: 0 0 10px 10px;
}

/* Gallery */
.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

/* Contact Form */
.contact-form {
  background: var(--lavender-light);
  border-radius: 20px;
  padding: 3rem;
}

.form-control {
  border: 2px solid var(--sage-light);
  border-radius: 10px;
  padding: 0.75rem;
  background: var(--cream-light);
}

.form-control:focus {
  border-color: var(--coral-dark);
  box-shadow: 0 0 0 0.2rem rgba(255, 155, 155, 0.25);
}

.btn-primary {
  background-color: var(--coral-dark);
  border-color: var(--coral-dark);
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: var(--navy-dark);
  color: var(--cream-light);
  padding: 3rem 0 1rem;
}

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

.footer a:hover {
  color: var(--coral-light);
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  height: 20px;
  width: auto;
}

/* Utility Classes */
.text-primary-custom {
  color: var(--primary-navy);
}

.bg-primary-custom {
  background-color: var(--primary-sage);
}

.text-accent {
  color: var(--coral-dark);
}

/* Animation Support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
  }
}

/* Sal.js Animation Overrides */
[data-sal] {
  transition-duration: 0.5s;
}

@media (prefers-reduced-motion: reduce) {
  [data-sal] {
    transition: none;
  }
}

.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;
    }
}
