/* Main CSS for Upcycled Denim Accessories Store Template */

/* Bootstrap 5 Import */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');

/* FontAwesome Import */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* Color Palette - Upcycled Denim Theme */
:root {
  /* Primary Colors */
  --primary-indigo: #6c5bf2;
  --primary-denim: #0d2ba2;
  --primary-sage: #5c637c;
  --primary-cream: #fff7ba;
  --primary-terracotta: #ef2112;
  
  /* Light Shades */
  --light-indigo: #d7deef;
  --light-denim: #d6eeff;
  --light-sage: #f3f4f6;
  --light-cream: #fffce4;
  --light-terracotta: #f9dcdf;
  
  /* Dark Shades */
  --dark-indigo: #4c3996;
  --dark-denim: #234b8f;
  --dark-sage: #36414e;
  --dark-cream: #c55409;
  --dark-terracotta: #a81923;
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  
  /* Sizes */
  --navbar-height: 80px;
  --section-padding: 80px 0;
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--dark-sage);
  background-color: #ffffff;
}

/* Respect Prefers Reduced Motion */
@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, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark-denim);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

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

/* Navigation */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(49, 62, 80, 0.10);
  min-height: var(--navbar-height);
}

.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-denim);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--dark-sage);
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

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

/* Sections */
section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--primary-sage);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

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

.hero-decorative {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--primary-terracotta);
  opacity: 0.1;
  z-index: 1;
}

.hero-decorative:nth-child(1) {
  top: -150px;
  right: -150px;
}

.hero-decorative:nth-child(2) {
  bottom: -150px;
  left: -150px;
  background: var(--primary-indigo);
}

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

.hero-image {
  position: relative;
  z-index: 2;
}

/* Cards */
.service-card,
.feature-card,
.price-card,
.team-card,
.review-card,
.case-card,
.process-card,
.timeline-card,
.career-card,
.core-card,
.blog-card,
.faq-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(18, 26, 34, 0.10);
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.feature-card:hover,
.price-card:hover,
.team-card:hover,
.review-card:hover,
.case-card:hover,
.process-card:hover,
.timeline-card:hover,
.career-card:hover,
.core-card:hover,
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(46, 56, 79, 0.15);
}

/* Service Cards */
.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-terracotta);
}

/* Team Cards */
.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--light-denim);
}

/* Price Cards */
.price-card.featured {
  border: 2px solid var(--primary-denim);
  transform: scale(1.05);
}

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

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

.form-control {
  border: 2px solid var(--light-denim);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--primary-denim);
  box-shadow: 0 0 0 0.2rem rgba(41, 55, 166, 0.25);
}

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

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

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
}

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

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

/* Footer */
.footer {
  background-color: var(--dark-sage);
  color: #ffffff;
  padding: 3rem 0 1rem;
}

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

.footer a {
  color: #c0c8dd;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

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

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

/* Utilities */
.text-primary {
  color: var(--primary-denim) !important;
}

.bg-primary {
  background-color: var(--primary-denim) !important;
}

.text-accent {
  color: var(--primary-terracotta);
}

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

/* Space Page */
#space {
  min-height: 80vh;
  background: linear-gradient(135deg, var(--light-denim) 0%, var(--light-sage) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
} 


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