/* Creative Coding Workshop Series - Main Styles */

:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-color: #6778e3;
  --primary-light: #a2b0ff;
  --primary-dark: #5238c8;
  
  --secondary-color: #ff3b88;
  --secondary-light: #f098c2;
  --secondary-dark: #a91743;
  
  --accent-color: #12b1bf;
  --accent-light: #69deff;
  --accent-dark: #008fa4;
  
  --success-color: #11a65f;
  --success-light: #79d4bd;
  --success-dark: #007f68;
  
  --warning-color: #ffc700;
  --warning-light: #eac932;
  --warning-dark: #ec6b00;
  
  /* Neutral Colors */
  --text-primary: #1c2333;
  --text-secondary: #6e748f;
  --text-light: #9aa5b4;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #d4d5d6;
  
  /* Typography */
  --font-size-small: 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;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --border-radius: 0.75rem;
  --box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Global Styles */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: var(--font-size-3xl); }
h2 { font-size: var(--font-size-2xl); }
h3 { font-size: var(--font-size-xl); }
h4 { font-size: var(--font-size-lg); }

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

.text-muted {
  color: var(--text-light);
}

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

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

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  opacity: 0.1;
  z-index: 0;
}

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

.hero-title {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: var(--font-size-lg);
  margin-bottom: 2rem;
}

.hero-description {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

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

.section-title {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-description {
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.card-body {
  padding: 2rem;
}

/* Services Cards */
.service-card {
  height: 100%;
  border-left: 4px solid var(--primary-color);
}

.service-card:nth-child(2) { border-left-color: var(--secondary-color); }
.service-card:nth-child(3) { border-left-color: var(--accent-color); }
.service-card:nth-child(4) { border-left-color: var(--success-color); }
.service-card:nth-child(5) { border-left-color: var(--warning-color); }
.service-card:nth-child(6) { border-left-color: var(--primary-dark); }

.service-title {
  color: var(--primary-color);
  font-size: var(--font-size-lg);
  margin-bottom: 1rem;
}

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

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

.feature-icon {
  width: 4rem;
  height: 4rem;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.feature-item:nth-child(2) .feature-icon { background: var(--secondary-color); }
.feature-item:nth-child(3) .feature-icon { background: var(--accent-color); }
.feature-item:nth-child(4) .feature-icon { background: var(--success-color); }

/* Team Cards */
.team-card {
  text-align: center;
}

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

.team-name {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--text-secondary);
  font-style: italic;
}

/* Price Plans */
.price-card {
  position: relative;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  height: 100%;
}

.price-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

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

/* Reviews */
.review-card {
  padding: 2rem;
  background: var(--bg-light);
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
}

.review-text {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

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

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

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

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(89, 84, 223, 0.10);
}

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

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

/* Contact Info */
.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  width: 3rem;
  height: 3rem;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 1rem;
}

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

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

.footer p, .footer a {
  color: #bac0c5;
}

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

/* FAQ */
.faq-item {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--box-shadow);
}

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

.faq-answer {
  color: var(--text-secondary);
}

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

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

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

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

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

/* Timeline */
.timeline-item {
  border-left: 3px solid var(--primary-color);
  padding-left: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  left: -7.5px;
  top: 0.5rem;
}

/* Blog */
.blog-card {
  height: 100%;
  overflow: hidden;
}

.blog-image {
  height: 200px;
  object-fit: cover;
}

.blog-title {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* Career */
.career-item {
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: border-color 0.3s ease;
}

.career-item:hover {
  border-color: var(--primary-color);
}

/* Case Studies */
.casestudy-item {
  background: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 2rem;
  height: 100%;
}

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

/* Core Info */
.coreinfo-item {
  text-align: center;
  padding: 2rem 1rem;
}

.coreinfo-icon {
  width: 4rem;
  height: 4rem;
  background: var(--accent-color);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.5rem;
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--bg-light);
}

.breadcrumb-image {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

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

.bg-pattern {
  position: relative;
  overflow: hidden;
}

.bg-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><circle fill="%236366f1" fill-opacity="0.05" cx="30" cy="30" r="4"/></g></svg>');
  z-index: 0;
}

.bg-pattern > * {
  position: relative;
  z-index: 1;
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

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

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

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

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

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

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

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

.instagram-link:hover {
    background: rgba(228, 64, 95, 1);
    box-shadow: 0 8px 30px rgba(228, 64, 95, 0.4);
}

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

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

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

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