/* Art Supplies Marketplace Template - Main CSS */
/* Bootstrap 5.3+ and custom art supplies theme */

/* ===== COLOR PALETTE ===== */
:root {
  /* Primary Colors - Art Supplies Theme */
  --color-primary: #6B73FF;       /* Creative Blue */
  --color-secondary: #FF6B9D;     /* Artist Pink */
  --color-tertiary: #48CAE4;      /* Sky Blue */
  --color-quaternary: #FFD23F;    /* Sunshine Yellow */
  --color-quinary: #06D6A0;       /* Mint Green */
  
  /* Light Shades */
  --color-primary-light: #9BA3FF;
  --color-secondary-light: #FF9BBB;
  --color-tertiary-light: #7BD9EE;
  --color-quaternary-light: #FFE06F;
  --color-quinary-light: #40E5B8;
  
  /* Dark Shades */
  --color-primary-dark: #4A51CC;
  --color-secondary-dark: #CC4471;
  --color-tertiary-dark: #2B9CB5;
  --color-quaternary-dark: #CCA832;
  --color-quinary-dark: #05A47A;
  
  /* Neutral Colors */
  --color-white: #FFFFFF;
  --color-light: #F8F9FA;
  --color-gray-100: #F1F3F4;
  --color-gray-200: #E9ECEF;
  --color-gray-300: #DEE2E6;
  --color-gray-600: #6C757D;
  --color-gray-700: #495057;
  --color-gray-800: #343A40;
  --color-gray-900: #212529;
  --color-dark: #1A1D23;
  
  /* Typography */
  --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 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.875rem;
  --font-size-4xl: 2.25rem;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --section-padding-sm: 3rem 0;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* ===== GLOBAL STYLES ===== */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-primary);
  line-height: 1.6;
  color: var(--color-gray-700);
  overflow-x: hidden;
}

/* ===== ACCESSIBILITY ===== */
@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;
  }
}

/* ===== TYPOGRAPHY ===== */
h1 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-gray-900);
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-gray-800);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-gray-800);
  margin-bottom: 0.5rem;
}

h4, h5, h6 {
  font-size: var(--font-size-lg);
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-gray-700);
  margin-bottom: 0.5rem;
}

p {
  font-size: var(--font-size-base);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.lead {
  font-size: var(--font-size-lg);
  font-weight: 300;
}

/* ===== HEADER & NAVIGATION ===== */
.navbar-brand {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-primary);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--color-gray-700);
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--color-primary);
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-tertiary-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: var(--color-quaternary-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 30%;
  height: 150%;
  background: var(--color-secondary-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

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

/* ===== SECTIONS ===== */
.section {
  padding: var(--section-padding);
}

.section-sm {
  padding: var(--section-padding-sm);
}

.section-title {
  font-size: var(--font-size-2xl);
  color: var(--color-gray-900);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.section-description {
  font-size: var(--font-size-base);
  color: var(--color-gray-600);
  margin-bottom: 3rem;
}

/* ===== CARDS ===== */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.card-img-top {
  border-radius: 12px 12px 0 0;
  height: 200px;
  object-fit: cover;
}

/* ===== BUTTONS ===== */
.btn {
  border-radius: 8px;
  font-weight: 500;
  text-transform: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

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

.btn-secondary {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.btn-secondary:hover {
  background-color: var(--color-secondary-dark);
  border-color: var(--color-secondary-dark);
}

.btn-outline-primary {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline-primary:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

/* ===== SERVICES SECTION ===== */
.service-card {
  text-align: center;
  padding: 2rem;
  border-radius: 12px;
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

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

.service-price {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-primary);
}

/* ===== TEAM SECTION ===== */
.team-member {
  text-align: center;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-lg);
}

/* ===== TESTIMONIALS/REVIEWS ===== */
.review-card {
  background: var(--color-light);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
}

.review-text {
  font-style: italic;
  color: var(--color-gray-600);
  margin-bottom: 1rem;
}

.review-author {
  font-weight: 600;
  color: var(--color-gray-800);
}

/* ===== FAQ SECTION ===== */
.faq-card {
  border: 1px solid var(--color-gray-200);
  border-radius: 8px;
  margin-bottom: 1rem;
}

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

.faq-answer {
  color: var(--color-gray-600);
  margin-bottom: 0;
}

/* ===== GALLERY ===== */
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  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(--color-white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.form-control {
  border-radius: 8px;
  border: 1px solid var(--color-gray-300);
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(107, 115, 255, 0.25);
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--color-gray-900);
  color: var(--color-white);
  padding: 3rem 0 1rem;
}

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

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

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

.footer-bottom {
  border-top: 1px solid var(--color-gray-700);
  padding-top: 1rem;
  margin-top: 2rem;
}

/* ===== BREADCRUMBS ===== */
.breadcrumb {
  background: none;
  padding: 1rem 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb img {
  width: 20px;
  height: 20px;
}

/* ===== UTILITIES ===== */
.text-gradient {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-light-gradient {
  background: linear-gradient(135deg, var(--color-light), var(--color-white));
}

.bg-primary-gradient {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
}

/* ===== ANIMATION HELPERS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(30px);
}

.zoom-in {
  opacity: 0;
  transform: scale(0.9);
}



/* 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;
    }
}
