*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial,sans-serif;
background:#f6f3ea;
color:#333;
line-height:1.6;
overflow-x:hidden;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* HEADER */

.header{
background:#fff;
padding:20px 0;
box-shadow:0 2px 10px rgba(0,0,0,.05);
position:sticky;
top:0;
z-index:999;
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:42px;
font-weight:700;
color:#6d7553;
}

.nav-menu{
display:flex;
gap:35px;
list-style:none;
}

.nav-menu a{
text-decoration:none;
color:#333;
font-weight:600;
transition:.3s;
}

.nav-menu a:hover{
color:#b8c8a5;
}

/* HERO */

.hero-banner{
height:700px;
background:url('/assets/images/hero-scrapbook.jpg') center center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

.hero-overlay{
background:rgba(255,255,255,.25);
backdrop-filter:blur(5px);
padding:50px;
border-radius:25px;
width:90%;
max-width:850px;
}

.hero-banner h1{
font-size:72px;
font-weight:700;
margin-bottom:15px;
}

.hero-banner p{
font-size:22px;
margin-bottom:25px;
}

.hero-btn{
display:inline-block;
padding:14px 30px;
background:#b8c8a5;
color:#fff;
text-decoration:none;
border-radius:12px;
font-weight:bold;
}

.hero-btn:hover{
opacity:.9;
}

/* SECTIONS */

.section{
padding:70px 0;
}

.section-title,
h2{
font-size:42px;
margin-bottom:30px;
}

/* QUOTE + MOODBOARD */

.feature-row{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
margin-bottom:60px;
align-items:stretch;
}

.quote-card{
background:#ffdfe6;
padding:40px;
border-radius:25px;
box-shadow:0 8px 20px rgba(0,0,0,.08);
display:flex;
flex-direction:column;
justify-content:center;
}

.quote-card h3{
font-size:32px;
margin-bottom:25px;
}

.quote-text{
font-size:28px;
font-style:italic;
line-height:1.6;
}

.quote-author{
margin-top:25px;
font-size:22px;
font-weight:bold;
}

.moodboard-card{
background:#fff;
padding:20px;
border-radius:25px;
box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.moodboard-card img{
width:100%;
height:350px;
object-fit:cover;
border-radius:15px;
display:block;
}

.moodboard-card h3{
font-size:28px;
margin-top:15px;
margin-bottom:10px;
}

.moodboard-card p{
font-size:18px;
color:#666;
}

.moodboard-btn{
display:inline-block;
margin-top:15px;
padding:12px 24px;
background:#b8c8a5;
color:#fff;
text-decoration:none;
border-radius:10px;
font-weight:bold;
}

/* WALLPAPERS */

.grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.card{
background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,.06);
transition:.3s;
}

.card:hover{
transform:translateY(-5px);
}

.card img{
width:100%;
height:240px;
object-fit:cover;
display:block;
}

.card h3{
padding:18px;
text-align:center;
font-size:22px;
}

.card-link{
display:block;
text-decoration:none;
color:inherit;
}

/* POSTS */

.post-card{
background:#fff;
padding:25px;
border-radius:20px;
box-shadow:0 5px 15px rgba(0,0,0,.06);
}

.post-card h3{
font-size:24px;
margin-bottom:10px;
}

/* NEWSLETTER */

.newsletter-box{
background:#fff;
padding:50px;
border-radius:25px;
max-width:800px;
margin:auto;
text-align:center;
box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.newsletter-box h2{
margin-bottom:20px;
}

.newsletter-box p{
margin-bottom:25px;
}

.newsletter-box input{
width:350px;
max-width:100%;
padding:14px;
border:1px solid #ddd;
border-radius:10px;
}

.newsletter-box button{
padding:14px 24px;
border:none;
background:#b8c8a5;
color:#fff;
border-radius:10px;
font-weight:bold;
cursor:pointer;
margin-left:10px;
}

/* FOOTER */

.footer{
background:#fff;
padding:50px 0;
margin-top:60px;
text-align:center;
border-top:1px solid #e5e5e5;
}

.footer h3{
font-size:28px;
margin-bottom:10px;
color:#6d7553;
}

.footer-links{
margin:20px 0;
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.footer-links a{
text-decoration:none;
color:#333;
font-weight:600;
}

.footer-links a:hover{
color:#b8c8a5;
}

.copyright{
margin-top:20px;
font-size:14px;
color:#666;
}

/* TABLET */

@media(max-width:992px){

.grid{
grid-template-columns:repeat(2,1fr);
}

.feature-row{
grid-template-columns:1fr;
}

}

/* MOBILE */

@media(max-width:768px){

.logo{
font-size:28px;
text-align:center;
}

.nav-container{
flex-direction:column;
gap:15px;
}

.nav-menu{
flex-wrap:wrap;
justify-content:center;
gap:12px;
}

.hero-banner{
height:450px;
}

.hero-overlay{
padding:25px;
}

.hero-banner h1{
font-size:42px;
}

.hero-banner p{
font-size:16px;
}

.section{
padding:50px 0;
}

h2,
.section-title{
font-size:32px;
}

.quote-card{
padding:25px;
}

.quote-text{
font-size:22px;
}

.quote-author{
font-size:18px;
}

.moodboard-card img{
height:260px;
}

.grid{
grid-template-columns:1fr;
}

.card img{
height:220px;
}

.newsletter-box{
padding:25px;
}

.newsletter-box input{
width:100%;
margin-bottom:10px;
}

.newsletter-box button{
margin-left:0;
width:100%;
}

}

.site-footer{
background:#fdf9f2;
padding:60px 0 20px;
margin-top:80px;
border-top:1px solid #ece7dc;
}

.footer-container{
width:90%;
max-width:1400px;
margin:auto;
display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:40px;
align-items:start;
}

.footer-logo h2{
font-size:42px;
color:#6d7553;
margin-bottom:15px;
}

.footer-logo p{
color:#666;
line-height:1.8;
margin-bottom:20px;
}

.social-icons{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.social-icons a{
text-decoration:none;
color:#555;
font-weight:bold;
}

.footer-links h3{
margin-bottom:15px;
color:#444;
}

.footer-links ul{
list-style:none;
}

.footer-links li{
margin-bottom:10px;
}

.footer-links a{
text-decoration:none;
color:#666;
}

.footer-links a:hover{
    color:#6d7553;
}

.sticky-note{
background:#f5e2b8;
padding:30px;
border-radius:8px;
text-align:center;
font-size:22px;
font-weight:bold;
transform:rotate(-2deg);
box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.footer-bottom{
text-align:center;
margin-top:40px;
padding-top:20px;
border-top:1px solid #e5e5e5;
color:#777;
}

.footer-container{
width:90%;
max-width:1400px;
margin:auto;
display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:60px;
align-items:start;
}

.footer-links{
display:block !important;
margin:0 !important;
}

.footer-links h3{
margin-bottom:15px;
color:#444;
font-size:32px;
}

.footer-links ul{
list-style:none;
padding:0;
margin:0;
}

.footer-links li{
margin-bottom:12px;
}

.footer-links a{
text-decoration:none;
color:#666;
font-weight:600;
}

@media(max-width:900px){

@media(max-width:900px){

.footer-container{
grid-template-columns:1fr;
text-align:center;
gap:35px;
}

.footer-links{
width:100%;
}

.social-icons{
justify-content:center;
}

.sticky-note{
max-width:300px;
margin:auto;
}

}

}

.about-hero{
text-align:center;
padding:80px 20px;
}

.about-hero h1{
font-size:60px;
margin-bottom:20px;
color:#6d7553;
}

.about-hero p{
font-size:22px;
max-width:800px;
margin:auto;
color:#666;
}

.about-section{
background:#fff;
padding:40px;
border-radius:20px;
margin-bottom:30px;
box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.about-section h2{
margin-bottom:20px;
color:#6d7553;
}

.about-section p{
line-height:1.8;
color:#555;
}

.about-section ul{
padding-left:20px;
}

.about-section li{
margin-bottom:10px;
}
