/* ====================================================
   LOCAL MAKER MARKETPLACE - MAIN STYLES
   Bootstrap 5 Based Template
   ==================================================== */

/* Color Palette - 5 Primary Colors + Light/Dark Shades */
:root {
  /* Primary Color Palette */
  --primary-green: #89b667;
  --primary-blue: #529ac5;
  --primary-orange: #e8ad53;
  --primary-purple: #d1b8ec;
  --primary-coral: #ff9099;
  
  /* Light Shades */
  --light-green: #abe4a0;
  --light-blue: #bcd8fc;
  --light-orange: #efbf8a;
  --light-purple: #ede1fa;
  --light-coral: #ffe0e0;
  
  /* Dark Shades */
  --dark-green: #5b824f;
  --dark-blue: #3d7eb1;
  --dark-orange: #f9955e;
  --dark-purple: #7c6ac4;
  --dark-coral: #d98e80;
  
  /* Neutral Colors */
  --neutral-white: #FFFFFF;
  --neutral-light: #F8F9FA;
  --neutral-gray: #676c71;
  --neutral-dark: #373b42;
  --neutral-black: #18191b;
  
  /* Shadows */
  --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.2);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-coral) 100%);
  --gradient-accent: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Global Styles */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--neutral-dark);
  font-size: 16px;
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.16rem;
  font-weight: 600;
  color: var(--primary-green);
}

h1 {
  font-size: 2.27rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.84rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 0.90rem;
}

h3 {
  font-size: 1.51rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 0.79rem;
}

h4 {
  font-size: 1.26rem;
  font-weight: 500;
  color: var(--neutral-dark);
  margin-bottom: 0.97rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--neutral-gray);
}

/* Header Styles */
.navbar {
  background: var(--neutral-white);
  box-shadow: var(--shadow-light);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--neutral-dark);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-green);
}

/* Hero Section */
.hero-section {
  background: var(--gradient-primary);
  color: var(--neutral-white);
  padding: 6rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-section h1 {
  color: var(--neutral-white);
  font-size: 2.65rem;
  margin-bottom: 1.78rem;
    padding-top: 150px;
}

.hero-section p {
  color: var(--light-green);
  font-size: 1.12rem;
  margin-bottom: 2rem;
}

.hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.hero-shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero-shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 15%;
  animation: float 4s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--primary-green);
  font-size: 0.97rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.73rem;
}

/* Button Styles */
.btn-primary {
  background: var(--primary-green);
  border: none;
  padding: 0.8rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-outline-primary {
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
  padding: 0.8rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--primary-green);
  color: var(--neutral-white);
}

/* Card Styles */
.card {
  border: none;
  border-radius: 1rem;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.card-header {
  background: var(--neutral-light);
  border-bottom: none;
  padding: 1.5rem;
}

.card-body {
  padding: 1.5rem;
}

/* Services Section */
.services-item {
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
  background: var(--neutral-white);
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.services-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.services-item h4 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.services-price {
  color: var(--primary-orange);
  font-size: 1.60rem;
  font-weight: 700;
  margin-top: 1rem;
}

/* Team Section */
.team-member {
  text-align: center;
  padding: 1.5rem;
}

.team-member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 4px solid var(--primary-green);
}

.team-role {
  color: var(--primary-blue);
  font-weight: 500;
  margin-bottom: 0.73rem;
}

/* Reviews Section */
.reviews-item {
  background: var(--neutral-white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-light);
  height: 100%;
}

.reviews-item::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary-green);
  font-weight: 700;
  line-height: 1;
}

.reviews-author {
  color: var(--primary-blue);
  font-weight: 600;
  margin-top: 1rem;
}

/* FAQ Section */
.faq-item {
  background: var(--neutral-white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-light);
  margin-bottom: 1.77rem;
}

.faq-question {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--neutral-gray);
  margin-bottom: 0;
}

/* Gallery Section */
.gallery-item {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Contact Form */
.contact-form {
  background: var(--neutral-white);
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: var(--shadow-light);
}

.form-control {
  border: 2px solid var(--neutral-light);
  border-radius: 0.5rem;
  padding: 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(108, 173, 90, 0.25);
}

.form-label {
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 0.81rem;
}

/* Footer */
.footer {
  background: var(--neutral-dark);
  color: var(--neutral-light);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--neutral-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-green);
}

.footer-bottom {
  border-top: 1px solid var(--neutral-gray);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* Utility Classes */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-secondary {
  background: var(--gradient-secondary);
}

.bg-light-green {
  background: var(--light-green);
}

.bg-light-blue {
  background: var(--light-blue);
}

.bg-primary-green {
  background: var(--primary-green);
}

.text-primary-green {
  color: var(--primary-green);
}

.text-primary-blue {
  color: var(--primary-blue);
}

/* Spacing Utilities */
.py-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.my-6 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

/* Animation Classes (conservative) */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* Breadcrumb */
.breadcrumb {
  background: none;
  padding: 0;
  margin: 2rem 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  object-fit: cover;
}

/* Timeline Styles */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-green);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  width: 100%;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
  margin-right: 3rem;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 3rem;
  margin-right: auto;
  text-align: left;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  background: var(--primary-green);
  border: 4px solid var(--neutral-white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: var(--shadow-light);
}

.timeline-content {
  background: var(--neutral-white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-light);
  max-width: 400px;
  position: relative;
}

.timeline-content h5 {
  color: var(--primary-green);
  margin-bottom: 1rem;
  font-weight: 600;
}

.timeline-content p {
  margin-bottom: 0;
  color: var(--neutral-gray);
}

/* Skip Link Styles */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-green);
  color: var(--neutral-white);
  padding: 8px;
  z-index: 1000;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  top: 6px;
  color: var(--neutral-white);
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  min-width: 150px;
}

/* Contact Info Styles */
.contact-info {
  background: var(--neutral-light);
  padding: 2rem;
  border-radius: 1rem;
  height: 100%;
}

.contact-info h5 {
  color: var(--primary-green);
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-info p {
  margin-bottom: 0.71rem;
  display: flex;
  align-items: center;
}

.contact-info i {
  color: var(--primary-green);
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info ul li {
  margin-bottom: 0.86rem;
}

.contact-info ul li a {
  color: var(--neutral-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info ul li a:hover {
  color: var(--primary-green);
}

/* Additional utility classes */
.h-100 {
  height: 100%;
}

.list-unstyled {
  list-style: none;
  padding: 0;
}

.fw-bold {
  font-weight: 700;
}

.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2;
}

.lead {
  font-size: 1.29rem;
  font-weight: 300;
}

/* Additional Bootstrap-compatible utilities */
.text-lg-end {
  text-align: right;
}

.text-decoration-none {
  text-decoration: none;
}

.border-primary {
  border-color: var(--primary-blue);
}

.me-2 {
  margin-right: 0.5rem;
}

.me-3 {
  margin-right: 1rem;
}

.ms-3 {
  margin-left: 1rem;
}

.ms-auto {
  margin-left: auto;
}

.mb-2 {
  margin-bottom: 0.88rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.78rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 3rem;
}

.d-flex {
  display: flex;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-grow-1 {
  flex-grow: 1;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.rounded-3 {
  border-radius: 0.375rem;
}

.rounded-circle {
  border-radius: 50%;
}

.position-relative {
  position: relative;
}

.position-fixed {
  position: fixed;
}

.bottom-0 {
  bottom: 0;
}

.end-0 {
  right: 0;
}

.m-4 {
  margin: 1.5rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
} 


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
