/*======================
HEADER
======================*/

.header{

padding:25px 0;

position:sticky;

top:0;

z-index:999;

background:rgba(250,248,245,.88);

backdrop-filter:blur(12px);

}

.nav-wrapper{

display:flex;

align-items:center;

justify-content:space-between;

gap:40px;

}

.logo{

display:flex;

align-items:center;

gap:15px;

}

.logo-icon{

width:52px;

height:52px;

border-radius:18px;

background:#BFA7F2;

display:flex;

align-items:center;

justify-content:center;

font-size:24px;

font-weight:800;

color:white;

box-shadow:0 10px 25px rgba(191,167,242,.4);

}

.logo-text{

font-size:28px;

font-weight:800;

letter-spacing:-1px;

color:#242424;

}

.logo-text span{

color:#BFA7F2;

}

.nav-menu{

display:flex;

gap:35px;

}

.nav-menu a{

font-size:15px;

font-weight:600;

color:#666;

transition:.3s;

padding-bottom:6px;

}

.nav-menu a:hover{

color:#000;

}

.nav-menu .active{

color:#000;

border-bottom:2px solid #BFA7F2;

}

.header-right{

display:flex;

align-items:center;

gap:18px;

}

.search-mini{

display:flex;

align-items:center;

background:#fff;

border-radius:999px;

padding:6px;

box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.search-mini input{

border:none;

outline:none;

padding:12px 18px;

background:none;

width:170px;

}

.search-mini button{

border:none;

background:#BFA7F2;

width:42px;

height:42px;

border-radius:50%;

cursor:pointer;

}

.login-btn{

padding:13px 22px;

border-radius:16px;

background:#fff;

box-shadow:0 10px 30px rgba(0,0,0,.05);

font-weight:700;

}

.mobile-menu{

display:none;

font-size:30px;

cursor:pointer;

}

@media(max-width:992px){

.nav-menu{

display:none;

}

.search-mini{

display:none;

}

.mobile-menu{

display:block;

}

}

/*==========================
HERO
==========================*/

.hero{

display:grid;

grid-template-columns:1fr 480px;

align-items:center;

gap:80px;

padding:90px 0;

}

.hero-tag{

display:inline-block;

padding:10px 18px;

background:white;

border-radius:999px;

box-shadow:var(--shadow);

font-size:14px;

margin-bottom:25px;

}

.hero h1{

font-size:68px;

line-height:1.05;

letter-spacing:-3px;

margin-bottom:25px;

}

.hero h1 span{

color:var(--primary);

}

.hero p{

font-size:18px;

line-height:1.9;

color:var(--muted);

max-width:620px;

}

.hero-search{

display:flex;

margin:40px 0;

background:white;

border-radius:999px;

padding:8px;

box-shadow:var(--shadow);

}

.hero-search input{

flex:1;

padding:18px 25px;

border:none;

outline:none;

font-size:17px;

background:none;

}

.hero-search button{

padding:18px 32px;

border:none;

border-radius:999px;

background:var(--primary);

color:white;

font-weight:700;

cursor:pointer;

transition:.3s;

}

.hero-search button:hover{

background:var(--secondary);

color:#222;

}

.hero-tags{

display:flex;

flex-wrap:wrap;

gap:14px;

}

.hero-tags a{

padding:12px 18px;

background:white;

border-radius:999px;

font-size:14px;

box-shadow:var(--shadow);

}

.hero-stats{

display:flex;

gap:60px;

margin-top:50px;

}

.hero-stats h3{

font-size:34px;

margin-bottom:5px;

}

.hero-stats p{

font-size:14px;

color:#888;

}

.prompt-preview{

background:white;

border-radius:28px;

overflow:hidden;

box-shadow:0 20px 60px rgba(0,0,0,.08);

transform:rotate(-2deg);

transition:.35s;

}

.prompt-preview:hover{

transform:rotate(0deg) translateY(-8px);

}

.preview-strip{

background:#BFA7F2;

color:white;

padding:18px 25px;

font-weight:700;

}

.prompt-preview h3{

padding:25px 25px 10px;

font-size:28px;

}

.prompt-preview p{

padding:0 25px;

color:#666;

line-height:1.8;

}

.preview-footer{

padding:25px;

display:flex;

justify-content:space-between;

align-items:center;

}

.preview-footer button{

border:none;

background:#A8E6CF;

padding:14px 22px;

border-radius:16px;

font-weight:700;

cursor:pointer;

}

@media(max-width:991px){

.hero{

grid-template-columns:1fr;

}

.hero-right{

order:-1;

}

.hero h1{

font-size:46px;

}

.hero-stats{

justify-content:space-between;

}

}

/*======================
COLLECTIONS
======================*/

.collections{

padding:90px 0;

}

.section-title{

text-align:center;

margin-bottom:55px;

}

.section-title small{

color:var(--primary);

font-weight:700;

letter-spacing:1px;

text-transform:uppercase;

}

.section-title h2{

font-size:46px;

margin-top:12px;

margin-bottom:18px;

}

.section-title p{

color:var(--muted);

max-width:650px;

margin:auto;

line-height:1.8;

}

.collection-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.collection-card{

background:white;

border-radius:28px;

overflow:hidden;

box-shadow:var(--shadow);

transition:.35s;

}

.collection-card:hover{

transform:translateY(-10px);

}

.collection-top{

height:150px;

display:flex;

align-items:center;

justify-content:center;

font-size:60px;

}

.collection-body{

padding:28px;

}

.collection-body h3{

font-size:24px;

margin-bottom:10px;

}

.collection-body p{

color:#777;

margin-bottom:20px;

}

.collection-body a{

font-weight:700;

color:var(--primary);

}