/* Virtual Coworking Space Template - Main Styles */

:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --primary-blue: #7768f6;
  --primary-purple: #9f69f1;
  --primary-teal: #15a196;
  --primary-rose: #ff4648;
  --primary-amber: #dcb319;
  
  /* Light and Dark Shades */
  --light-blue: #eaedff;
  --dark-blue: #4b3895;
  --light-purple: #ffffff;
  --dark-purple: #4617b7;
  --light-teal: #bbfaf4;
  --dark-teal: #1c5254;
  --light-rose: #ffcbd2;
  --dark-rose: #a8001f;
  --light-amber: #fffccc;
  --dark-amber: #a2431a;
  
  /* Neutral Colors */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #d0d1d5;
  --gray-800: #121822;
  --gray-900: #0a0d1a;
}

/* Global Styles */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Conservative Typography */
.navbar-brand {
  font-size: 10px !important;
  font-weight: 700;
  color: var(--primary-blue);
}

.navbar-nav .nav-link {
  font-size: 8px !important;
  padding: 0.25rem 0.5rem !important;
}

/* Dropdown menu styles */
.dropdown-menu {
  min-width: 8rem !important;
  font-size: 8px !important;
  padding: 0.25rem !important;
  margin: 0 !important;
}

.dropdown-item {
  padding: 0.25rem 0.5rem !important;
  white-space: normal !important;
}

.dropdown-menu.show {
  max-width: 150px !important;
  overflow-x: hidden !important;
}

h1 {
  font-size: 2.53rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.63rem;
  font-weight: 600;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-purple) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 120%;
  background: var(--primary-blue);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 200px;
}

/* Section Spacing */
.section-padding {
  padding: 5rem 0;
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 7px 6px -3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 23px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
}

/* Feature Cards */
.feature-card {
  background: var(--gray-50);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 6px -7px rgba(0, 0, 0, 0.1);
}

.team-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Review Cards */
.review-card {
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  height: 100%;
}

/* Price Plan Cards */
.price-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 6px 6px -1px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100%;
}

.price-card.featured {
  border: 2px solid var(--primary-blue);
  transform: scale(1.05);
}

/* Process Steps */
.process-step {
  background: var(--gray-50);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  position: relative;
}

.process-number {
  background: var(--primary-blue);
  color: white;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline Items */
.timeline-item {
  border-left: 3px solid var(--primary-blue);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 0;
  width: 12px;
  height: 12px;
  background: var(--primary-blue);
  border-radius: 50%;
}

/* Contact Form */
.contact-form {
  background: var(--gray-50);
  border-radius: 1rem;
  padding: 2rem;
}

.form-control {
  border-radius: 0.5rem;
  border: 1px solid var(--gray-200);
  padding: 0.75rem;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(115, 102, 239, 0.25);
}

/* FAQ Cards */
.faq-card {
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

/* Blog Cards */
.blog-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  height: 100%;
}

/* Gallery */
.gallery-item {
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1rem;
}

.gallery-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--gray-200);
  text-decoration: none;
}

.footer a:hover {
  color: var(--primary-blue);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
}

.btn-primary:hover {
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
}

.btn-outline-primary {
  color: var(--primary-blue);
  border-color: var(--primary-blue);
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
}

.btn-outline-primary:hover {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--gray-50);
}

.breadcrumb-image {
  width: 24px;
  height: 24px;
}

/* Utilities */
.text-primary-blue {
  color: var(--primary-blue);
}

.bg-light-blue {
  background-color: var(--light-blue);
}

.bg-light-purple {
  background-color: var(--light-purple);
}

.bg-light-teal {
  background-color: var(--light-teal);
} 


/* Team Social Links - Rounded Style */
.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;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    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;
    }
}
