/* 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: 225px;
}


/* 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);
}

.instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

.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;
    }
}
