/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}



/* BODY */

body{
background:#fde6cb;
color:#61033a;
line-height:1.6;
}



/* HEADER */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 8%;
background:#b14672;
box-shadow:0 2px 10px #16160100;
position:sticky;
top:0;
z-index:1000;
}

header h2{
color:#e9fcf5;
}



/* NAVIGATION */

nav a{
margin-left:25px;
text-decoration:none;
color:#f8e9b5;
font-weight:500;
transition:0.3s;
}

nav a:hover{
color:#c58ba8;
}




/* CART ICON */

 .cart{
cursor:pointer;
font-weight:500;
}

.cart-count{
background:#dacb9f;
color:#9e256bd7;
padding:3px 7px;
border-radius:60%;
font-size:12px;
margin-left:5px;
}



/* HERO */

.hero{
height:75vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
background:linear-gradient(125deg,#eee4aa,#ee619c);
color:white;
padding:20px;
}

.hero h1{
font-size:48px;
margin-bottom:15px;
}

.hero p{
font-size:18px;
max-width:600px;
margin-bottom:25px;
}



/* BUTTON */

.btn,button{
background:#e95a96;
color:#660d28;
padding:12px 24px;
border:none;
border-radius:6px;
cursor:pointer;
transition:0.3s;
font-size:14px;
}

.btn{
text-decoration:none;
}

.btn:hover,
button:hover{
background:#f3e7b3;
transform:translateY(-2px);
}



/* PAGE */

.page{
padding:80px 10%;
text-align:center;
}

.page h1{
font-size:36px;
margin-bottom:10px;
}

.page p{
color:#8d1c62;
max-width:600px;
margin:auto;
margin-bottom:40px;
}



/* CARD CONTAINER */

.card-container{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:30px;
}



/* CARD */

.card{
background:#fca8c7;
width:260px;
border-radius:12px;
overflow:hidden;
box-shadow:0 6px 20px rgba(0, 0, 0, 0.425);
transition:0.3s;

}

.card:hover{
transform:translateY(-8px);
box-shadow:0 10px 25px rgba(0, 0, 0, 0.12);
}

.card img{
width:100%;
height:160px;
object-fit:cover;
}

.card h3{
margin-top:15px;
font-size:20px;
}

.card p{
padding:10px 20px;
font-size:14px;
color:#8c0853;
}

.card ul{
text-align:left;
padding:0 35px 20px;
font-size:14px;
}

.card li{
margin-bottom:6px;
}

.card button{
margin-bottom:15px;
}



/* SERVICE DETAILS */

.details{
display:none;
margin:15px;
padding:18px;
background:#ffffff;
border-radius:8px;
text-align:left;
border:1px solid #ffffff;
transition:all 0.3s ease;
}

.details h4{
margin-top:10px;
margin-bottom:8px;
color:#bd337f;
font-size:16px;
}

.details p{
font-size:14px;
margin-bottom:10px;
color:#4b0335;
}

.details ul{
padding-left:18px;
margin-bottom:10px;
}

.details li{
margin-bottom:6px;
font-size:14px;
}



/* Animation */

 @keyframes fadeIn{

from{
opacity:0;
transform:translateY(-10px);
}

to{
opacity:1;
transform:translateY(0);
}

}


/* FORM */

 form{
display:flex;
flex-direction:column;
align-items:center;
gap:15px;
}

input,textarea{
width:280px;
padding:12px;
border-radius:6px;
border:1px solid #cbd5e1;
font-size:14px;
}

textarea{
resize:none;
}



/* CART PANEL */

.cart-panel{
position:fixed;
right:-360px;
top:0;
width:360px;
height:100%;
background:rgb(255, 255, 255);
box-shadow:-5px 0 20px rgba(0,0,0,0.15);
padding:25px;
transition:0.3s;
overflow-y:auto;
z-index:2000;
display:flex;
flex-direction:column;
}

.cart-panel.active{
right:0;
}



/* CART HEADER */

.cart-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:20px;
border-bottom:1px solid #eee;
padding-bottom:10px;
}

.close-cart{
background:none;
border:none;
font-size:18px;
cursor:pointer;
} 



/* CART ITEMS */

#cartItems{
list-style:none;
flex:1;
}

#cartItems li{
display:flex;
justify-content:space-between;
align-items:center;
background:#f1f5f9;
padding:10px 12px;
border-radius:6px;
margin-bottom:10px;
font-size:14px;
}



/* REMOVE BUTTON */

.remove-btn{
background:#ef4444;
border:none;
color:white;
padding:4px 8px;
border-radius:4px;
cursor:pointer;
font-size:12px;
}

.remove-btn:hover{
background:#dc2626;
} 



/* CART FOOTER */

.cart-footer{
margin-top:20px;
}

.clear-cart{
width:100%;
background:#ff98c8;
color:#a51d65;
border:none;
padding:10px;
border-radius:6px;
cursor:pointer;
}

.clear-cart:hover{
background:#fff3ae;
color: rgb(129, 18, 73);
}

.close-cart{
    color: #0f172a;
} 



/* FOOTER */

footer{
background:#c04679;
color:#cbd5e1;
padding:60px 10% 25px;
margin-top:80px;
}

.footer-container{
display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:40px;
}

.footer-col{
flex:1;
min-width:200px;
}

.footer-col h3{
color:white;
margin-bottom:15px;
}

.footer-col h4{
color:white;
margin-bottom:15px;
}

.footer-col p{
font-size:14px;
margin-bottom:10px;
}

.footer-col a{
display:block;
color:#cbd5e1;
text-decoration:none;
margin-bottom:8px;
font-size:14px;
transition:0.3s;
}

.footer-col a:hover{
color:white;
padding-left:5px;
} 



/* SOCIAL ICONS */

.social-icons{
display:flex;
align-items:center;
gap:15px;
margin-top:15px;
}

.social-icons a{
display:flex;
align-items:center;
justify-content:center;
width:38px;
height:38px;
background:#c45e99;
border-radius:50%;
color:#cbd5e1;
font-size:16px;
text-decoration:none;
transition:all 0.3s ease;
}

.social-icons a:hover{
background:#f8abdb;
color:white;
transform:translateY(-3px);
} 



/* FOOTER BOTTOM */

 .footer-bottom{
border-top:1px solid rgba(255,255,255,0.1);
margin-top:40px;
padding-top:20px;
text-align:center;
font-size:13px;
color:#94a3b8;
} 



/* RESPONSIVE */

 @media(max-width:768px){

.hero h1{
font-size:32px;
}

.card{
width:90%;
}

.footer-container{
flex-direction:column;
text-align:center;
}

}

/*about section bullet points*/
.nobullet{
text-decoration: none;
list-style-type: none;
}


/*logo size*/

.logo{
width: 120px;
height: 120px;
padding-left: 120px;
padding-top: 45px;
}