
:root{
    --gold:#b89b5e;
    --dark:#111111;
    --light:#f8f5ef;
}

body{
    font-family:'Inter',sans-serif;
    color:#333;
}

h1,h2,h3,h4{
    font-family:'Cormorant Garamond',serif;
}

.navbar{
    position:absolute;
    width:100%;
    z-index:999;
}

.navbar-brand{
    color:#fff;
    font-size:2rem;
    letter-spacing:2px;
}

.nav-link{
    color:#fff !important;
    margin-left:25px;
}

.hero{
    height:100vh;
    background:url('../images/hero.jpg')
    center center/cover no-repeat;
    position:relative;
}

.hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.hero-content{
    position:relative;
    z-index:2;
    height:100vh;
    display:flex;
    align-items:center;
}

.hero h1{
    color:#fff;
    font-size:6rem;
    line-height:1;
    font-weight:300;
}

.hero p{
    color:#fff;
    font-size:1.2rem;
    max-width:650px;
    margin-top:25px;
}

.about-header{
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-header::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);   /* Overlay */
}

.about-header .container{
    position: relative;
    z-index: 2;
}

.about-header h1{
    font-size: 3.5rem;
    font-weight: 600;
}

.about-header p{
    font-size: 1.2rem;
    max-width: 700px;
    margin: 20px auto 0;
}


.btn-gold{
    background:none;
    color:#fff;
    border:none;
    padding:15px 35px;
    margin-top:20px;
    border: 1px solid #fff;
}

.section{
    padding:100px 0;
}

.section-title{
    font-size:4rem;
    margin-bottom:25px;
}

.about-text{
    font-size:1.1rem;
    line-height:2;
}

.service-card{
    padding:50px 35px;
    background:#fff;
    border:1px solid #eee;
    transition:.4s;
    height:100%;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.service-card h3{
    margin-bottom:20px;
}

.gallery img{
    width:100%;
    height:500px;
    object-fit:cover;
}

.testimonial{
    background:#faf7f2;
    padding:60px;
    text-align:center;
}

.testimonial p{
    font-size:1.2rem;
    line-height:2;
}

.cta{
    background:linear-gradient(
        135deg,
        #111,
        #222
    );
    color:#fff;
    text-align:center;
    padding:120px 0;
}

.cta h2{
    font-size:4rem;
}

.footer{
    background:#111;
    color:#fff;
    padding:50px 0;
}

@media(max-width:768px){

.hero h1{
    font-size:3.5rem;
}

.section-title{
    font-size:2.5rem;
}

.gallery img{
    height:300px;
}

}
.carousel-indicators [data-bs-target]{
    background-color: #111;
}
.navbar {
    border-bottom: 1px solid #fff;
}

.footer a
{
    color: #fff;
    text-decoration: none;
}

.navbar{
    padding-top: 5px;
    padding-bottom: 5px;
    min-height: 60px;
}
.navbar-brand img{
    height: 60px;
    width: auto;
}
.navbar .nav-link{
    padding-top: 8px;
    padding-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 500;

}

.social-icons{
    display:flex;
    justify-content:center;
    gap:15px;
}

.social-icons a{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.3);
    border-radius:50%;
    color:#fff;
    text-decoration:none;
    transition:all .3s ease;
    font-size:18px;
}

.social-icons a:hover{
    background:#b89b5e;
    border-color:#b89b5e;
    transform:translateY(-3px);
}

.counter-box{
    padding:30px 20px;
}

.counter-box h3{
    font-family:'Cormorant Garamond',serif;
    font-size:4rem;
    color:#b89b5e;
    margin-bottom:10px;
    font-weight:600;
}

.counter-box p{
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:13px;
    margin:0;
    color:#666;
}

@media(max-width:768px){

    .counter-box h3{
        font-size:3rem;
    }

}