
/*
Theme Name: Fusion Modest Apparel
Theme URI: https://example.com
Author: OpenAI
Description: Modern animated clothing and fusion fashion WordPress theme inspired by modest apparel layouts.
Version: 1.0
*/

:root{
    --primary:#7b1e3a;
    --secondary:#ffffff;
    --dark:#2a2a2a;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family: Arial, sans-serif;
    background:#fff;
    color:#222;
    line-height:1.6;
}

header{
    background:linear-gradient(135deg,var(--primary),#9e2f52);
    color:#fff;
    padding:20px 40px;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 10px rgba(0,0,0,0.2);
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.logo{
    font-size:30px;
    font-weight:bold;
    animation: glow 2s infinite alternate;
}

@keyframes glow{
    from{opacity:0.8;}
    to{opacity:1;}
}

.menu a{
    color:#fff;
    text-decoration:none;
    margin-left:20px;
    font-weight:bold;
    transition:0.3s;
}

.menu a:hover{
    color:#ffd6e3;
}

.hero{
    min-height:90vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    background:linear-gradient(rgba(0,0,0,0.45),rgba(0,0,0,0.45)),
    url('https://images.unsplash.com/photo-1529139574466-a303027c1d8b?q=80&w=1400&auto=format&fit=crop') center/cover;
    color:#fff;
    padding:40px;
}

.hero-content{
    animation:fadeUp 1.5s ease;
}

.hero h1{
    font-size:60px;
    margin-bottom:20px;
}

.hero p{
    max-width:700px;
    margin:auto;
    font-size:20px;
}

.btn{
    display:inline-block;
    margin-top:25px;
    background:#fff;
    color:var(--primary);
    padding:14px 30px;
    text-decoration:none;
    border-radius:40px;
    font-weight:bold;
    transition:0.4s;
}

.btn:hover{
    transform:translateY(-5px);
    background:#f7d9e3;
}

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

.section{
    padding:80px 20px;
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
    color:var(--primary);
    font-size:40px;
}

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

.card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    transition:0.4s;
    animation:fadeUp 1s ease;
}

.card:hover{
    transform:translateY(-10px);
}

.card img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.card-content{
    padding:20px;
}

.card h3{
    color:var(--primary);
    margin-bottom:10px;
}

.about{
    background:#f9f2f5;
    border-radius:20px;
    padding:40px;
    text-align:center;
}

footer{
    background:var(--primary);
    color:#fff;
    text-align:center;
    padding:25px;
}

@media(max-width:768px){
    .hero h1{
        font-size:38px;
    }

    .navbar{
        flex-direction:column;
    }

    .menu{
        margin-top:15px;
    }

    .menu a{
        margin:0 10px;
    }
}
