/* 
   Main Stylesheet for aiclothesremover.best
   Color scheme: Purple and lavender
*/

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f5ff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: #673ab7;
    transition: all 0.3s ease;
}

a:hover {
    color: #9575cd;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #512da8;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

section {
    padding: 4rem 0;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo-area {
    display: flex;
    align-items: center;
}

.logo {
    margin-right: 10px;
}

.site-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #673ab7;
}

nav ul {
    display: flex;
    list-style: none;
}

nav li {
    margin-left: 1.5rem;
}

nav a {
    font-weight: 500;
    padding: 0.5rem;
    border-radius: 5px;
}

nav a:hover {
    background-color: #ede7f6;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #673ab7 0%, #9c27b0 100%);
    color: white;
    text-align: center;
    padding: 6rem 0;
}

.hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.cta-button {
    display: inline-block;
    background-color: #ff5722;
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #f4511e;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.6);
    color: white;
}

/* Features Section */
.features {
    background-color: white;
    text-align: center;
}

.features h2 {
    margin-bottom: 3rem;
}

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

.feature-card {
    background-color: #f9f5ff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: #673ab7;
    margin-bottom: 1rem;
}

/* How It Works Section */
.how-it-works {
    background-color: #f9f5ff;
    text-align: center;
}

.how-it-works h2 {
    margin-bottom: 3rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step-number {
    background-color: #673ab7;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

/* Use Cases Section */
.use-cases {
    background-color: white;
    text-align: center;
}

.use-cases h2 {
    margin-bottom: 3rem;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.use-case {
    background-color: #f9f5ff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.use-case:hover {
    transform: translateY(-5px);
}

.use-case h3 {
    color: #673ab7;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq {
    background-color: #f9f5ff;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: #673ab7;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #9c27b0 0%, #673ab7 100%);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Footer */
footer {
    background-color: #512da8;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: 600;
    margin-left: 10px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
}

.footer-column {
    min-width: 200px;
    margin-right: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 3px;
    background-color: #9575cd;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #d1c4e9;
}

.footer-column a:hover {
    color: white;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: #d1c4e9;
    font-size: 0.9rem;
}

/* Responsive styles */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    nav {
        width: 100%;
        margin-top: 1rem;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav li {
        margin: 0 0.7rem;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .footer-top {
        flex-direction: column;
    }
    
    .footer-links {
        width: 100%;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
    
    .container {
        width: 95%;
    }
    
    nav ul {
        flex-wrap: wrap;
    }
    
    nav li {
        margin: 0.5rem;
    }
    
    .feature-card, .step, .use-case, .faq-item {
        padding: 1.5rem;
    }
    
    .features-grid, .steps, .use-cases-grid, .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        padding: 0.8rem 1.6rem;
        font-size: 1rem;
    }
    
    .footer-column {
        width: 100%;
        margin-right: 0;
    }
}
