/* aiclothingremover.best - Main Stylesheet */
/* Using a teal/purple color scheme that's distinct from other sites */

:root {
  /* Primary colors - teal and purple instead of yellow/orange or red/orange used previously */
  --color-primary: #44B2AE;   /* Teal */
  --color-secondary: #8C43FF; /* Purple */
  --color-dark: #263238;      /* Dark blue-gray */
  --color-light: #E0F7FA;     /* Light teal */
  --color-gray: #F5F7F9;      /* Very light gray with blue tint */
  --color-text: #263238;      /* Dark text color */
  --color-text-light: #455A64; /* Medium-dark text color */
  --color-white: #ffffff;
  
  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-size-base: 1rem;
  --line-height-base: 1.6;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  
  /* Border radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.07);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background-color: var(--color-white);
}

img, svg {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-secondary);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--color-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: var(--space-lg);
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-md);
}

.section-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl) auto;
  color: var(--color-text-light);
  font-size: 1.1rem;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
}

.btn-primary:hover {
  background: var(--color-secondary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background: rgba(68, 178, 174, 0.1);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Header & Navigation */
header {
  padding: var(--space-md) 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-dark);
}

.logo-icon {
  width: 30px;
  height: 30px;
  margin-right: var(--space-sm);
  color: var(--color-primary);
}

nav ul {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
}

nav a {
  color: var(--color-text);
  font-weight: 600;
}

nav a:hover {
  color: var(--color-primary);
}

.nav-cta {
  background: var(--color-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-md);
}

.nav-cta:hover {
  background: var(--color-secondary);
  color: white;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-text);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hero Section with Unique Shape Divider */
.hero {
  padding: var(--space-xl) 0 calc(var(--space-xl) * 2);
  background: linear-gradient(135deg, rgba(68, 178, 174, 0.1) 0%, rgba(140, 67, 255, 0.1) 100%);
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-content {
  animation: fadeIn 1s ease-out;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.hero-image {
  display: flex;
  justify-content: center;
  animation: slideIn 1s ease-out;
}

.hero-svg {
  width: 100%;
  max-width: 400px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
  transform: rotateY(180deg);
}

/* Features Section */
.features {
  padding: var(--space-xl) 0;
  background-color: var(--color-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.feature-box {
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  background-color: var(--color-gray);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--border-radius-full);
  background-color: rgba(68, 178, 174, 0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

/* How It Works Section */
.how-it-works {
  padding: var(--space-xl) 0;
  background-color: var(--color-gray);
}

.steps-container {
  max-width: 900px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-xl);
  transition: transform 0.3s ease;
}

.step-item:hover {
  transform: translateX(5px);
}

.step-number {
  background-color: var(--color-primary);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-right: var(--space-lg);
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

/* Gallery Section */
.gallery {
  padding: var(--space-xl) 0;
  background-color: var(--color-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.gallery-item {
  text-align: center;
}

.gallery-before-after {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.gallery-before, .gallery-after {
  flex: 1;
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.image-placeholder {
  display: block;
  width: 100%;
}

.label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 3px 8px;
  border-radius: var(--border-radius-sm);
  font-size: 0.85rem;
}

/* CTA Section */
.cta-section {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  text-align: center;
  color: white;
}

.cta-section h2, .cta-section p {
  color: white;
}

.cta-section .btn-primary {
  background: white;
  color: var(--color-primary);
  margin-top: var(--space-md);
}

.cta-section .btn-primary:hover {
  background: var(--color-light);
  color: var(--color-primary);
}

/* Footer */
footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
  gap: var(--space-xl);
}

.footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-lg);
}

.footer-brand .logo-icon {
  color: var(--color-primary);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.footer-col {
  min-width: 150px;
}

.footer-col h3 {
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
}

.footer-col a {
  display: block;
  color: var(--color-white);
  opacity: 0.7;
  margin-bottom: var(--space-sm);
}

.footer-col a:hover {
  opacity: 1;
  color: var(--color-primary);
}

.footer-bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
  }
  
  .hero-image {
    order: -1;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: var(--shadow-md);
    padding: var(--space-lg);
  }
  
  .footer-top {
    flex-direction: column;
    gap: var(--space-lg);
  }
  
  .footer-links {
    gap: var(--space-lg);
  }
  
  .hero {
    padding-bottom: var(--space-xl);
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .shape-divider svg {
    height: 40px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .gallery-before-after {
    flex-direction: column;
  }
}
