/*
 * Digital Assets UI Kit Marketplace Template
 * Main CSS File with Bootstrap 5 Integration
 * Conservative design with pastel high-contrast colors
 */

/* Color Variables - 5 primary colors with light/dark shades */
:root {
  /* Primary Colors */
  --primary-purple: #6c5ce7;
  --primary-blue: #74b9ff;
  --primary-mint: #00cec9;
  --primary-coral: #fd79a8;
  --primary-gold: #fdcb6e;
  
  /* Light Shades */
  --light-purple: #a29bfe;
  --light-blue: #81ecec;
  --light-mint: #55efc4;
  --light-coral: #ff7675;
  --light-gold: #f39c12;
  
  /* Dark Shades */
  --dark-purple: #5f3dc4;
  --dark-blue: #0984e3;
  --dark-mint: #00b894;
  --dark-coral: #e84393;
  --dark-gold: #e17055;
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
  --black: #000000;
  
  /* Typography */
  --font-family-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-h1: 2rem;
  --font-size-h2: 1.75rem;
  --font-size-h3: 1.5rem;
  --font-size-h4: 1.25rem;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --card-padding: 2rem;
  --border-radius: 0.5rem;
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Global Styles */
body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--dark-gray);
  overflow-x: hidden;
}

/* Conservative Typography */
h1 {
  font-size: var(--font-size-h1);
  font-weight: 600;
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  margin-bottom: 0.875rem;
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: var(--font-size-h4);
  font-weight: 500;
  margin-bottom: 0.625rem;
}

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

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

/* Conservative Navbar Brand */
.navbar-brand {
  font-size: var(--font-size-xl);
  font-weight: 600;
}

/* Header Styles */
.navbar {
  background-color: var(--white);
  box-shadow: var(--shadow-light);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--dark-gray);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

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

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

/* Section Spacing */
.section {
  padding: var(--section-padding);
}

.section-title {
  color: var(--primary-purple);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--medium-gray);
  margin-bottom: 1rem;
}

.section-description {
  color: var(--dark-gray);
  margin-bottom: 3rem;
}

/* Services Cards */
.service-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: var(--card-padding);
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: none;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.service-card .card-img-top {
  border-radius: var(--border-radius);
  height: 200px;
  object-fit: cover;
}

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

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 0.25rem 0;
  color: var(--medium-gray);
}

.service-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary-mint);
  margin-right: 0.5rem;
}

/* Features Section */
.feature-item {
  text-align: center;
  margin-bottom: 2rem;
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--light-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: var(--primary-mint);
}

/* Price Plan Cards */
.price-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: var(--card-padding);
  box-shadow: var(--shadow-light);
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  border: 2px solid var(--primary-purple);
  transform: scale(1.05);
}

.price-card .price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-purple);
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
}

/* Team Member Cards */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--light-purple);
}

.team-name {
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-purple);
  font-weight: 500;
}

/* Reviews/Testimonials - Static Cards Only */
.review-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: var(--card-padding);
  box-shadow: var(--shadow-light);
  border: none;
  margin-bottom: 2rem;
}

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

.review-author {
  font-weight: 600;
  color: var(--primary-purple);
}

/* FAQ - Static Cards Only */
.faq-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: var(--card-padding);
  box-shadow: var(--shadow-light);
  border: none;
  margin-bottom: 1rem;
}

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

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

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: var(--card-padding);
  box-shadow: var(--shadow-light);
}

.form-control {
  border: 2px solid var(--light-gray);
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(108, 92, 231, 0.25);
}

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

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

/* Footer - High Contrast Colors Only */
.footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 3rem 0 1rem;
}

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

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

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

.footer-bottom {
  border-top: 1px solid var(--medium-gray);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
}

/* Gallery */
.gallery-item {
  margin-bottom: 2rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

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

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

/* Blog Cards */
.blog-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  border: none;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

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

.blog-card .card-body {
  padding: var(--card-padding);
}

/* Process Steps */
.process-step {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-coral);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 auto 1rem;
}

/* Timeline Items */
.timeline-item {
  padding: 1rem;
  border-left: 4px solid var(--primary-gold);
  margin-bottom: 2rem;
  background: var(--light-gray);
  border-radius: var(--border-radius);
}

.timeline-title {
  font-weight: 600;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
}

/* Career Items */
.career-item {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: var(--card-padding);
  box-shadow: var(--shadow-light);
  border: none;
  margin-bottom: 2rem;
}

.career-title {
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.career-role {
  color: var(--medium-gray);
  font-style: italic;
  margin-bottom: 1rem;
}

/* Core Info Items */
.coreinfo-item {
  text-align: center;
  margin-bottom: 2rem;
}

.coreinfo-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--light-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2.5rem;
  color: var(--primary-coral);
}

/* Case Study Cards */
.casestudy-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: var(--card-padding);
  box-shadow: var(--shadow-light);
  border: none;
  margin-bottom: 2rem;
}

.casestudy-title {
  font-weight: 600;
  color: var(--primary-mint);
  margin-bottom: 1rem;
}

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

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

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Space Page */
#space {
  min-height: 70vh;
  background: var(--light-gray);
  border-radius: var(--border-radius);
  margin: 2rem 0;
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.instagram-link:hover {
    background: #e4405f;
    border-color: #e4405f;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
