
html,
body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

/* Custom Image Logo Styling */
.logo-img {
    height: 40px;
    /* Adjust height to match your header size */
    width: auto;
    /* Maintains aspect ratio */
    object-fit: contain;
    border-radius: 50%;
    /* Optional: rounds the circular emblem neatly */
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .logo-img {
        height: 32px;
        /* Slightly smaller for mobile screens */
    }
}


/* =========================================================
   LUXURY OFF-CANVAS SIDE DRAWER MENU
   ========================================================= */

/* Hamburger Button Styling */
.menu-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.menu-toggle i {
    color: #ffffff;
    font-size: 16px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.menu-toggle:hover {
    border-color: var(--gold-primary);
    background: var(--gold-primary);
}

.menu-toggle:hover i {
    color: #0a0a0a;
}

/* Dark Blurred Backdrop */
.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.offcanvas-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Off-Canvas Drawer Container (50% Width on Desktop) */
.offcanvas-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    /* Hidden off-screen by default */
    width: 50vw;
    /* Covers exactly half screen on large displays */
    max-width: 700px;
    min-width: 450px;
    height: 100vh;
    background: #080808;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 999;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.9);
}

.offcanvas-drawer.active {
    right: 0;
}

/* Drawer Header (Logo + Close Button) */
.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 40px;
}

.drawer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
}

.drawer-close-btn {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #ffffff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.drawer-close-btn:hover {
    background: var(--gold-primary);
    color: #0a0a0a;
    border-color: var(--gold-primary);
    transform: rotate(90deg);
}

/* Drawer Body 2-Column Grid Layout */
.drawer-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.drawer-section-tag {
    color: var(--gold-primary);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
    font-weight: 600;
}

.drawer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.drawer-links a {
    font-family: var(--font-serif);
    font-size: 28px;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.drawer-links a:hover {
    color: var(--gold-primary);
    transform: translateX(8px);
}

/* Info Column Styling */
.drawer-info-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-text {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 6px;
}

.info-text i {
    color: var(--gold-primary);
    margin-right: 8px;
}

.drawer-socials {
    display: flex;
    gap: 15px;
}

.drawer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold-primary);
    font-size: 14px;
    transition: all 0.3s ease;
}

.drawer-socials a:hover {
    background: var(--gold-primary);
    color: #0a0a0a;
    transform: translateY(-3px);
}

/* Responsive Mobile Layout */
@media (max-width: 768px) {
    .offcanvas-drawer {
        width: 100vw;
        min-width: 100%;
        padding: 30px 20px;
    }

    .drawer-body {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .drawer-links a {
        font-size: 22px;
    }
}