/* ============================
   1. CORE VARIABLES & RESET
   ============================ */
:root {
    --gold: #D4AF37;
    --dark: #000000;
    --darker: #05080f;
    --card-bg: #111827;
    --white: #ffffff;
    --text-grey: #b0b0b0;
    --glass: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--dark);
    color: var(--white);
    /* CHANGED: Main body font is now Work Sans */
    font-family: 'Work Sans', sans-serif;
    overflow-x: hidden;
    cursor: none;
}

/* Mobile Reset */
@media (max-width: 992px) {
    body {  
        cursor: auto;
    }
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: none;
    transition: 0.3s;
}

button {
    cursor: none;
}

/* ============================
   2. LUXURY CURSOR
   ============================ */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999999;
    pointer-events: none;
    display: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--gold);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

@media (min-width: 992px) {

    .cursor-dot,
    .cursor-outline {
        display: block;
    }
}

body.hovering .cursor-outline {
    width: 80px;
    height: 80px;
    background-color: rgba(212, 175, 55, 0.1);
}

/* ============================
   3. HEADER & MENU
   ============================ */

 /* =========================================
   LOGO IMAGE STYLES
   ========================================= */

.brand-logo{
    display: flex; /* Helps center the image vertically */
    align-items: center;
    text-decoration: none; /* Removes any underline */
}

.brand-logo img {
    height: 120px; /* Adjust this height to fit your header */
    width: auto;  /* Maintains the logo's aspect ratio */
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Optional: Slight zoom on hover */
.brand-logo:hover img {
    transform: scale(1.05);
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .brand-logo img {
        height: 70px; /* Slightly smaller on mobile */
    }
}
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
    transition: background 0.3s;
}

.site-header.scrolled {
    background: rgba(10, 17, 32, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* CHANGED: Logo usually looks better in the Heading font or specific brand font */
.brand-logo {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 2px;
}

.menu-btn {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
}

.menu-btn span {
    width: 30px;
    height: 2px;
    background: white;
    transition: 0.3s;
}

.menu-btn:hover span {
    width: 35px;
    background: var(--gold);
}

/* Sliding Menu */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-menu {
    position: fixed;
    top: 0;
    right: 0; /* CHANGED FROM left: 0 TO right: 0 */
    width: 350px;
    height: 100vh;
    background: var(--dark);
    z-index: 1002;
    padding: 60px 40px;
    transform: translateX(100%); /* CHANGED FROM -100% TO 100% */
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255, 255, 255, 0.1); /* CHANGED FROM border-right TO border-left */
}

.side-menu.active {
    transform: translateX(0);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
}

.menu-links ul {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.menu-links li {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s ease;
}

.side-menu.active .menu-links li {
    opacity: 1;
    transform: translateY(0);
    transition-delay: var(--delay);
}

.menu-links a {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    transition: 0.3s;
    display: block;
}

.menu-links a:hover {
    color: var(--gold);
    padding-left: 10px;
}

/* CHANGED: Sub-cat is small text */
.sub-cat {
    display: block;
    font-size: 11px;
    color: #888;
    margin-top: 5px;
    font-family: 'Work Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-footer {
    margin-top: auto;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 12px;
    color: #777;
}


