/* ===================================
   CLOTH STREET - STYLES.CSS
   =================================== */

/* --- CSS VARIABLES --- */
:root {
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    
    --text-dark: #0f172a;
    --text-gray: #64748b;
    --text-white: #ffffff;
    
    --gold: #d97706;
    --gold-hover: #b45309;
    
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --radius: 16px;
}

/* --- RESET --- */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html { 
    scroll-behavior: smooth; 
}

body { 
    font-family: var(--font-sans); 
    color: var(--text-dark); 
    background: var(--bg-white); 
    line-height: 1.6; 
    overflow-x: hidden; 
}

img { 
    max-width: 100%; 
    display: block; 
}

a { 
    text-decoration: none; 
    transition: 0.3s; 
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 { 
    font-family: var(--font-serif); 
    font-weight: 700; 
    line-height: 1.2; 
    color: var(--text-dark); 
}

h1 { 
    font-size: 3.5rem; 
    margin-bottom: 1.5rem; 
}

h2 { 
    font-size: 2.5rem; 
    margin-bottom: 1rem; 
}

p { 
    color: var(--text-gray); 
    margin-bottom: 1.5rem; 
}

.text-gold { 
    color: var(--gold); 
}

.text-italic { 
    font-style: italic; 
}

.text-white { 
    color: var(--text-white); 
}

/* --- BUTTONS --- */
.btn {
    display: inline-block; 
    padding: 14px 32px; 
    border-radius: 50px; 
    font-weight: 600; 
    cursor: pointer; 
    border: none; 
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary { 
    background: var(--gold); 
    color: white; 
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3); 
}

.btn-primary:hover { 
    background: var(--gold-hover); 
    transform: translateY(-2px); 
}

.btn-outline { 
    background: transparent; 
    border: 2px solid var(--text-dark); 
    color: var(--text-dark); 
}

.btn-outline:hover { 
    background: var(--text-dark); 
    color: white; 
}

.btn-dark { 
    background: var(--bg-dark); 
    color: white; 
    width: 100%; 
}

.btn-dark:hover { 
    background: var(--gold); 
}

/* --- LAYOUT --- */
.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.section { 
    padding: 6rem 0; 
}

.bg-light { 
    background: var(--bg-light); 
}

.bg-dark { 
    background: var(--bg-dark); 
    color: var(--text-white); 
}

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

/* --- NAVBAR --- */
.navbar {
    position: fixed; 
    top: 0; 
    width: 100%; 
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px); 
    border-bottom: 1px solid #e2e8f0; 
    z-index: 1000;
    padding: 15px 0; 
    transition: 0.3s;
}

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

.logo { 
    font-family: var(--font-serif); 
    font-size: 1.8rem; 
    font-weight: 700; 
    color: var(--text-dark); 
}

.nav-links { 
    display: flex; 
    gap: 30px; 
}

.nav-links a { 
    color: var(--text-gray); 
    font-weight: 500; 
    font-size: 0.95rem; 
}

.nav-links a:hover { 
    color: var(--gold); 
}

.mobile-menu-btn { 
    display: none; 
    font-size: 1.5rem; 
    cursor: pointer; 
}

/* --- HERO --- */
.hero { 
    padding: 10rem 0 5rem; 
    text-align: center; 
    position: relative; 
    overflow: hidden; 
}

.hero-badge {
    display: inline-block; 
    padding: 8px 20px; 
    background: #fffbeb; 
    color: var(--gold);
    border: 1px solid #fde68a; 
    border-radius: 50px; 
    font-size: 0.8rem; 
    font-weight: 700;
    text-transform: uppercase; 
    letter-spacing: 1px; 
    margin-bottom: 2rem;
}

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

.cta-group { 
    display: flex; 
    justify-content: center; 
    gap: 20px; 
    margin-bottom: 4rem; 
}

.hero-image-container {
    position: relative; 
    max-width: 1000px; 
    margin: 0 auto; 
    border-radius: 20px; 
    overflow: hidden; 
    box-shadow: var(--shadow);
}

.hero-image-container::after {
    content: ''; 
    position: absolute; 
    inset: 0;
    background: linear-gradient(to top, rgba(255,255,255,1) 0%, transparent 30%);
}

.float-card {
    position: absolute; 
    bottom: 30px; 
    left: 30px; 
    background: rgba(255,255,255,0.9);
    padding: 15px 25px; 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    gap: 15px;
    box-shadow: var(--shadow); 
    border: 1px solid #e2e8f0; 
    z-index: 10;
}

.icon-circle { 
    width: 40px; 
    height: 40px; 
    background: #dcfce7; 
    color: #16a34a; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

.badge-content span { 
    display: block; 
    font-size: 0.8rem; 
    font-weight: 700; 
}

.badge-label { 
    color: var(--text-gray); 
    text-transform: uppercase; 
    font-size: 0.7rem !important; 
}

/* --- PROBLEM SECTION --- */
.grid-2 { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 4rem; 
    align-items: center; 
}

.problem-list { 
    margin-top: 2rem; 
}

.problem-item { 
    display: flex; 
    gap: 1.5rem; 
    margin-bottom: 2rem; 
}

.icon-box { 
    width: 50px; 
    height: 50px; 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.2rem; 
    flex-shrink: 0; 
}

.icon-red { 
    background: #fee2e2; 
    color: #dc2626; 
}

.solution-box { 
    background: white; 
    padding: 3rem; 
    border-radius: 24px; 
    box-shadow: var(--shadow); 
    border: 1px solid #fde68a; 
}

.solution-box h3 { 
    color: var(--gold); 
    margin-bottom: 1.5rem; 
}

.check-list li { 
    list-style: none; 
    margin-bottom: 1rem; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    font-weight: 600; 
}

.check-list i { 
    color: #16a34a; 
}

/* --- FEATURES (Bento Grid) --- */
.section-header { 
    text-align: center; 
    max-width: 700px; 
    margin: 0 auto 4rem; 
}

.bento-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 1.5rem; 
}

.card { 
    background: var(--bg-light); 
    padding: 2.5rem; 
    border-radius: 20px; 
    border: 1px solid #e2e8f0; 
    transition: 0.3s; 
}

.card:hover { 
    border-color: var(--gold); 
    transform: translateY(-5px); 
    box-shadow: var(--shadow); 
}

.card-wide { 
    grid-column: span 2; 
    background: white; 
}

.card-tall { 
    grid-row: span 2; 
    background: var(--bg-dark); 
    color: white; 
}

.card-tall h3, .card-tall p { 
    color: white; 
}

.card-tall p { 
    opacity: 0.8; 
}

.card-icon { 
    width: 50px; 
    height: 50px; 
    border-radius: 10px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.5rem; 
    margin-bottom: 1.5rem; 
}

.icon-gold { 
    background: #fef3c7; 
    color: var(--gold); 
}

.icon-white { 
    background: rgba(255,255,255,0.1); 
    color: white; 
}

.icon-green { 
    background: #dcfce7; 
    color: #16a34a; 
}

.icon-purple { 
    background: #f3e8ff; 
    color: #9333ea; 
}

/* --- FLOW --- */
.flow-steps { 
    display: flex; 
    justify-content: space-between; 
    position: relative; 
    margin-top: 3rem; 
}

.flow-line { 
    position: absolute; 
    top: 30px; 
    left: 0; 
    width: 100%; 
    height: 2px; 
    background: rgba(255,255,255,0.1); 
    z-index: 0; 
}

.step { 
    position: relative; 
    z-index: 1; 
    text-align: center; 
    flex: 1; 
}

.step-num { 
    width: 60px; 
    height: 60px; 
    background: var(--bg-darker); 
    border: 2px solid rgba(255,255,255,0.2); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 1.5rem; 
    font-size: 1.5rem; 
    font-weight: 700; 
    color: white; 
    transition: 0.3s; 
}

.step:hover .step-num { 
    border-color: var(--gold); 
    color: var(--gold); 
}

.step h3 { 
    color: white; 
    font-size: 1.2rem; 
}

.step p { 
    color: #94a3b8; 
    font-size: 0.9rem; 
}

/* --- TEAM --- */
.team-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 2rem; 
}

.member { 
    text-align: center; 
    background: white; 
    padding: 2rem; 
    border-radius: 16px; 
    border: 1px solid #e2e8f0; 
    transition: 0.3s; 
}

.member:hover { 
    border-color: var(--gold); 
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.avatar { 
    width: 100px; 
    height: 100px; 
    border-radius: 50%; 
    margin: 0 auto 1rem; 
    object-fit: cover; 
    background: #eee; 
    border: 2px solid var(--gold); 
}

.role { 
    color: var(--gold); 
    font-size: 0.85rem; 
    font-weight: 600; 
    text-transform: uppercase; 
    margin-top: 0.5rem; 
}

/* --- FAQ --- */
.faq-wrapper { 
    max-width: 800px; 
    margin: 0 auto; 
}

.faq-item { 
    background: white; 
    border: 1px solid #e2e8f0; 
    border-radius: 12px; 
    margin-bottom: 1rem; 
    overflow: hidden; 
    transition: 0.3s;
}

.faq-head { 
    padding: 1.5rem; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    cursor: pointer; 
    font-weight: 600; 
    font-size: 1.1rem; 
}

.faq-body { 
    padding: 0 1.5rem 1.5rem; 
    display: none; 
    color: var(--text-gray); 
}

.faq-item.open .faq-body { 
    display: block; 
}

.faq-item.open .faq-head { 
    color: var(--gold); 
}

.faq-item.open {
    border-color: var(--gold);
}

.plus { 
    font-size: 1.5rem; 
    font-weight: 300; 
    transition: 0.3s;
}

.faq-item.open .plus {
    transform: rotate(45deg);
}

/* --- CONTACT --- */
.contact-box { 
    max-width: 600px; 
    margin: 0 auto; 
    text-align: left; 
}

.form-group { 
    margin-bottom: 1.5rem; 
}

.form-row { 
    display: flex; 
    gap: 1.5rem; 
}

.form-row .form-group { 
    flex: 1; 
}

label { 
    display: block; 
    font-size: 0.85rem; 
    font-weight: 700; 
    margin-bottom: 0.5rem; 
    color: var(--text-gray); 
    text-transform: uppercase; 
}

input, textarea { 
    width: 100%; 
    padding: 12px; 
    border: 1px solid #cbd5e1; 
    border-radius: 8px; 
    font-family: inherit; 
    font-size: 1rem; 
    background: #f8fafc; 
    transition: 0.3s;
}

input:focus, textarea:focus { 
    outline: 2px solid var(--gold); 
    border-color: transparent; 
    background: white; 
}

/* --- FOOTER --- */
footer { 
    background: var(--bg-darker); 
    color: #64748b; 
    padding: 3rem 0; 
    text-align: center; 
    font-size: 0.9rem; 
}

.footer-logo { 
    font-family: var(--font-serif); 
    font-size: 1.5rem; 
    color: white; 
    font-weight: 700; 
    display: block; 
    margin-bottom: 1rem; 
}

/* --- RESPONSIVE --- */
@media (max-width: 968px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { 
        font-size: 2.5rem; 
    }
    
    .nav-links, .cta-group a:nth-child(2) { 
        display: none; 
    }
    
    .mobile-menu-btn { 
        display: block; 
    }
    
    /* Mobile Navbar Adjustments */
    .navbar {
        padding: 10px 0;
    }
    
    .nav-container .btn-primary {
        padding: 8px 16px;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .mobile-menu-btn {
        font-size: 1.3rem;
    }
    
    .grid-2, .bento-grid, .flow-steps, .team-grid { 
        grid-template-columns: 1fr; 
        flex-direction: column; 
        gap: 2rem; 
    }
    
    .card-wide, .card-tall { 
        grid-column: auto; 
        grid-row: auto; 
    }
    
    .flow-line { 
        display: none; 
    }
    
    .form-row { 
        flex-direction: column; 
        gap: 0; 
    }

    .float-card {
        bottom: 15px;
        left: 15px;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .nav-container .btn-primary {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}