/* Main CSS for Virtual Summit Production Agency Template */

:root {
  /* Color Palette - 5 primary colors with variations */
  --primary-color: #5772e9;
  --secondary-color: #7153fb;
  --accent-color: #27d279;
  --warning-color: #f3a800;
  --danger-color: #ff4b5b;
  
  /* Light shades */
  --primary-light: #acbef5;
  --secondary-light: #bbaae4;
  --accent-light: #84ebb2;
  --warning-light: #ffef7c;
  --danger-light: #f2cbcd;
  
  /* Dark shades */
  --primary-dark: #3c26b0;
  --secondary-dark: #6e1d99;
  --accent-dark: #10723a;
  --warning-dark: #994909;
  --danger-dark: #cf422b;
  
  /* Neutral colors */
  --white: #FFFFFF;
  --light-gray: #F8FAFC;
  --gray: #7d869f;
  --dark-gray: #303e4a;
  --black: #0a0d1b;
  
  /* Typography */
  --font-size-sm: 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;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

/* Global Styles */
body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

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); }
h5 { font-size: var(--font-size-base); }
h6 { font-size: var(--font-size-sm); }

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

/* Links */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

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

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

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

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

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

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1.5rem;
    padding-top: 100px;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.hero-desc {
  font-size: var(--font-size-lg);
  color: var(--gray);
  margin-bottom: 2rem;
}

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

.section-title {
  font-size: var(--font-size-2xl);
  text-align: center;
  margin-bottom: 1rem;
  color: var(--black);
}

.section-subtitle {
  font-size: var(--font-size-lg);
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

/* Cards */
.custom-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  height: 100%;
}

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

/* Service Cards */
.service-card {
  text-align: center;
  margin-bottom: 2rem;
}

.service-card h4 {
  color: var(--black);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

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

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

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

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

.team-role {
  color: var(--primary-color);
  font-size: var(--font-size-sm);
}

/* Review Cards */
.review-card {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-color);
}

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

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

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

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

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

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 2rem;
}

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

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(60, 105, 240, 0.25);
}

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

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

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

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

.footer p {
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.footer a {
  color: var(--primary-light);
  text-decoration: none;
}

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

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

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

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

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

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

/* Breadcrumb */
.breadcrumb-container {
  padding: 1rem 0;
  background-color: var(--light-gray);
}

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

/* Price Plan Cards */
.price-card {
  text-align: center;
  border: 2px solid var(--primary-light);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.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-bottom: 1rem;
}

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

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

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 2rem;
}

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

.timeline-item::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1.5rem;
  width: 2px;
  height: calc(100% + 1rem);
  background: var(--primary-light);
}

.timeline-item:last-child::after {
  display: none;
}

/* Career Cards */
.career-card {
  border-left: 4px solid var(--accent-color);
  padding: 1.5rem;
  background: var(--light-gray);
  border-radius: 0 8px 8px 0;
  margin-bottom: 1rem;
}

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

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

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

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.blog-excerpt {
  color: var(--gray);
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
}

.blog-link:hover {
  color: var(--primary-dark);
}

/* Utility Classes */
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-accent { color: var(--accent-color); }
.bg-light-gray { background-color: var(--light-gray); }
.bg-primary-light { background-color: var(--primary-light); }

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: var(--font-size-2xl);
    padding-top: 100px;
}
  
  .hero-subtitle {
    font-size: var(--font-size-lg);
  }
  
  .section-title {
    font-size: var(--font-size-xl);
  }
  
  .price-amount {
    font-size: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline-item {
    padding-left: 1.5rem;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: var(--font-size-lg);
  }
}

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

/* Focus states for accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
} 


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