/* Digital Collectibles Marketplace - Main CSS */
/* Bootstrap 5 Compatible Styles */

:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-purple: #8B5FBF;
  --primary-blue: #5A9FD4;
  --primary-pink: #E8A5C7;
  --primary-green: #7BC97B;
  --primary-orange: #F4A460;
  
  /* Light/Dark Shades */
  --light-purple: #B8A1D9;
  --dark-purple: #6B4C8A;
  --light-blue: #8BBDE6;
  --dark-blue: #4A7FA8;
  --light-pink: #F2C5DC;
  --dark-pink: #D68BB2;
  --light-green: #A3D9A3;
  --dark-green: #5FA85F;
  --light-orange: #F7C088;
  --dark-orange: #E6924A;
  
  /* Typography */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
}

/* Conservative Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: #333;
    overflow-x: hidden;
}

.navbar-brand {
  font-size: var(--font-size-lg) !important;
  font-weight: 600;
  color: var(--primary-purple);
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-purple);
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-purple);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

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

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

#hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: var(--primary-pink);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

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

/* Services Section */
#services {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-purple);
}

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

/* Features Section */
#features {
  padding: 5rem 0;
  background: white;
}

.feature-item {
  text-align: center;
  padding: 2rem 1rem;
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

/* Team Section */
#team {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.team-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  height: 100%;
}

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

/* Reviews Section */
#reviews {
  padding: 5rem 0;
  background: white;
}

.review-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 2rem;
  border-left: 4px solid var(--primary-green);
  height: 100%;
}

/* Price Plan Section */
#priceplan {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--light-green) 0%, var(--light-orange) 100%);
}

.price-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  height: 100%;
  position: relative;
}

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

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

/* Contact Section */
#contact {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.contact-form {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* FAQ Section */
#faq {
  padding: 5rem 0;
  background: white;
}

.faq-card {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-blue);
}

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

.faq-answer {
  color: #666;
  margin-bottom: 0;
}

/* Gallery Section */
#gallery {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Blog Section */
#blog {
  padding: 5rem 0;
  background: white;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  height: 100%;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

/* Footer */
#footer {
  background-color: #1a1a1a; /* Darker background for better contrast */
  color: #f0f0f0; /* Lighter text for better readability */
  padding: 3rem 0 1rem;
}

#footer h5 {
  color: #ffffff; /* White for headings */
  margin-bottom: 1rem;
  font-weight: 600;
}

#footer p {
  color: #f0f0f0; /* Light grey for paragraph text */
  margin-bottom: 1rem;
  line-height: 1.6;
}

#footer small {
  color: #e0e0e0; /* Slightly darker for small text */
  display: block;
  text-align: center;
  margin-top: 2rem;
}

#footer a {
  color: #93c5fd; /* Light blue for links */
  text-decoration: underline;
  transition: color 0.3s ease;
}

#footer a:hover {
  color: #dbeafe; /* Lighter blue on hover */
  text-decoration: underline;
}

#footer a:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

#footer ul.list-unstyled li {
  margin-bottom: 0.5rem; /* Increased spacing between list items */
}

/* Disclaimer styling */
#footer .disclaimer-text {
  font-size: 0.9rem;
  color: #e0e0e0;
  margin-bottom: 0.75rem;
  line-height: 1.5;
  text-align: justify;
}

/* High contrast mode */
@media (prefers-contrast: more) {
  #footer {
    background-color: #000000 !important;
    border-top: 2px solid #ffffff !important;
  }
  
  #footer h5 {
    color: #ffffff !important;
  }
  
  #footer p, #footer .disclaimer-text {
    color: #ffffff !important;
  }
  
  #footer a {
    color: #ffffff !important;
    text-decoration: underline !important;
    font-weight: bold !important;
  }
}

#site-copyright {
  background-color: var(--primary-purple);
  color: white;
  padding: 1rem 0;
  margin-top: 2rem;
  text-align: center;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-purple);
  border-color: var(--primary-purple);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 25px;
}

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

.btn-outline-primary {
  color: var(--primary-purple);
  border-color: var(--primary-purple);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 25px;
}

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

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

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

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

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

.border-primary-custom {
  border-color: var(--primary-purple);
} 

.hero-content {
    padding-top: 225px;
}


/* Team Social Links - Neon Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

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

.social-link {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 0.7;
}

.social-link:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px currentColor;
    box-shadow: 0 0 20px currentColor;
}

.facebook-link {
    border-color: #1877f2;
    color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

.linkedin-link {
    border-color: #0a66c2;
    color: #0a66c2;
    background: rgba(10, 102, 194, 0.1);
}

.instagram-link {
    border-color: #e4405f;
    color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

.x-link {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 22px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
