
/* FIXED HEADER */
.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    box-shadow:0 4px 20px rgba(0,0,0,0.08);
    z-index:9999;
}

/* INNER WRAPPER */
.header-inner{
    max-width:1200px;
    margin:auto;
    padding:16px 24px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* LOGO IMAGE */
.logo img{
    height:52px;      /* Adjust size if needed */
    width:auto;
    display:block;
}

/* NAV */
.nav{
    display:flex;
    align-items:center;
    gap:28px;
}

.nav a{
    text-decoration:none;
    color:#111;
    font-weight:600;
    transition:.3s;
}

.nav a:hover{
    color:#b78f59;
}

/* CTA BUTTON */
.btn-cta{
    padding:10px 18px;
    background:linear-gradient(180deg,#b78f59,#95744f);
    color:#fff !important;
    border-radius:10px;
    font-weight:700;
}

/* HAMBURGER */
.hamburger{
    display:none;
    width:28px;
    height:22px;
    flex-direction:column;
    justify-content:space-between;
    cursor:pointer;
}

.hamburger span{
    width:100%;
    height:3px;
    background:#111;
    border-radius:4px;
}

/* MOBILE MENU */
@media(max-width:880px){
    .nav{
    position:absolute;
    top:80px;
    right:0;
    flex-direction:column;
    background:#fff;
    width:220px;
    padding:20px;
    gap:18px;
    border-radius:12px 0 0 12px;
    box-shadow:0 12px 30px rgba(0,0,0,0.1);
    opacity:0;
    transform:translateY(-10px);
    pointer-events:none;
    transition:.3s;
    }

    .nav.open{
    opacity:1;
    pointer-events:auto;
    transform:translateY(0);
    }

    .hamburger{
    display:flex;
    }
}

