/*
Theme Name: Sanctuary Stone Premium
Theme URI: https://sanctuarystone.com
Author: Sanctuary Stone
Description: Premium Christian WooCommerce Theme
Version: 1.0
Text Domain: sanctuary-stone
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

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

body{
font-family:'Inter',sans-serif;
background:#f7f3f1;
color:#222;
}

a{
text-decoration:none;
color:inherit;
}

.site-header{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 60px;
background:#fff;
border-bottom:1px solid #eee;
position:sticky;
top:0;
z-index:999;
}

.brand{
display:flex;
align-items:center;
gap:15px;
font-family:'Cormorant Garamond',serif;
font-size:32px;
font-weight:700;
color:#4e2d79;
}

.site-nav ul{
display:flex;
gap:25px;
list-style:none;
}

.site-nav a{
font-weight:600;
font-size:15px;
}

.hero{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:50px;
padding:80px 8%;
background:#f8f2f6;
}

.hero h1{
font-family:'Cormorant Garamond',serif;
font-size:82px;
line-height:1;
margin:20px 0;
}

.hero p{
font-size:21px;
line-height:1.8;
color:#555;
margin-bottom:30px;
}

.hero-label{
text-transform:uppercase;
font-size:14px;
letter-spacing:2px;
font-weight:700;
color:#7d53b2;
}

.hero-image img{
width:100%;
border-radius:25px;
}

.hero-features{
display:flex;
gap:15px;
flex-wrap:wrap;
margin-bottom:30px;
}

.feature-box{
background:#fff;
border:1px solid #e6dff0;
padding:16px 20px;
border-radius:16px;
font-weight:600;
}

.btn-row{
display:flex;
gap:18px;
flex-wrap:wrap;
}

.btn{
padding:16px 30px;
border-radius:12px;
border:none;
background:#5a2d82;
color:#fff;
font-weight:700;
cursor:pointer;
}

.btn.secondary{
background:#fff;
color:#333;
border:2px solid #ddd;
}

.section-title{
text-align:center;
font-family:'Cormorant Garamond',serif;
font-size:52px;
margin:70px 0 40px;
}

.grid-3{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
padding:0 8% 60px;
}

.card{
background:#fff;
border-radius:22px;
padding:35px;
box-shadow:0 8px 25px rgba(0,0,0,0.06);
text-align:center;
}

.card h3{
font-family:'Cormorant Garamond',serif;
font-size:34px;
margin:20px 0;
}

.products{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
padding:0 8% 60px;
}

.product-card{
background:#fff;
border-radius:18px;
overflow:hidden;
border:1px solid #eee;
}

.product-card img{
width:100%;
display:block;
}

.product-info{
padding:18px;
}

.product-title{
font-weight:700;
margin-bottom:10px;
}

.price{
color:#5a2d82;
font-weight:700;
margin-bottom:15px;
}

.quote-section{
background:#f2e8f5;
padding:60px 20px;
text-align:center;
font-family:'Cormorant Garamond',serif;
font-size:42px;
font-weight:600;
color:#5a2d82;
}

.newsletter{
padding:70px 20px;
text-align:center;
background:#fff;
}

.newsletter h2{
font-family:'Cormorant Garamond',serif;
font-size:56px;
margin-bottom:15px;
}

.newsletter input{
padding:15px;
width:320px;
border-radius:10px;
border:1px solid #ccc;
margin-right:10px;
}

.site-footer{
background:#311547;
color:#fff;
padding:60px 8%;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
}

.site-footer h4{
margin-bottom:20px;
font-size:20px;
}

.site-footer ul{
list-style:none;
}

.site-footer li{
margin-bottom:12px;
}

@media(max-width:991px){

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

.hero h1{
font-size:54px;
}

.grid-3,
.products,
.site-footer{
grid-template-columns:1fr;
}

.site-header{
flex-direction:column;
gap:20px;
}

.site-nav ul{
flex-wrap:wrap;
justify-content:center;
}

}
