/* Smart Wardrobe Organizer App - Main Styles */

/* Color Palette - 5 Primary Colors + Light/Dark Shades */
:root {
  /* Primary Colors */
  --primary-lavender: #E6E6FA;
  --primary-sage: #9CAF88;
  --primary-coral: #F08080;
  --primary-cream: #F5F5DC;
  --primary-steel: #4682B4;
  
  /* Light Shades */
  --light-lavender: #F0F0FF;
  --light-sage: #E8F5E8;
  --light-coral: #FFE4E1;
  --light-cream: #FAFAF2;
  --light-steel: #B0C4DE;
  
  /* Dark Shades */
  --dark-lavender: #D8BFD8;
  --dark-sage: #6B8E23;
  --dark-coral: #CD5C5C;
  --dark-cream: #F0E68C;
  --dark-steel: #2F4F4F;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --black: #333333;
  --gray-light: #F8F9FA;
  --gray-medium: #6C757D;
  
  /* Typography */
  --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-base: 16px;
  --font-size-small: 14px;
  --line-height-base: 1.6;
  
  /* Spacing */
  --section-padding: 80px 0;
  --section-padding-mobile: 60px 0;
}

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

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.1rem !important;
  font-weight: 600;
  color: var(--primary-steel);
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-steel);
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--dark-steel);
  margin-bottom: 0.875rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-steel);
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--dark-sage);
  margin-bottom: 0.625rem;
}

p {
  font-size: var(--font-size-base);
  color: var(--gray-medium);
  margin-bottom: 1rem;
}

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

/* Header & Navigation */
.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 0.75rem 0;
}

.navbar-nav .nav-link {
  color: var(--gray-medium);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-steel);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-lavender) 0%, var(--light-sage) 100%);
  display: flex;
  align-items: center;
  position: relative;
}

.hero-decorative {
  position: absolute;
  background: var(--primary-coral);
  border-radius: 50%;
  opacity: 0.1;
}

.hero-decorative-1 {
  width: 200px;
  height: 200px;
  top: 20%;
  right: 10%;
}

.hero-decorative-2 {
  width: 150px;
  height: 150px;
  bottom: 30%;
  left: 5%;
}

/* About Section */
.about-section {
  background-color: var(--light-cream);
}

.about-feature {
  text-align: center;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-steel);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background-color: var(--white);
}

.service-card {
  background-color: var(--light-lavender);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  border: none;
  transition: all 0.3s ease;
}

.service-card:hover {
  background-color: var(--primary-lavender);
  transform: translateY(-5px);
}

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

/* Features Section */
.features-section {
  background-color: var(--light-sage);
}

.feature-item {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.feature-item i {
  font-size: 2.5rem;
  color: var(--primary-coral);
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--light-cream);
}

.price-card {
  background-color: var(--white);
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  position: relative;
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: scale(1.05);
}

.price-card.featured {
  border: 3px solid var(--primary-steel);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-steel);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  color: var(--gray-medium);
  border-bottom: 1px solid var(--gray-light);
}

/* Team Section */
.team-section {
  background-color: var(--white);
}

.team-member {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--light-lavender);
  border-radius: 15px;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--white);
}

/* Reviews Section - Static Cards Only */
.reviews-section {
  background-color: var(--light-coral);
}

.review-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

/* Case Study Section */
.casestudy-section {
  background-color: var(--light-sage);
}

.case-study-item {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Process Section */
.process-section {
  background-color: var(--white);
}

.process-step {
  text-align: center;
  padding: 2rem;
  background-color: var(--light-cream);
  border-radius: 10px;
  margin-bottom: 2rem;
  position: relative;
}

.process-step::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-steel);
  color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.process-container {
  counter-reset: step-counter;
}

/* Timeline Section */
.timeline-section {
  background-color: var(--light-lavender);
}

.timeline-item {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary-coral);
}

/* Career Section */
.career-section {
  background-color: var(--light-sage);
}

.career-item {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--white);
}

.coreinfo-item {
  background-color: var(--light-cream);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Contact Form Section */
.contact-section {
  background-color: var(--light-coral);
}

.contact-form {
  background-color: var(--white);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--gray-light);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-steel);
  box-shadow: 0 0 0 0.2rem rgba(70, 130, 180, 0.25);
}

.btn-primary {
  background-color: var(--primary-steel);
  border-color: var(--primary-steel);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--dark-steel);
  border-color: var(--dark-steel);
  transform: translateY(-2px);
}

/* Blog Section */
.blog-section {
  background-color: var(--white);
}

.blog-post {
  background-color: var(--light-lavender);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-3px);
}

/* FAQ Section - Static Cards Only */
.faq-section {
  background-color: var(--light-sage);
}

.faq-item {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.faq-answer {
  color: var(--gray-medium);
}

/* Gallery Section */
.gallery-section {
  background-color: var(--gray-light);
  padding: 3rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Footer */
.footer {
  background-color: var(--dark-steel);
  color: var(--white);
  padding: 3rem 0 2rem;
}

.footer h5 {
  color: var(--light-steel);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--light-steel);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--primary-steel);
  padding-top: 2rem;
  margin-top: 2rem;
}

/* Breadcrumb */
.breadcrumb {
  background-color: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  height: 20px;
  width: auto;
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  :root {
    --font-size-base: 14px;
  }
  
  section {
    padding: var(--section-padding-mobile);
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .hero-section {
    min-height: 80vh;
  }
  
  .hero-decorative {
    display: none;
  }
  
  .about-feature,
  .service-card,
  .feature-item,
  .price-card,
  .team-member {
    margin-bottom: 1.5rem;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }
}

.hero-section h1 {
    padding-top: 175px;
}


/* Team Social Links - Gradient Style */
.team-social-links {
    margin-top: 20px;
    padding: 18px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
}

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

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.social-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.linkedin-link {
    background: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #21cbf3 0%, #2196f3 100%);
}

.instagram-link {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.x-link {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    position: relative;
}

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

.x-link:hover {
    background: linear-gradient(135deg, #414345 0%, #232526 100%);
}

.x-link i {
    display: none;
}

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