/* ==================================
   İkinci Şans Gardırobu - Style
   ================================== */

/* 1. General & Setup
   ---------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;700&family=Montserrat:wght@400;500;700&display=swap');

:root {
    --color-primary: #6A8EAE; /* Dusty Blue */
    --color-accent: #E8A09A;  /* Soft Coral */
    --color-text: #2C3E50;    /* Dark Slate Blue */
    --color-bg: #FDFBF8;      /* Creamy White */
    --color-white: #FFFFFF;
    --font-heading: 'Lora', serif;
    --font-body: 'Montserrat', sans-serif;
    --shadow-soft: 0 5px 25px rgba(44, 62, 80, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    font-size: 16px;
}

.cloth-container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
}

/* 2. Reusable Components
   ---------------------------------- */
.cloth-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--color-accent);
    color: var(--color-white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--color-accent);
}

.cloth-btn:hover {
    background-color: transparent;
    color: var(--color-accent);
}

.cloth-section {
    padding: 100px 0;
    position: relative;
}

.cloth-section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 60px;
}

/* Wave Separator */
.cloth-wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}
.cloth-wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 90px;
}
.cloth-wave-divider .cloth-wave-fill {
    fill: var(--color-bg);
}


/* 3. Header & Navigation
   ---------------------------------- */
.cloth-header {
    background: rgba(253, 251, 248, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    border-bottom: 1px solid rgba(106, 142, 174, 0.1);
}
.cloth-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cloth-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--color-primary);
    text-decoration: none;
}
.cloth-nav-menu {
    display: flex;
    gap: 35px;
    list-style: none;
}
.cloth-nav-menu a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}
.cloth-nav-menu a:hover,
.cloth-nav-menu a.active {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}
.cloth-nav-toggle-input,
.cloth-nav-toggle-label {
    display: none;
}

/* 4. Hero Section
   ---------------------------------- */
.cloth-hero {
    padding: 80px 0;
    text-align: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('ikinci/6.jpg') no-repeat center center/cover;
    background-color: var(--color-primary); /* Fallback */
}
.cloth-hero-content {
    background: rgba(253, 251, 248, 0.85);
    padding: 50px;
    border-radius: 20px;
    max-width: 800px;
}
.cloth-hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 20px;
}
.cloth-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* 5. Sections Styling
   ---------------------------------- */

/* How it Works Section */
.cloth-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}
.cloth-process-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}
.cloth-process-card-icon {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 20px;
}
.cloth-process-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* What We Accept Section */
#ne-aliyoruz {
    background-color: var(--color-white);
}
.cloth-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.cloth-item-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
}
.cloth-item-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.cloth-item-card:hover img {
    transform: scale(1.05);
}
.cloth-item-card-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(44, 62, 80, 0.8), transparent);
    color: var(--color-white);
    padding: 40px 20px 20px;
    font-size: 1.4rem;
    font-weight: 700;
}

/* Mission Section */
.cloth-mission-container {
    display: flex;
    align-items: center;
    gap: 60px;
}
.cloth-mission-image {
    flex: 1;
}
.cloth-mission-image img {
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    width: 100%;
}
.cloth-mission-content {
    flex: 1;
}
.cloth-mission-content .cloth-section-title {
    text-align: left;
}

/* FAQ Section */
#sss {
    background-color: var(--color-white);
}
.cloth-faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.cloth-faq-item {
    border-bottom: 1px solid rgba(106, 142, 174, 0.2);
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.cloth-faq-question {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-primary);
}

/* Contact Section */
.cloth-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}
.cloth-contact-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}
.cloth-contact-form {
    background: var(--color-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}
.cloth-form-group {
    margin-bottom: 20px;
}
.cloth-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}
.cloth-form-group input, .cloth-form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
}

/* 6. Footer
   ---------------------------------- */
.cloth-footer {
    background-color: var(--color-text);
    color: var(--color-bg);
    padding: 60px 0 30px;
    text-align: center;
}
.cloth-footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-white);
    text-decoration: none;
    margin-bottom: 20px;
    display: inline-block;
}
.cloth-footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
}
.cloth-footer-links a {
    color: var(--color-bg);
    text-decoration: none;
}
.cloth-footer-links a:hover {
    color: var(--color-accent);
}
.cloth-copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* 7. Responsive Design
   ---------------------------------- */
@media (max-width: 1024px) {
    .cloth-section-title { font-size: 2.4rem; }
    .cloth-hero-title { font-size: 3rem; }
}

@media (max-width: 768px) {
    body { font-size: 15px; }
    .cloth-section { padding: 80px 0; }
    .cloth-section-title { font-size: 2rem; }
    .cloth-hero-title { font-size: 2.5rem; }
    
    /* Mobile Navigation */
    .cloth-nav-toggle-label {
        display: block;
        width: 30px;
        height: 25px;
        position: relative;
        cursor: pointer;
        z-index: 2;
    }
    .cloth-nav-toggle-label span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--color-text);
        position: absolute;
        transition: all 0.3s ease;
    }
    .cloth-nav-toggle-label span:nth-child(1) { top: 0; }
    .cloth-nav-toggle-label span:nth-child(2) { top: 11px; }
    .cloth-nav-toggle-label span:nth-child(3) { bottom: 0; }
    
    .cloth-nav-menu {
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        height: 100vh;
        background: var(--color-bg);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        padding: 100px 40px;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
    }
    .cloth-nav-toggle-input:checked ~ .cloth-nav-menu {
        transform: translateX(0);
    }
    .cloth-nav-toggle-input:checked ~ .cloth-nav-toggle-label {
        position: fixed;
        right: 5%; /* Align with container padding */
    }
    .cloth-nav-toggle-input:checked ~ .cloth-nav-toggle-label span:nth-child(1) { transform: rotate(45deg); top: 11px; }
    .cloth-nav-toggle-input:checked ~ .cloth-nav-toggle-label span:nth-child(2) { opacity: 0; }
    .cloth-nav-toggle-input:checked ~ .cloth-nav-toggle-label span:nth-child(3) { transform: rotate(-45deg); top: 11px; }

    /* Section Grids */
    .cloth-process-grid { grid-template-columns: 1fr; }
    .cloth-mission-container { flex-direction: column; }
    .cloth-contact-wrapper { grid-template-columns: 1fr; text-align: center; }
    .cloth-mission-content .cloth-section-title { text-align: center; }
}