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

body{

font-family:'Poppins',sans-serif;

background:#fff;

overflow-x:hidden;

}

a{
text-decoration:none;
}

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
padding:12px 8%;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(255,255,255,.15);
backdrop-filter:blur(15px);
z-index:999;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    color:white;
    text-decoration:none;
    cursor:pointer;
}

.logo:hover{
    opacity:0.9;
}

.logo img{
    width:48px;
}

.logo h2{
    font-family:'Cinzel', serif;
    color:white;
}

.nav-links{

display:flex;

gap:35px;

list-style:none;

}

.nav-links a{

color:white;

font-weight:500;

transition:.3s;

}

.nav-links a:hover{

color:#FFD700;

}

.book-btn{

background:#D4AF37;

padding:13px 28px;

border-radius:40px;

color:white;

font-weight:600;

transition:.3s;

}

.book-btn:hover{

transform:translateY(-3px);

}

.hero{

height:100vh;

background:url("../images/hero.jpg");

background-size:cover;

background-position:center;

display:flex;

justify-content:center;

align-items:center;

position:relative;

text-align:center;

}

.overlay{

position:absolute;

inset:0;

background:rgba(0,0,0,.55);

}

.hero-content{

position:relative;

z-index:2;

color:white;

max-width:900px;

padding:20px;

}

.tagline{

display:inline-block;

padding:10px 25px;

border-radius:50px;

background:rgba(255,255,255,.15);

backdrop-filter:blur(10px);

margin-bottom:25px;

}

.hero h1{

font-family:'Cinzel',serif;

font-size:68px;

line-height:1.2;

margin-bottom:25px;

}

.subtitle{

font-size:20px;

margin-bottom:40px;

opacity:.9;

}

.buttons{

display:flex;

justify-content:center;

gap:20px;

margin-bottom:60px;

}

.primary-btn{

background:#D4AF37;

padding:16px 35px;

border-radius:40px;

color:white;

font-weight:600;

}

.secondary-btn{

border:2px solid white;

padding:16px 35px;

border-radius:40px;

color:white;

font-weight:600;

}

.stats{

display:flex;

justify-content:center;

gap:60px;

}

.stats h2{

font-size:40px;

color:#FFD700;

}

.stats p{

font-size:14px;

}


@keyframes bounce{

0%,100%{
transform:translate(-50%,0);
}

50%{
transform:translate(-50%,12px);
}

}

@media(max-width:768px){

.nav-links{

display:none;

}

.book-btn{

display:none;

}

.hero h1{

font-size:42px;

}

.subtitle{

font-size:16px;

}

.buttons{

flex-direction:column;

}

.stats{

flex-wrap:wrap;

gap:25px;

}

}
.templates-section{
    padding:100px 8%;
    background:#faf8f3;
}

.section-title{
    text-align:center;
    margin-bottom:20px;
}

.section-title h2{
    font-family:'Cinzel',serif;
    font-size:34px;
    color:#8b6b12;
    margin-bottom:10px;
}

.section-title p{
    color:#666;
    font-size:17px;
}

.template-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.template-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.template-card:hover{
    transform:translateY(-10px);
}

.template-card img{
    width:100%;
    height:230px;
    object-fit:cover;
}

.template-content{
    padding:25px;
}

.template-content h3{
    font-family:'Cinzel',serif;
    color:#8b6b12;
    margin-bottom:10px;
}

.template-content p{
    color:#666;
    margin-bottom:20px;
    line-height:1.6;
}

.view-btn{
    display:inline-block;
    background:#d4af37;
    color:#fff;
    padding:12px 25px;
    border-radius:30px;
    transition:.3s;
}

.view-btn:hover{
    background:#b89322;
}

/* FEATURES */

.features-section{
padding:20px 8%;
background:#fff;
}

.features-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
}

.feature-card{
background:#fff;
padding:30px;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.3s;
text-align:center;
}

.feature-card:hover{
transform:translateY(-8px);
}

.feature-card h3{
color:#b68b11;
margin-bottom:15px;
}

/* ===========================
   PRICING SECTION
=========================== */

/* ===========================
   PRICING SECTION
=========================== */

.pricing-section{
    padding:70px 8%;
    background:linear-gradient(180deg,#fcfaf5,#f7f2e7);
    text-align:center;
}

.pricing-grid{
    display:flex;
    justify-content:center;
    align-items:center;
}

.price-card{
    width:100%;
    max-width:520px;
    background:#fff;
    padding:45px 40px;
    border-radius:28px;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    transition:.35s ease;
    position:relative;
    overflow:hidden;
}

.price-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:linear-gradient(90deg,#D4AF37,#FFD86A,#D4AF37);
}

.price-card:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 60px rgba(0,0,0,.14);
}

.price-card h3{
    font-size:36px;
    color:#222;
    margin-bottom:10px;
    font-family:'Cinzel',serif;
}

.plan-desc{
    color:#777;
    font-size:16px;
    margin-bottom:20px;
}

.price-card h1{
    font-size:70px;
    color:#C89A12;
    margin:20px 0 30px;
    font-weight:700;
}

.price-card ul{
    list-style:none;
    margin:0;
    padding:0;
}

.price-card li{
    padding:14px 0;
    border-bottom:1px solid #ececec;
    color:#555;
    font-size:17px;
}

.price-card li:last-child{
    border-bottom:none;
}

.price-btn{
    display:inline-block;
    margin-top:30px;
    padding:15px 40px;
    border-radius:50px;
    background:linear-gradient(135deg,#D4AF37,#B8860B);
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.price-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 28px rgba(212,175,55,.35);
}

/* Mobile */

@media(max-width:768px){

    .pricing-section{
        padding:50px 20px;
    }

    .price-card{
        max-width:360px;
        padding:30px 24px;
    }

    .price-card h3{
        font-size:28px;
    }

    .price-card h1{
        font-size:54px;
    }

    .price-card li{
        font-size:15px;
        padding:11px 0;
    }

    .price-btn{
        width:100%;
        padding:14px;
    }
}

/* CONTACT */

.contact-section{
padding:100px 8%;
background:white;
text-align:center;
}

.contact-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
margin-top:40px;
}

.contact-btn{
padding:15px 30px;
background:#d4af37;
color:white;
border-radius:40px;
transition:.3s;
}

.contact-btn:hover{
background:#b68b11;
transform:translateY(-5px);
}
html {
    scroll-behavior: smooth;
}
section {
    scroll-margin-top: 150px;
}


/* Mobile Menu */

.menu-toggle{
    display:none;
    color:#fff;
    font-size:30px;
    cursor:pointer;
}

.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:100%;
    height:100vh;
    background:#fbf7ef;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:35px;
    transition:.4s;
    z-index:2000;
}

.mobile-menu.active{
    right:0;
}

.mobile-menu a{
    text-decoration:none;
    color:#2f1a13;
    font-size:34px;
    font-weight:600;
}

.mobile-book{
    background:#D4AF37;
    color:#fff !important;
    padding:16px 45px;
    border-radius:40px;
    margin-top:20px;
}

.close-btn{
    position:absolute;
    top:28px;
    right:30px;
    font-size:38px;
    cursor:pointer;
    color:#2f1a13;
}

@media(max-width:768px){

    .nav-links,
    .book-btn{
        display:none;
    }

    .menu-toggle{
        display:block;
    }

    .logo h2{
        font-size:26px;
    }

    .logo img{
        width:42px;
    }

    .navbar{
        padding:15px 20px;
    }

    .mobile-menu a{
        font-size:30px;
    }
}