/*=========================================
PREMUM
Premium Spiritual Theme
=========================================*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

:root{

--primary:#7B1E22;
--secondary:#C8A646;
--bg:#F8F3E8;
--white:#ffffff;
--text:#333333;
--dark:#2D1B16;
--border:#E8DCC2;
--shadow:0 15px 45px rgba(0,0,0,.08);

}

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;
background:var(--bg);
color:var(--text);
overflow-x:hidden;
line-height:1.8;

}

a{

text-decoration:none;
transition:.4s;

}

img{

max-width:100%;
display:block;

}

ul{

list-style:none;
padding:0;
margin:0;

}

section{

padding:100px 0;

}

/* ================= LOADER ================= */

.loader{

position:fixed;
left:0;
top:0;
width:100%;
height:100%;
background:#F8F3E8;
display:flex;
align-items:center;
justify-content:center;
z-index:99999;

}

.loader-content{

text-align:center;

}

.loader-content img{

width:110px;
margin:auto;
margin-bottom:20px;

}

.loader-content h2{

font-family:'Cormorant Garamond',serif;
font-size:50px;
color:var(--primary);

}

.loader-content p{

color:#666;

}

/* ================= TOPBAR ================= */

.topbar{

background:var(--primary);
color:#fff;
padding:10px 0;
font-size:14px;

}

.topbar a{

color:#fff;
margin-left:10px;

}

.topbar a:hover{

color:#FFD76A;

}

/* ================= NAVBAR ================= */

.custom-navbar{

background:rgba(255,255,255,.72);
backdrop-filter:blur(18px);
padding:18px 0;
transition:.4s;
box-shadow:0 8px 30px rgba(0,0,0,.05);

}

.navbar-brand img{

height:70px;

}

.nav-link{

color:var(--dark);
font-weight:500;
margin-left:28px;
position:relative;

}

.nav-link:hover{

color:var(--primary);

}

.nav-link::after{

content:"";
position:absolute;
left:0;
bottom:-8px;
width:0;
height:2px;
background:var(--secondary);
transition:.3s;

}

.nav-link:hover::after{

width:100%;

}

/* ================= HERO ================= */

.hero{

position:relative;
min-height:100vh;
display:flex;
align-items:center;
background:url("../images/hero-bg.jpg") center center;
background-size:cover;

}

.hero-overlay{

position:absolute;
left:0;
top:0;
width:100%;
height:100%;
background:linear-gradient(90deg,
rgba(248,243,232,.94),
rgba(248,243,232,.65));

}

.hero .container{

position:relative;
z-index:5;

}

.hero-tag{

display:inline-block;
background:#FFF5DA;
padding:10px 24px;
border-radius:50px;
color:var(--primary);
font-weight:600;
margin-bottom:25px;

}

.hero h1{

font-family:'Cormorant Garamond',serif;
font-size:72px;
font-weight:700;
line-height:1.1;
color:var(--dark);

}

.hero h1 span{

color:var(--primary);

}

.hero p{

font-size:19px;
margin-top:30px;
color:#555;
max-width:550px;

}

.hero-buttons{

margin-top:40px;

}

.theme-btn{

display:inline-block;
padding:15px 38px;
background:var(--primary);
color:#fff;
border-radius:50px;
font-weight:600;
border:2px solid var(--primary);
margin-right:15px;

}

.theme-btn:hover{

background:var(--secondary);
border-color:var(--secondary);
color:#fff;
transform:translateY(-4px);

}

.theme-btn-outline{

display:inline-block;
padding:15px 38px;
border-radius:50px;
border:2px solid var(--primary);
color:var(--primary);
font-weight:600;

}

.theme-btn-outline:hover{

background:var(--primary);
color:#fff;

}

.hero-features{

display:flex;
gap:30px;
margin-top:45px;
font-size:15px;
font-weight:500;

}

.hero-features i{

color:var(--secondary);
margin-right:8px;

}

.hero-image{

position:relative;
text-align:center;

}

.hero-image img{

max-width:520px;
animation:float 5s ease-in-out infinite;

}

.floating-card{

position:absolute;
background:#fff;
padding:15px 22px;
border-radius:15px;
box-shadow:var(--shadow);
font-weight:600;

}

.card1{

top:60px;
left:0;

}

.card2{

bottom:50px;
right:0;

}

@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0px);

}

}

/* ================= CURVE ================= */

.curve-divider{

margin-top:-5px;

}

.curve-divider svg{

display:block;
width:100%;

}

/*=========================================
SECTION HEADING
=========================================*/

.section-heading{
    margin-bottom:70px;
}

.section-heading span{
    display:inline-block;
    color:var(--primary);
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:15px;
    position:relative;
}

.section-heading span::after{
    content:"";
    width:70px;
    height:2px;
    background:var(--secondary);
    display:block;
    margin:12px auto 0;
}

.section-heading h2{
    font-family:'Cormorant Garamond',serif;
    font-size:56px;
    color:var(--dark);
    margin-bottom:20px;
    font-weight:700;
}

.section-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
    font-size:18px;
}

/*=========================================
WHY SECTION
=========================================*/

.why-premum{
    background:#fff;
}

.why-card{
    background:#fff;
    border-radius:25px;
    padding:40px 30px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.4s;
    border:1px solid var(--border);
    height:100%;
}

.why-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.why-card .icon{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#FFF6DD;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;
    font-size:40px;
}

.why-card h4{
    font-family:'Cormorant Garamond',serif;
    font-size:32px;
    color:var(--primary);
    margin-bottom:15px;
}

.why-card p{
    color:#666;
}

/*=========================================
PRODUCT SECTION
=========================================*/

.featured-products{
    background:var(--bg);
}

.product-row{
    margin:120px 0;
    align-items:center;
}

.product-image{
    text-align:center;
}

.product-image img{
    max-width:520px;
    transition:.5s;
    filter:drop-shadow(0 20px 35px rgba(0,0,0,.15));
}

.product-image img:hover{
    transform:scale(1.05) rotate(-2deg);
}

.product-content span{
    color:var(--secondary);
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.product-content h2{
    font-family:'Cormorant Garamond',serif;
    font-size:52px;
    color:var(--dark);
    margin:20px 0;
    line-height:1.2;
}

.product-content p{
    color:#666;
    margin-bottom:25px;
    font-size:17px;
}

.product-content ul{
    margin-bottom:30px;
}

.product-content ul li{
    margin-bottom:15px;
    font-size:17px;
}

.product-content ul li i{
    color:var(--secondary);
    margin-right:10px;
}

.price{
    font-size:48px;
    color:var(--primary);
    font-weight:700;
    font-family:'Cormorant Garamond',serif;
    margin:25px 0;
}

.price span{
    display:block;
    font-size:15px;
    color:#777;
    letter-spacing:1px;
}

/*=========================================
QUOTE
=========================================*/

.quote-section{
    background:linear-gradient(135deg,#7B1E22,#561116);
    color:#fff;
    text-align:center;
}

.quote-section h2{
    font-family:'Cormorant Garamond',serif;
    font-size:54px;
    margin-bottom:20px;
}

.quote-section p{
    font-size:20px;
    color:#f2e9d4;
}

/*=========================================
ABOUT
=========================================*/

.about-premum{
    background:#fff;
}

.about-image{
    position:relative;
}

.about-image img{
    border-radius:30px;
    box-shadow:var(--shadow);
}

.experience-box{
    position:absolute;
    right:-20px;
    bottom:40px;
    background:var(--primary);
    color:#fff;
    padding:25px 35px;
    border-radius:20px;
    text-align:center;
}

.experience-box h2{
    font-size:48px;
    margin:0;
    font-family:'Cormorant Garamond',serif;
}

.experience-box p{
    margin:0;
}

.section-subtitle{
    color:var(--secondary);
    font-weight:600;
    letter-spacing:2px;
}

.about-premum h2{
    font-family:'Cormorant Garamond',serif;
    font-size:54px;
    color:var(--dark);
    margin:20px 0;
}

.about-premum p{
    color:#666;
    margin-bottom:20px;
}

.about-list div{
    margin-bottom:18px;
    font-size:17px;
}

.about-list i{
    color:var(--secondary);
    margin-right:12px;
}

/*=========================================
JOURNEY TIMELINE
=========================================*/

.journey-section{
    background:#FCF8F1;
    position:relative;
}

.timeline{
    display:flex;
    justify-content:space-between;
    position:relative;
    margin-top:70px;
    flex-wrap:wrap;
}

.timeline::before{
    content:"";
    position:absolute;
    left:5%;
    top:55px;
    width:90%;
    height:3px;
    background:#E5D4A6;
    z-index:0;
}

.timeline-item{
    width:23%;
    text-align:center;
    position:relative;
    z-index:2;
}

.timeline-icon{
    width:110px;
    height:110px;
    border-radius:50%;
    background:#fff;
    border:5px solid var(--secondary);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:42px;
    margin:0 auto 25px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.timeline-item h4{
    font-family:'Cormorant Garamond',serif;
    font-size:30px;
    color:var(--primary);
    margin-bottom:10px;
}

.timeline-item p{
    color:#666;
    font-size:15px;
}

/*=========================================
STATISTICS
=========================================*/

.stats-section{
    background:linear-gradient(135deg,#7B1E22,#561116);
    padding:90px 0;
}

.stat-box{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    border-radius:20px;
    padding:35px;
    text-align:center;
    transition:.4s;
}

.stat-box:hover{
    transform:translateY(-10px);
}

.stat-box h2{
    color:#FFD76A;
    font-size:54px;
    font-family:'Cormorant Garamond',serif;
    margin-bottom:10px;
}

.stat-box p{
    color:#fff;
    margin:0;
}

/*=========================================
DIVINE MESSAGE
=========================================*/

.divine-message{
    background:#FFF;
}

.message-box{
    background:linear-gradient(135deg,#FFF8E8,#FFF2CC);
    border-radius:30px;
    padding:70px;
    text-align:center;
    box-shadow:var(--shadow);
}

.message-box h2{
    font-family:'Cormorant Garamond',serif;
    font-size:48px;
    color:var(--primary);
    margin-bottom:20px;
}

.message-box p{
    color:#555;
    max-width:800px;
    margin:auto;
    font-size:18px;
}

/*=========================================
TESTIMONIALS
=========================================*/

.testimonial-section{
    background:#FCF8F1;
}

.testimonial-card{
    background:#fff;
    border-radius:25px;
    padding:40px 30px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.4s;
    height:100%;
}

.testimonial-card:hover{
    transform:translateY(-10px);
}

.testimonial-card img{
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    margin:0 auto 20px;
    border:4px solid var(--secondary);
}

.stars{
    color:#F4B400;
    font-size:20px;
    margin-bottom:15px;
}

.testimonial-card p{
    color:#666;
    font-style:italic;
    min-height:80px;
}

.testimonial-card h4{
    font-family:'Cormorant Garamond',serif;
    color:var(--primary);
    margin-top:20px;
    margin-bottom:5px;
}

.testimonial-card span{
    color:#888;
    font-size:14px;
}

/*=========================================
GALLERY
=========================================*/

.gallery-section{
    background:#fff;
}

.gallery-img{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:20px;
    transition:.5s;
    cursor:pointer;
}

.gallery-img:hover{
    transform:scale(1.05);
    box-shadow:0 25px 40px rgba(0,0,0,.15);
}

/*=========================================
CONTACT SECTION
=========================================*/

.contact-section{
    background:#FCF8F1;
}

.contact-section h2{
    font-family:'Cormorant Garamond',serif;
    font-size:52px;
    color:var(--dark);
    margin-bottom:20px;
}

.contact-section p{
    color:#666;
    margin-bottom:30px;
}

.contact-info{
    margin-top:35px;
}

.contact-info div{
    display:flex;
    align-items:center;
    margin-bottom:22px;
    font-size:17px;
}

.contact-info i{
    width:55px;
    height:55px;
    background:var(--primary);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:18px;
    font-size:20px;
}

.contact-form{
    background:#fff;
    padding:45px;
    border-radius:25px;
    box-shadow:var(--shadow);
}

.form-control{
    height:58px;
    border-radius:12px;
    border:1px solid #ddd;
    padding-left:18px;
    box-shadow:none;
}

.form-control:focus{
    border-color:var(--secondary);
    box-shadow:none;
}

textarea.form-control{
    height:170px;
    padding-top:15px;
    resize:none;
}

/*=========================================
NEWSLETTER
=========================================*/

.newsletter{
    background:linear-gradient(135deg,#7B1E22,#541117);
    padding:90px 0;
}

.newsletter-box{
    text-align:center;
    color:#fff;
}

.newsletter-box h2{
    font-family:'Cormorant Garamond',serif;
    font-size:54px;
    margin-bottom:20px;
}

.newsletter-box p{
    color:#f8eac8;
    margin-bottom:35px;
}

.newsletter-form{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.newsletter-form input{
    width:420px;
    height:58px;
    border:none;
    border-radius:50px;
    padding:0 25px;
    outline:none;
}

/*=========================================
FOOTER
=========================================*/

footer{
    background:#2D1B16;
    color:#fff;
    padding:90px 0 30px;
}

.footer-logo{
    width:110px;
    margin-bottom:20px;
}

footer p{
    color:#d9d9d9;
}

footer h4{
    font-family:'Cormorant Garamond',serif;
    font-size:28px;
    margin-bottom:20px;
    color:#FFD76A;
}

footer ul{
    list-style:none;
    padding:0;
}

footer ul li{
    margin-bottom:12px;
}

footer ul li a{
    color:#ddd;
    text-decoration:none;
    transition:.3s;
}

footer ul li a:hover{
    color:#FFD76A;
    padding-left:8px;
}

.footer-social{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.footer-social a{
    width:45px;
    height:45px;
    background:#fff;
    color:var(--primary);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.footer-social a:hover{
    background:var(--secondary);
    color:#fff;
    transform:translateY(-5px);
}

footer hr{
    border-color:rgba(255,255,255,.15);
    margin:45px 0 20px;
}

.copyright{
    color:#ddd;
    text-align:center;
}

/*=========================================
SCROLL TO TOP
=========================================*/

#topBtn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    font-size:20px;
    cursor:pointer;
    display:none;
    z-index:999;
    transition:.3s;
}

#topBtn:hover{
    background:var(--secondary);
}

/*=========================================
LOADER ANIMATION
=========================================*/

.loader.hide{
    opacity:0;
    visibility:hidden;
    transition:.6s;
}

/*=========================================
UTILITY
=========================================*/

.text-gold{
    color:var(--secondary);
}

.rounded-25{
    border-radius:25px;
}

.shadow{
    box-shadow:var(--shadow);
}

.mt-60{
    margin-top:60px;
}

.mb-60{
    margin-bottom:60px;
}

.py-120{
    padding:120px 0;
}

/*=========================================
SCROLLBAR
=========================================*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#F3EAD7;
}

::-webkit-scrollbar-thumb{
    background:var(--primary);
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#561116;
}