 body {
            font-family: Poppins, sans-serif;
            background: #faf7f3
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: "Cormorant Garamond", serif
        }

        .navbar {
            background: #fff
        }

        .hero {
            min-height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)),
                url('https://images.unsplash.com/photo-1519741497674-611481863552?q=80&w=1600&auto=format&fit=crop') center/cover;
            display: flex;
            align-items: center;
            color: #fff
        }

        .btn-gold {
            background: #b58b5b;
            color: #fff;
            border: none
        }

        .btn-gold:hover {
            background: #9f774a;
            color: #fff
        }

        .section-pad {
            padding: 80px 0
        }

        .card-custom {
            border: none;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .08)
        }

        .gallery img {
            height: 280px;
            object-fit: cover;
            border-radius: 15px
        }

        .stats {
            background: #2d2a26;
            color: #fff
        }

        .contact-box {
            background: #fff;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .08)
        }

        footer {
            background: #2d2a26;
            color: #fff;
            padding: 30px 0
        }
        /* =========================
   GOOGLE FONTS
========================= */
@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 VARIABLES
========================= */

:root{
    --primary:#c8a97e;
    --primary-dark:#b89264;
    --secondary:#faf6f0;
    --dark:#2b2520;
    --gold:#d8b27a;
    --white:#ffffff;
    --text:#5e5e5e;
    --shadow:0 15px 40px rgba(0,0,0,.08);
    --transition:.4s ease;
}

/* =========================
   GLOBAL
========================= */

body{
    font-family:'Poppins',sans-serif;
    background:var(--secondary);
    color:var(--text);
    overflow-x:hidden;
}

h1,h2,h3,h4,h5,h6{
    font-family:'Cormorant Garamond',serif;
    color:var(--dark);
    font-weight:700;
}

.section-pad{
    padding:120px 0;
}

a{
    text-decoration:none;
    transition:var(--transition);
}

img{
    max-width:100%;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(15px);
    box-shadow:0 3px 25px rgba(0,0,0,.05);
    padding:18px 0;
}

.navbar-brand{
    font-size:34px;
    font-weight:700;
    color:var(--dark)!important;
}

.nav-link{
    color:#965135 !important;
    font-weight:400;
    margin-left:20px;
    position:relative;
    font-size: 22px;
}

.nav-link::after{
    content:'';
    position:absolute;
    width:0;
    height:2px;
    left:0;
    bottom:-5px;
    background:var(--gold);
    transition:.3s;
}

.nav-link:hover::after{
    width:100%;
}

/* =========================
   HERO SECTION
========================= */

.hero{
    position:relative;
    min-height: 840px;
    display:flex;
    align-items:center;
    overflow:hidden;

    background:
    linear-gradient(
    rgba(0, 0, 0, 0.255),
    rgba(0, 0, 0, 0.253)
    ),
    url('img88.jpg');
    background-size:cover;
    background-position:center;
}

.hero::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(200,169,126,.15);
    border-radius:50%;
    top:-150px;
    right:-150px;
    filter:blur(50px);
}

.hero h1{
    font-size:52px;
    line-height:1;
    color:#fff;
    margin-bottom:25px;
    text-transform: uppercase;
    font-family:'Cormorant Garamond',serif;
}

.hero p{
    color:rgba(255,255,255,.9);
    font-size:20px;
    margin-bottom:35px;
}

.hero-badge{
    display:inline-block;
    padding:12px 24px;
    border:1px solid rgba(255,255,255,.3);
    color:#fff;
    border-radius:50px;
    margin-bottom:30px;
    backdrop-filter:blur(10px);
}

/* =========================
   BUTTONS
========================= */

.btn-gold{
    background: linear-gradient(135deg, #ffffff00, #b8926400);
    color: #fff;
    border: 1px solid;
    border-radius: 4px;
    padding: 10px 20px;
    font-weight: 600;
    transition: .4s;
}

.btn-gold:hover{
    transform:translateY(-4px);
    color:#fff;
    box-shadow:
    0 15px 30px rgba(200,169,126,.35);
}

/* =========================
   FORM BOX
========================= */

.contact-box{
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(15px);
    border-radius:25px;
    padding:40px;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.contact-box h3{
    margin-bottom:25px;
}
@media (max-width: 991px) {
    .navigat{
        display: none;
    }
    .hero h1{
        font-size: 42px !important;
    }
}