/* PAGE */
:root{
--soft-pink:#E9D3DA;
--dusty-pink:#D6B2BA;
--cream:#F5EFE9;
--champagne:#CDBBA7;
--taupe:#A99987;
--gold:#C8A97E;
--dark:#2F2A26;
}

body{
margin:0;
font-family: "Helvetica", sans-serif;
background:#e9e3db;
}

/* HERO SECTION */

.hero{
background:#e9e3db;
padding:40px;
max-width:900px;
width:90%;
margin:auto;
}

/* lines */

.top-line,
.bottom-line{
height:1px;
background:#bfb7ae;
margin:20px 0;
}

/* container */

.hero-container{
display:flex;
align-items:center;
gap:60px;
}

/* image card */

.hero-image img{
width:260px;
border-radius:20px;
box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

/* text */

.hero-text h1{
font-family: "Playfair Display", serif;
font-size:60px;
line-height:1.1;
margin:0;
}

.hero-text p{
margin-top:15px;
color:#555;
font-size:15px;
max-width:280px;
}

/* button */

.hero-btn{
display:inline-block;
margin-top:20px;
padding:10px 22px;
background:#d5cdc4;
color:#333;
text-decoration:none;
border-radius:20px;
font-size:13px;
transition:0.3s;
}

.hero-btn:hover{
background:#c4bbb2;
}

/* ABOUT PAGE */

.about-section{
padding:140px 10%;
text-align:center;
background:var(--cream);
}

.about-section h2{
font-size:32px;
margin-bottom:60px;
color:var(--taupe);
}

.about-container{
max-width:800px;
margin:auto;
}

.about-text p{
margin-bottom:25px;
font-size:16px;
line-height:1.8;
color:#555;
}

/* CATALOG GRID */

.catalog{
padding:120px 10%;
}

.catalog h2{
font-size:36px;
margin-bottom:50px;
text-align:center;
}

.product-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

/* LOOKBOOK STYLE (NO FRAME) */

.product-card{
background:none;
padding:0;
transition:0.3s;
}

.product-card img{
width:100%;
height:320px;
object-fit:cover;
}

.product-card h3{
font-size:16px;
margin-top:10px;
}

.product-card p{
font-size:14px;
color:gray;
}

.product-card:hover{
transform:translateY(-5px);
}

/* CONTACT PAGE */

.contact-section{
padding:140px 10%;
text-align:center;
background:var(--cream);
}

.contact-section h2{
font-size:30px;
margin-bottom:60px;
letter-spacing:1px;
color:var(--taupe);
}

/* FORM */

form{
max-width:600px;
margin:auto;
}

.form-group{
margin-bottom:40px;
}

/* INPUT STYLE */

input,
textarea{
width:100%;
border:none;
border-bottom:1px solid #ccc;
padding:10px 0;
font-size:15px;
background:transparent;
font-family:inherit;
}

/* FOCUS EFFECT */

input:focus,
textarea:focus{
outline:none;
border-bottom:1px solid var(--gold);
}

/* BUTTON */

button{
margin-top:20px;
background:var(--champagne);
border:none;
padding:14px 40px;
color:rgb(14, 12, 12);
font-size:14px;
letter-spacing:1px;
cursor:pointer;
transition:0.3s;
}

button:hover{
background:var(--gold);
}

.contact-info{
margin-bottom:50px;
color:#0b0a0af3;
font-size:14px;
line-height:1.6;
}

/* ORDER PAGE */

.order-section{
padding:120px 10%;
text-align:center;
}

.order-section h2{
font-size:32px;
margin-bottom:60px;
color:var(--taupe);
}

.order-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.order-card{
background:white;
padding:35px;
border-radius:12px;
box-shadow:0 8px 20px rgba(0,0,0,0.05);
transition:0.3s;
}

.order-card h3{
margin-bottom:15px;
font-size:18px;
}

.order-card p{
font-size:14px;
line-height:1.6;
color:#666;
}

.order-card:hover{
transform:translateY(-6px);
}

/* RETURN HOME BUTTON */

.home-btn{
display:inline-block;
margin-top:30px;
padding:12px 28px;
background:#d5cdc4;
color:#333;
text-decoration:none;
border-radius:25px;
font-size:14px;
letter-spacing:1px;
transition:all 0.3s ease;
}

.home-btn:hover{
background:#c4bbb2;
transform:translateY(-2px);
}


/* FOOTER */

footer{
background:var(--soft-pink);
padding:40px 10%;
margin-top:80px;
}

.footer-container{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
}

.footer-column h3{
font-size:16px;
margin-bottom:15px;
color:var(--taupe);
}

.footer-column a{
display:block;
text-decoration:none;
color:#555;
margin-bottom:8px;
font-size:14px;
}

.footer-column a:hover{
color:var(--gold);
}

.footer-bottom{
margin-top:30px;
border-top:1px solid rgba(0,0,0,0.1);
padding-top:15px;
text-align:center;
font-size:13px;
color:#777;
}

/* NAVIGATION MENU LINKS */

/* FOOTER */

.site-footer{
    margin-top:80px;
    padding:40px 20px;
    text-align:center;
    background:#fafafa;
}

/* bubble links */
.footer-links{
    margin-bottom:20px;
}

.footer-links a{
    text-decoration:none;
    color:#333;
    font-size:13px;
    padding:8px 20px;
    margin:6px;
    border-radius:40px;
    background:linear-gradient(145deg,#ffffff,#f3f3f3);
    box-shadow:0 4px 8px rgba(0,0,0,0.08);
    display:inline-block;
    transition:all 0.3s ease;
}

/* hover */
.footer-links a:hover{
    transform:translateY(-2px);
    box-shadow:0 6px 12px rgba(0,0,0,0.12);
}

/* copyright */
.footer-copy{
    font-size:12px;
    color:#888;
    margin-top:10px;
}

@media (max-width:768px){

.hero-container{
flex-direction:column;
text-align:center;
}

.hero-image img{
width:100%;
max-width:300px;
}

.hero-text h1{
font-size:40px;
}

.hero-btn{
display:block;
margin:20px auto;
}

}