/* CloudDash - Project Status Dashboard CSS */

:root {
  /* Color Palette - 5 primary colors with light/dark shades */
  --primary-color: #2563eb;
  --primary-light: #60a5fa;
  --primary-dark: #1d4ed8;
  
  --secondary-color: #64748b;
  --secondary-light: #94a3b8;
  --secondary-dark: #475569;
  
  --accent-color: #10b981;
  --accent-light: #34d399;
  --accent-dark: #059669;
  
  --warning-color: #f59e0b;
  --warning-light: #fbbf24;
  --warning-dark: #d97706;
  
  --danger-color: #ef4444;
  --danger-light: #f87171;
  --danger-dark: #dc2626;
  
  /* Additional shades */
  --light-bg: #f8fafc;
  --dark-bg: #1e293b;
  --text-light: #64748b;
  --text-dark: #1e293b;
}

/* Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  padding-top: 70px;
    overflow-x: hidden;
}

/* Typography - Conservative font sizes */
.navbar-brand {
  font-size: 1.25rem !important;
  font-weight: 600;
  color: var(--primary-color);
}

h1, .display-4 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--text-dark);
}

h3, h4, h5 {
  font-weight: 600;
  color: var(--text-dark);
}

p, .lead {
  font-size: 1rem;
  color: var(--text-light);
}

.lead {
  font-size: 1.125rem;
  font-weight: 500;
}

/* Header */
.navbar {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
}

.navbar-nav .nav-link {
  color: var(--text-light);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

/* Hero Section */
#hero {
  background: linear-gradient(135deg, var(--light-bg) 0%, rgba(37, 99, 235, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.shape-1 {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  transform: rotate(45deg);
}

.shape-2 {
  position: absolute;
  bottom: 20%;
  left: 10%;
  width: 150px;
  height: 150px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 30%;
}

#hero .container {
  position: relative;
  z-index: 2;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

/* Cards */
.card {
  border: none;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  border-radius: 0.75rem 0.75rem 0 0;
  height: 200px;
  object-fit: cover;
}

/* Services Section */
#services .card-title {
  color: var(--primary-color);
  font-weight: 600;
}

#services .text-primary {
  color: var(--primary-color) !important;
}

/* Features Section */
#features .fa-2x {
  color: var(--primary-color);
}

/* Process Section */
.process-number {
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
  font-weight: 700;
}

/* Timeline Section */
.timeline-date {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Team Section */
#team .card-img-top {
  height: 250px;
}

/* Reviews Section */
#reviews blockquote {
  font-style: italic;
  margin-bottom: 1rem;
}

#reviews .blockquote-footer {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* FAQ Section */
#faq .card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

#faq .card-text {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Gallery Section */
#gallery img {
  transition: transform 0.3s ease;
}

#gallery img:hover {
  transform: scale(1.05);
}

/* Contact Section */
#contact .form-control {
  border-radius: 0.5rem;
  border: 2px solid #e2e8f0;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

#contact .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

#contact .form-label {
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

/* Footer */
#footer {
  background-color: var(--dark-bg);
}

#footer h5 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 1rem;
}

#footer p,
#footer a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

#footer a:hover {
  color: #ffffff;
}

/* Icon Styles */
.fa-3x {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-success {
  color: var(--accent-color) !important;
}

/* Background Sections */
.bg-light {
  background-color: var(--light-bg) !important;
}

/* Breadcrumb */
.breadcrumb {
  background-color: transparent;
  padding: 0;
}

.breadcrumb-item img {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.breadcrumb-item:hover img {
  opacity: 1;
}

/* Animations - Respect prefers-reduced-motion */
@media (prefers-reduced-motion: no-preference) {
  .card,
  .btn,
  .nav-link,
  .form-control,
  #gallery img {
    transition: all 0.3s ease;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Utility Classes */
.shadow-sm {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.rounded {
  border-radius: 0.5rem;
}

.min-vh-100 {
  min-height: 100vh;
}

/* Custom spacing */
.py-5 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

/* Ensure proper Bootstrap grid usage */
.container {
  max-width: 1200px;
}

/* Additional page specific styles */
.card h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Icon alignment in feature sections */
.d-flex .fa-2x {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* Ensure consistent card heights */
.h-100 {
  height: 100%;
}

/* Form styling */
.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-label {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Contact info icons */
#contact .fa-2x {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Ensure proper text hierarchy */
#contact h5 {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
} 


/* Team Social Links - Neon Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.social-icons-grid {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 0.7;
}

.social-link:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px currentColor;
    box-shadow: 0 0 20px currentColor;
}

.facebook-link {
    border-color: #1877f2;
    color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

.linkedin-link {
    border-color: #0a66c2;
    color: #0a66c2;
    background: rgba(10, 102, 194, 0.1);
}

.instagram-link {
    border-color: #e4405f;
    color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

.x-link {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 22px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
