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

body{
font-family:'Montserrat',sans-serif;
background:#050505;
color:white;
overflow-x:hidden;
}

header{
position:fixed;
top:0;
width:100%;
padding:20px 7%;
background:rgba(0,0,0,.9);
border-bottom:1px solid rgba(255,20,147,.2);
z-index:1000;
}

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

.logo{
font-size:3rem;
font-weight:800;
color:#ff1493;
font-style:italic;
text-shadow:0 0 20px #ff1493;
}

.menu a{
margin:0 18px;
text-decoration:none;
color:white;
font-size:.9rem;
font-weight:700;
}

.menu .active{
color:#ff1493;
border-bottom:2px solid #ff1493;
padding-bottom:10px;
}

.contact-btn{
padding:15px 30px;
border-radius:16px;
border:2px solid #ff1493;
text-decoration:none;
color:white;
box-shadow:0 0 20px rgba(255,20,147,.35);
}

.hero{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
min-height:100vh;
padding:140px 7% 60px;
gap:40px;
}

.top-text{
color:#ff1493;
letter-spacing:7px;
font-size:.9rem;
}

.hero h1{
font-size:6rem;
line-height:.95;
margin:20px 0;
font-weight:800;
}

.hero h1 span{
color:#ff1493;
text-shadow:0 0 20px #ff1493;
}

.hero p{
opacity:.85;
line-height:1.8;
max-width:550px;
margin-bottom:35px;
}

.buttons{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.btn{
padding:18px 32px;
border-radius:16px;
text-decoration:none;
font-weight:700;
font-size:.9rem;
}

.pink{
background:#ff1493;
color:white;
box-shadow:0 0 25px #ff1493;
}

.border{
border:2px solid #ff1493;
color:#ff1493;
}

.hero-right img{
width:100%;
border-radius:0;
box-shadow:0 0 45px rgba(255,20,147,.3);
}

.info-cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
padding:0 7% 80px;
}

.card{
background:#0b0b0b;
border:1px solid rgba(255,20,147,.12);
padding:35px;
border-radius:24px;
}

.icon{
font-size:2rem;
margin-bottom:15px;
color:#ff1493;
}

.card h3{
color:#ff1493;
margin-bottom:15px;
}

.about{
display:grid;
grid-template-columns:1fr 1.2fr 1fr;
gap:40px;
padding:60px 7% 100px;
align-items:center;
}

.about-image img{
width:100%;
border-radius:24px;
border:2px solid rgba(255,20,147,.3);
}

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

.about-center span{
letter-spacing:6px;
color:#ff1493;
font-size:.9rem;
}

.about-center h2{
font-size:4rem;
margin:20px 0;
}

.about-center h2 span{
color:#ff1493;
text-shadow:0 0 20px #ff1493;
}

.about-center p{
line-height:1.8;
opacity:.85;
margin-bottom:35px;
}

.shop{
padding:80px 7%;
}

.shop h2,
.contact h2{
font-size:3rem;
color:#ff1493;
margin-bottom:35px;
text-align:center;
}

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

.shop-card{
background:#0b0b0b;
padding:35px;
border-radius:24px;
border:1px solid rgba(255,20,147,.12);
}

.shop-card h3{
color:#ff1493;
margin-bottom:15px;
}

.footer-boxes{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
padding:40px 7% 80px;
}

.footer-card{
padding:35px;
border-top:1px solid rgba(255,20,147,.2);
}

.footer-card h3{
color:#ff1493;
margin-bottom:12px;
}

.contact{
padding:80px 7%;
}

form{
max-width:600px;
margin:auto;
display:flex;
flex-direction:column;
gap:20px;
}

input,textarea{
padding:18px;
background:#0c0c0c;
border:1px solid rgba(255,20,147,.2);
border-radius:16px;
color:white;
}

textarea{
height:160px;
resize:none;
}

button{
padding:18px;
background:#ff1493;
border:none;
border-radius:16px;
color:white;
font-weight:700;
box-shadow:0 0 20px #ff1493;
}

footer{
padding:40px;
text-align:center;
opacity:.5;
}

@media(max-width:950px){

.hero{
grid-template-columns:1fr;
text-align:center;
}

.hero h1{
font-size:4rem;
}

.about{
grid-template-columns:1fr;
}

nav{
flex-direction:column;
gap:20px;
}

.menu{
display:flex;
flex-wrap:wrap;
justify-content:center;
}
}
