*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
background:#0B0F14;
color:#ffffff;
line-height:1.6;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* NAVBAR */

.navbar{
position:sticky;
top:0;
z-index:100;
background:rgba(11,15,20,0.95);
backdrop-filter:blur(12px);
border-bottom:1px solid #1f2937;
}

.navbar .container{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

.logo{
font-size:1.6rem;
font-weight:800;
color:#fff;
}

nav{
display:flex;
gap:30px;
}

nav a{
text-decoration:none;
color:#d1d5db;
transition:.3s;
}

nav a:hover{
color:#fff;
}

.nav-btn{
padding:12px 22px;
background:#D4AF37;
color:#000;
font-weight:700;
text-decoration:none;
border-radius:12px;
}

/* HERO */

.hero{
padding:100px 0;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.badge{
display:inline-block;
padding:8px 14px;
background:#111827;
border:1px solid #1f2937;
border-radius:999px;
font-size:.9rem;
margin-bottom:20px;
}

.hero h1{
font-size:4rem;
line-height:1.05;
margin-bottom:20px;
font-weight:800;
}

.hero p{
font-size:1.15rem;
color:#9ca3af;
margin-bottom:30px;
}

.hero-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.btn-primary{
background:#D4AF37;
color:#000;
padding:15px 28px;
border-radius:14px;
text-decoration:none;
font-weight:700;
}

.btn-secondary{
background:#111827;
border:1px solid #1f2937;
padding:15px 28px;
border-radius:14px;
text-decoration:none;
color:white;
}

.image-placeholder{
height:450px;
background:#111827;
border:1px solid #1f2937;
border-radius:24px;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
font-size:2rem;
font-weight:700;
color:#6b7280;
}

/* STYLES */

.styles{
padding:100px 0;
}

.styles h2{
text-align:center;
font-size:2.5rem;
margin-bottom:50px;
}

.style-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.style-card{
background:#111827;
border:1px solid #1f2937;
padding:40px;
border-radius:20px;
text-align:center;
font-size:1.4rem;
transition:.3s;
cursor:pointer;
}

.style-card:hover{
transform:translateY(-6px);
border-color:#D4AF37;
}

.style-card h3{
margin-top:15px;
font-size:1.2rem;
}

/* HOW IT WORKS */

.how-it-works{
padding:100px 0;
}

.how-it-works h2{
text-align:center;
font-size:2.5rem;
margin-bottom:50px;
}

.steps{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.step{
background:#111827;
border:1px solid #1f2937;
padding:35px;
border-radius:20px;
}

.step span{
width:50px;
height:50px;
display:flex;
align-items:center;
justify-content:center;
background:#D4AF37;
color:black;
font-weight:800;
border-radius:50%;
margin-bottom:15px;
}

/* FAQ */

.faq{
padding:100px 0;
}

.faq h2{
text-align:center;
font-size:2.5rem;
margin-bottom:50px;
}

.faq-item{
background:#111827;
border:1px solid #1f2937;
padding:25px;
border-radius:18px;
margin-bottom:20px;
}

.faq-item h3{
margin-bottom:10px;
}

/* FOOTER */

footer{
border-top:1px solid #1f2937;
padding:30px 0;
text-align:center;
color:#9ca3af;
}

/* RESPONSIVE */

@media(max-width:900px){

.hero-grid{
grid-template-columns:1fr;
}

.hero h1{
font-size:2.8rem;
}

.style-grid{
grid-template-columns:1fr 1fr;
}

.steps{
grid-template-columns:1fr;
}

nav{
display:none;
}

}

@media(max-width:600px){

.style-grid{
grid-template-columns:1fr;
}

.hero h1{
font-size:2.2rem;
}

.image-placeholder{
height:300px;
}

}
.hero-showcase{
width:100%;
height:450px;
object-fit:cover;
border-radius:24px;
border:1px solid #1f2937;
display:block;
}
.generate-page{
padding:100px 0;
min-height:80vh;
}

.generate-page h1{
text-align:center;
font-size:3rem;
margin-bottom:10px;
}

.generate-subtitle{
text-align:center;
color:#9ca3af;
margin-bottom:40px;
}

.generate-card{
max-width:700px;
margin:auto;
background:#111827;
border:1px solid #1f2937;
padding:40px;
border-radius:24px;
}

.upload-section,
.style-section{
margin-bottom:25px;
}

.upload-label{
display:block;
margin-bottom:10px;
font-weight:600;
}

input[type="file"]{
width:100%;
padding:15px;
background:#0B0F14;
color:white;
border:1px solid #1f2937;
border-radius:12px;
}

select{
width:100%;
padding:15px;
background:#0B0F14;
color:white;
border:1px solid #1f2937;
border-radius:12px;
}

.generate-btn{
width:100%;
padding:18px;
background:#D4AF37;
border:none;
border-radius:14px;
font-size:1rem;
font-weight:700;
cursor:pointer;
}

#statusBox{
max-width:700px;
margin:25px auto;
text-align:center;
color:#9ca3af;
}
#previewContainer{
margin-top:25px;
margin-bottom:25px;
text-align:center;
}

#previewContainer img{
max-width:100%;
max-height:450px;
border-radius:20px;
border:1px solid #1f2937;
display:block;
margin:auto;
}

.preview-title{
margin-bottom:15px;
font-weight:600;
color:#d1d5db;
}
/* ===== MODE CARDS ===== */

.mode-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:15px;
margin-top:20px;
margin-bottom:40px;
}

.mode-card{
background:#08101f;
border:1px solid #1b2f52;
padding:18px;
text-align:center;
border-radius:12px;
cursor:pointer;
font-weight:600;
transition:.3s;
}

.mode-card:hover{
border-color:#d4af37;
transform:translateY(-3px);
}

.active-mode{
border:2px solid #d4af37;
box-shadow:0 0 15px rgba(212,175,55,.3);
}

/* ===== SECTION TITLES ===== */

.section-title{
font-size:2rem;
margin-top:30px;
margin-bottom:20px;
color:white;
}

/* ===== STYLE CARDS ===== */

.style-grid-large{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
margin-bottom:40px;
}

.style-option{
background:#08101f;
border:1px solid #1b2f52;
border-radius:18px;
overflow:hidden;
cursor:pointer;
transition:.3s;
}

.style-option:hover{
transform:translateY(-5px);
border-color:#d4af37;
}

.style-option img{
width:100%;
height:240px;
object-fit:cover;
display:block;
}

.style-option h3{
padding:15px 20px 5px;
font-size:1.4rem;
}

.style-option p{
padding:0 20px 20px;
color:#bfc9d8;
line-height:1.6;
}

/* ===== MOBILE ===== */

@media(max-width:768px){

.style-grid-large{
grid-template-columns:1fr;
}

.mode-grid{
grid-template-columns:1fr;
}

}