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

body{
    font-family:'Montserrat',sans-serif;
    background:#0a0a0a;
    color:#f1e0b0;
    line-height:1.7;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.hero{
    min-height:100vh;
    background:linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.8)), url('logo.jpg') center/contain no-repeat;
    display:flex;
    flex-direction:column;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 5%;
    background:rgba(0,0,0,.5);
    position:sticky;
    top:0;
    backdrop-filter:blur(8px);
}

.logo-wrap{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo-wrap img{
    width:70px;
    height:70px;
    border-radius:50%;
}

.logo-wrap h1{
    font-family:'Cormorant Garamond', serif;
    font-size:2rem;
}

.logo-wrap p{
    color:#d4af37;
}

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

nav a{
    color:#f1e0b0;
    text-decoration:none;
    transition:.3s;
}

nav a:hover{
    color:#d4af37;
}

.hero-content{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:40px;
}

.hero-content h2{
    font-size:4rem;
    font-family:'Cormorant Garamond', serif;
    margin-bottom:20px;
}

.hero-content p{
    max-width:800px;
    font-size:1.2rem;
}

.btn{
    display:inline-block;
    margin-top:30px;
    padding:14px 35px;
    background:#d4af37;
    color:#000;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
}

.section{
    padding:90px 0;
}

.section h2{
    font-size:3rem;
    margin-bottom:40px;
    text-align:center;
    font-family:'Cormorant Garamond', serif;
    color:#d4af37;
}

.dark{
    background:#111;
}

.two-col{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.card img{
    width:100%;
    border-radius:20px;
    border:2px solid #d4af37;
}

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

.service-card{
    background:#1a1a1a;
    padding:30px;
    border-radius:20px;
    border:1px solid rgba(212,175,55,.3);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-5px);
    border-color:#d4af37;
}

.service-card h3{
    margin-bottom:15px;
    color:#d4af37;
}

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

.gallery img{
    width:100%;
    border-radius:20px;
    border:2px solid #d4af37;
    transition:.3s;
}

.gallery img:hover{
    transform:scale(1.02);
}

.price-wrap img{
    width:100%;
    border-radius:20px;
    border:2px solid #d4af37;
}

.center{
    text-align:center;
    margin-top:25px;
}

.faq-item{
    margin-bottom:30px;
    padding:25px;
    background:#141414;
    border-left:4px solid #d4af37;
    border-radius:10px;
}

.faq-item h3{
    margin-bottom:10px;
    color:#d4af37;
}

.contact-box{
    background:#111;
    padding:40px;
    border-radius:20px;
    text-align:center;
    border:1px solid rgba(212,175,55,.3);
}

footer{
    text-align:center;
    padding:25px;
    background:#000;
    color:#bfa76a;
}

@media(max-width:900px){

    nav{
        flex-direction:column;
        gap:20px;
    }

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

    .two-col{
        grid-template-columns:1fr;
    }

    .hero-content h2{
        font-size:2.6rem;
    }
}
