/* Bootstrap 5 CDN Integration */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Color Palette for Smart Wardrobe Organizer */
:root {
  --primary-color: #9d88c3;          /* Soft purple */
  --secondary-color: #afd4d3;        /* Light teal */
  --accent-color: #e5bda0;           /* Warm peach */
  --neutral-color: #ededed;          /* Light lavender gray */
  --highlight-color: #e9d0b1;        /* Soft orange */
  
  /* Light/Dark variations */
  --primary-light: #b1aae1;
  --primary-dark: #5f54a9;
  --secondary-light: #d5f5fc;
  --secondary-dark: #72c1c0;
  --accent-light: #ffe3d9;
  --accent-dark: #fcbb78;
  --neutral-light: #F5F5F8;
  --neutral-dark: #b3b2c4;
  
  /* Typography */
  --font-family: 'Inter', sans-serif;
  --font-size-small: 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;
  
  /* Spacing */
  --section-padding: 80px 0;
  --card-padding: 2rem;
  --border-radius: 12px;
  --border-radius-lg: 20px;
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: #4a4a4a;
  font-size: var(--font-size-base);
  overflow-x: hidden;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    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.3;
  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); }

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

/* Conservative navbar brand sizing */
.navbar-brand {
  font-size: var(--font-size-lg) !important;
  font-weight: 600;
}

/* Header Styles */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #2d2d2d;
  margin: 0 0.5rem;
  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(--neutral-light) 0%, var(--secondary-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 40%;
  height: 200%;
  background: var(--primary-color);
  opacity: 0.1;
  border-radius: 50%;
  transform: rotate(15deg);
}

.hero-content {
  z-index: 2;
  position: relative;
    padding-top: 100px;
}

.hero-title {
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  color: var(--secondary-dark);
  font-size: var(--font-size-lg);
  margin-bottom: 1rem;
}

.hero-desc {
  color: #585353;
  font-size: var(--font-size-base);
  max-width: 500px;
}

/* Section Styling */
section {
  padding: var(--section-padding);
}

.section-title {
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--secondary-dark);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-desc {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: #6f6f6f;
}

/* Cards */
.service-card, .feature-card, .price-card, .team-card, .review-card, .case-card, .process-card, .timeline-card, .career-card, .core-card {
  background: white;
  border-radius: var(--border-radius);
  padding: var(--card-padding);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--neutral-color);
  height: 100%;
}

.service-card:hover, .feature-card:hover, .price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.service-card img, .feature-card img, .case-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
}

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

/* Team Cards */
.team-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

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

.team-member-role {
  color: var(--secondary-dark);
  font-size: var(--font-size-small);
}

/* Review Cards */
.review-card {
  background: var(--neutral-light);
  border-left: 4px solid var(--primary-color);
}

.review-author {
  color: var(--primary-dark);
  font-weight: 600;
  margin-top: 1rem;
}

.review-text {
  font-style: italic;
  color: #5b5b5b;
}

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

.faq-question {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: #777777;
  margin: 0;
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: var(--card-padding);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid var(--neutral-color);
  border-radius: var(--border-radius);
  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(154, 136, 199, 0.25);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  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(--primary-dark);
  color: white;
  padding: 3rem 0 1rem;
}

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

.footer p, .footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  margin-top: 2rem;
}

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

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius);
  transition: transform 0.3s ease;
}

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

/* Blog Grid */
#blog_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

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

.blog-card-body {
  padding: 1.5rem;
}

.blog-title {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.blog-excerpt {
  color: #797575;
  margin-bottom: 1rem;
}

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

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

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

.breadcrumb-image {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
}

/* Space Page */
#space {
  min-height: 70vh;
  background: var(--neutral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-lg);
  margin: 2rem 0;
}

/* Additional Pages Sections */
.add-page-section {
  padding: 4rem 0;
}

.add-page-section:nth-child(even) {
  background-color: var(--neutral-light);
}

.add-page-title {
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: 1rem;
}

.add-page-subtitle {
  color: var(--secondary-dark);
  text-align: center;
  margin-bottom: 0.5rem;
}

.add-page-desc {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: #727171;
}

.add-page-element {
  background: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 1rem;
}

.add-page-element-title {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.add-page-element-desc {
  color: #646161;
  margin: 0;
}

/* Utilities */
.text-primary-custom { color: var(--primary-color); }
.text-secondary-custom { color: var(--secondary-color); }
.bg-primary-custom { background-color: var(--primary-color); }
.bg-secondary-custom { background-color: var(--secondary-color); }
.bg-neutral-light { background-color: var(--neutral-light); }

/* Responsive Helpers */
@media (max-width: 768px) {
  .hero-section {
    text-align: center;
    padding: 2rem 0;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  h1 { font-size: var(--font-size-2xl); }
  h2 { font-size: var(--font-size-xl); }
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.9);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 1);
    box-shadow: 0 8px 30px rgba(228, 64, 95, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
