/*
 * Remote Code-Pairing Interview Platform
 * Main CSS - Bootstrap 5 Based Template
 * Conservative styling with pastel color palette
 */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-color: #7083fb;
  --primary-light: #a0b1ff;
  --primary-dark: #5646ce;
  
  --secondary-color: #00a4cf;
  --secondary-light: #4eefe9;
  --secondary-dark: #0086cb;
  
  --accent-color: #f2a617;
  --accent-light: #ffc23d;
  --accent-dark: #dd9900;
  
  --success-color: #21d184;
  --success-light: #67f0ce;
  --success-dark: #00986a;
  
  --danger-color: #df343b;
  --danger-light: #e5998d;
  --danger-dark: #f12b2f;
  
  /* Neutral Colors */
  --text-primary: #242f39;
  --text-secondary: #878e98;
  --text-light: #8d929d;
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-dark: #07090e;
  
  /* Typography */
  --font-family-base: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --line-height-base: 1.6;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --section-padding-sm: 3rem 0;
  
  /* Border Radius */
  --border-radius-base: 0.5rem;
  --border-radius-lg: 1rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  
  /* Transitions - DISABLED */
  --transition-base: none;
}

/* ===== GLOBAL STYLES ===== */
* {
  box-sizing: border-box;
}

/* ===== DISABLE ALL ANIMATIONS GLOBALLY ===== */
*, *::before, *::after {
  animation-duration: 0s !important;
  animation-delay: 0s !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0s !important;
  transition-delay: 0s !important;
  scroll-behavior: auto !important;
  transform: none !important;
}

body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== REDUCED MOTION SUPPORT ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

h1 {
  font-size: 2.59rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.53rem;
}

h4 {
  font-size: 1.27rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.lead {
  font-size: var(--font-size-lg);
  font-weight: 400;
}

/* ===== CONSERVATIVE NAVBAR STYLING ===== */
.navbar-brand {
  font-size: 1.36rem;
  font-weight: 700;
  color: var(--primary-color);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-primary);
}

.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(--primary-light) 0%, var(--secondary-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 275px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.63rem;
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: 1.33rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.hero-description {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* ===== DECORATIVE SHAPES ===== */
.hero-shape {
  position: absolute;
  opacity: 0.1;
  z-index: 1;
}

.hero-shape-1 {
  top: 10%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: var(--primary-color);
  border-radius: 50%;
}

.hero-shape-2 {
  bottom: 10%;
  left: 10%;
  width: 150px;
  height: 150px;
  background: var(--secondary-color);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* ===== SECTION STYLING ===== */
.section {
  padding: var(--section-padding);
}

.section-sm {
  padding: var(--section-padding-sm);
}

.section-title {
  font-size: 2.57rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: var(--font-size-lg);
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.section-description {
  text-align: center;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* ===== CARDS ===== */
.card {
  border: none;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.card:hover {
  box-shadow: var(--shadow-lg);
}

.card-header {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
}

.card-body {
  padding: 2rem;
}

.card-footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
}

/* ===== BUTTONS ===== */
.btn {
  font-weight: 500;
  border-radius: var(--border-radius-base);
  padding: 0.75rem 1.5rem;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* ===== FORMS ===== */
.form-control {
  border: 1px solid #cacee0;
  border-radius: var(--border-radius-base);
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(107, 97, 222, 0.25);
}

.form-label {
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.55rem;
}

/* ===== PRICING CARDS ===== */
.pricing-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--primary-color);
  color: white;
  padding: 0.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.91rem;
}

.pricing-card.featured .card-header {
  padding-top: 3rem;
}

.pricing-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.pricing-currency {
  font-size: 1.55rem;
  vertical-align: top;
}

.pricing-period {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 400;
}

/* ===== TEAM CARDS ===== */
.team-card {
  text-align: center;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
}

.team-name {
  font-size: 1.29rem;
  font-weight: 600;
  margin-bottom: 0.72rem;
  color: var(--text-primary);
}

.team-role {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
  margin-bottom: 1rem;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  height: 100%;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.65rem;
  color: var(--text-secondary);
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-primary);
}

/* ===== FAQ CARDS ===== */
.faq-card {
  margin-bottom: 1rem;
  border-radius: var(--border-radius-base);
}

.faq-question {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.73rem;
}

.faq-answer {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--bg-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: white;
  margin-bottom: 1rem;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer a:hover {
  color: white;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 2rem 0 1rem;
}

/* ===== BREADCRUMBS ===== */
.breadcrumb {
  background-color: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

/* ===== UTILITIES ===== */
.text-gradient {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
}

.shadow-custom {
  box-shadow: var(--shadow-lg);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-section {
    min-height: 80vh;
  }
  
  .section {
    padding: 3rem 0;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.80rem;
  }
  
  .section-title {
    font-size: 1.88rem;
  }
  
  .pricing-amount {
    font-size: 2rem;
  }
} 


/* Team Social Links - Rounded Style - NO ANIMATIONS */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    display: none;
}

.social-link:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
