/* Virtual Summit Production Agency - Main CSS */

/* ===== ROOT VARIABLES ===== */
:root {
  /* Primary Color Palette - 5 main colors with shades */
  --primary-blue: #5d52da;
  --primary-blue-light: #9db6f1;
  --primary-blue-dark: #6445c8;
  
  --primary-purple: #8a4dde;
  --primary-purple-light: #d1cfff;
  --primary-purple-dark: #8c54f8;
  
  --primary-teal: #1bb0a1;
  --primary-teal-light: #78fcf8;
  --primary-teal-dark: #066365;
  
  --primary-rose: #ff3b7d;
  --primary-rose-light: #f7898f;
  --primary-rose-dark: #f12c72;
  
  --primary-amber: #f4b300;
  --primary-amber-light: #fcb33e;
  --primary-amber-dark: #ee9f1e;
  
  /* Neutral Colors */
  --neutral-50: #f8fafc;
  --neutral-100: #f1f5f9;
  --neutral-200: #cedcf0;
  --neutral-300: #a9becf;
  --neutral-600: #57647e;
  --neutral-800: #243850;
  --neutral-900: #181f3a;
  
  /* Typography */
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --element-margin: 1.5rem;
  
  /* Transitions */
  --transition-base: all 0.3s ease;
  --transition-fast: all 0.15s ease;
}

/* ===== GLOBAL STYLES ===== */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--neutral-800);
  background-color: var(--neutral-50);
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    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;
  margin-bottom: var(--element-margin);
}

h1 {
  font-size: var(--font-size-3xl);
  color: var(--neutral-900);
}

h2 {
  font-size: var(--font-size-2xl);
  color: var(--neutral-900);
}

h3 {
  font-size: var(--font-size-xl);
  color: var(--neutral-800);
}

h4 {
  font-size: var(--font-size-lg);
  color: var(--neutral-800);
}

.navbar-brand {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--primary-blue);
}

p {
  font-size: var(--font-size-base);
  margin-bottom: var(--element-margin);
}

.lead {
  font-size: var(--font-size-lg);
  font-weight: 400;
}

/* ===== SECTIONS ===== */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--neutral-600);
  font-size: var(--font-size-lg);
  margin-bottom: 1rem;
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--primary-purple-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 275px;
}

.hero-decorative {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.1;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  background: var(--primary-teal);
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* ===== CARDS ===== */
.card {
  border: none;
  border-radius: 0.75rem;
  box-shadow: 0 6px 6px -1px rgba(0, 0, 0, 0.1);
  transition: var(--transition-base);
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 15px -3px rgba(0, 0, 0, 0.1);
}

.card-header {
  background: var(--neutral-50);
  border-bottom: 1px solid var(--neutral-200);
  padding: 1.5rem;
}

.card-body {
  padding: 1.5rem;
}

.card-footer {
  background: var(--neutral-50);
  border-top: 1px solid var(--neutral-200);
  padding: 1.5rem;
}

/* ===== SERVICES SECTION ===== */
.service-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 6px 6px -1px rgba(0, 0, 0, 0.1);
  transition: var(--transition-base);
  height: 100%;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 19px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.88rem;
  color: var(--primary-blue);
}

.service-price {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-blue);
  margin-top: 1rem;
}

/* ===== TEAM SECTION ===== */
.team-member {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 6px 6px -1px rgba(0, 0, 0, 0.1);
  transition: var(--transition-base);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 11px 15px -3px rgba(0, 0, 0, 0.1);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 9px solid var(--primary-blue-light);
}

.team-name {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 0.70rem;
}

.team-role {
  color: var(--neutral-600);
  font-size: var(--font-size-sm);
}

/* ===== TESTIMONIALS/REVIEWS SECTION ===== */
.review-card {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 8px 6px -1px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.review-text {
  font-style: italic;
  color: var(--neutral-600);
  margin-bottom: 1.72rem;
}

.review-author {
  font-weight: 600;
  color: var(--neutral-900);
}

/* ===== FAQ SECTION ===== */
.faq-card {
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 5px 7px -1px rgba(0, 0, 0, 0.1);
}

.faq-question {
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 1.02rem;
}

.faq-answer {
  color: var(--neutral-600);
  line-height: 1.6;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.form-control {
  border-radius: 0.5rem;
  border: 1px solid var(--neutral-300);
  padding: 0.75rem 1rem;
  font-size: var(--font-size-base);
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(96, 83, 255, 0.25);
}

.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  border-radius: 0.5rem;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.btn-primary:hover {
  background-color: var(--primary-blue-dark);
  border-color: var(--primary-blue-dark);
}

/* ===== GALLERY SECTION ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: var(--transition-base);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 11px 15px -3px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--neutral-900);
  color: var(--neutral-300);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: white;
  margin-bottom: 1rem;
}

.footer a {
  color: var(--neutral-300);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer a:hover {
  color: var(--primary-blue-light);
}

.footer-copyright {
  border-top: 1px solid var(--neutral-800);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
  color: var(--neutral-600);
}

/* ===== UTILITY CLASSES ===== */
.text-primary-blue { color: var(--primary-blue); }
.text-primary-purple { color: var(--primary-purple); }
.text-primary-teal { color: var(--primary-teal); }
.text-primary-rose { color: var(--primary-rose); }
.text-primary-amber { color: var(--primary-amber); }

.bg-primary-blue { background-color: var(--primary-blue); }
.bg-primary-purple { background-color: var(--primary-purple); }
.bg-primary-teal { background-color: var(--primary-teal); }
.bg-primary-rose { background-color: var(--primary-rose); }
.bg-primary-amber { background-color: var(--primary-amber); }

.bg-light-gradient {
  background: linear-gradient(135deg, var(--neutral-50) 0%, var(--neutral-100) 100%);
}

.shadow-custom {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.rounded-custom {
  border-radius: 0.75rem;
}

/* ===== BREADCRUMB STYLES ===== */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--neutral-100);
}

.breadcrumb-image {
  width: 24px;
  height: 24px;
  object-fit: contain;
} 


/* 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;
}

.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;
    }
}
