/* Main CSS for Generative Digital-Art Print Shop */

:root {
  /* 5 Primary Pastel Colors - High Contrast */
  --primary-mint: #88d8b0;
  --primary-coral: #ff8a80;
  --primary-lavender: #b39ddb;
  --primary-peach: #ffcc82;
  --primary-sky: #81c8e8;
  
  /* Light & Dark Shades */
  --mint-light: #b3e5c7;
  --mint-dark: #5fc48d;
  --coral-light: #ffb3b3;
  --coral-dark: #ff5252;
  --lavender-light: #d1c4e9;
  --lavender-dark: #9575cd;
  --peach-light: #ffd699;
  --peach-dark: #ffb74d;
  --sky-light: #a8d8f0;
  --sky-dark: #4fc3f7;
  
  /* Typography */
  --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-size-base: 16px;
  --font-size-small: 14px;
  --line-height-base: 1.6;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --content-max-width: 1200px;
}

/* Global Styles */
body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: #333;
  background-color: #fff;
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
}

h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

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

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

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

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

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

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

.section-subtitle {
  color: var(--coral-dark);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.section-description {
  color: #666;
  font-size: var(--font-size-base);
  margin-bottom: 2rem;
}

/* Cards & Components */
.service-card,
.feature-card,
.team-card,
.review-card,
.case-card,
.price-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(136, 216, 176, 0.2);
}

.service-card:hover,
.feature-card:hover,
.team-card:hover,
.review-card:hover,
.case-card:hover,
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card .card-title {
  color: var(--primary-coral);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card .card-price {
  color: var(--primary-lavender);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1rem;
}

/* Team Cards */
.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid var(--mint-light);
}

.team-member-name {
  color: var(--primary-coral);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.team-member-role {
  color: var(--primary-lavender);
  font-size: var(--font-size-small);
  font-weight: 500;
}

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

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

.process-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary-mint);
  color: white;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.contact-form .form-control:focus {
  border-color: var(--primary-mint);
  box-shadow: 0 0 0 0.2rem rgba(136, 216, 176, 0.25);
}

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

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

/* Footer */
.footer {
  background: var(--primary-lavender);
  color: white;
  padding: 3rem 0 1rem;
}

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

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer a:hover {
  color: white;
}

/* FAQ Cards */
.faq-card {
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--mint-light);
  margin-bottom: 1rem;
  padding: 1.5rem;
}

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

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

/* Gallery */
.gallery-item {
  margin-bottom: 1rem;
}

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

/* Blog Cards */
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

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

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-title {
  color: var(--primary-lavender);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.blog-card-excerpt {
  color: #666;
  font-size: var(--font-size-small);
  margin-bottom: 1rem;
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background: rgba(136, 216, 176, 0.1);
}

.breadcrumb-image {
  width: 24px;
  height: 24px;
  opacity: 0.7;
}

/* Utilities */
.text-primary-mint { color: var(--primary-mint); }
.text-primary-coral { color: var(--primary-coral); }
.text-primary-lavender { color: var(--primary-lavender); }
.text-primary-peach { color: var(--primary-peach); }
.text-primary-sky { color: var(--primary-sky); }

.bg-primary-mint { background-color: var(--primary-mint); }
.bg-primary-coral { background-color: var(--primary-coral); }
.bg-primary-lavender { background-color: var(--primary-lavender); }
.bg-primary-peach { background-color: var(--primary-peach); }
.bg-primary-sky { background-color: var(--primary-sky); }

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


/* Team Social Links - Glass Style */
.team-social-links {
    margin-top: 22px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.social-link {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.3);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 0.5);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.3);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 0.5);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.3);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 0.5);
}

.x-link {
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

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

.x-link:hover {
    background: rgba(0, 0, 0, 0.5);
}

.x-link i {
    display: none;
}

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