/* ===== HEADER BASE ===== */
.dmk-header {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 96%;
    z-index: 9999;

    padding: 15px 0;

    backdrop-filter: blur(18px);
    background: rgba(0, 0, 0, 0.55);

    border-radius: 18px;   /* Rounded corners */
    border: 1px solid rgba(255, 215, 0, 0.25);

    transition: all 0.4s ease;
}

/* Scroll Effect */
.dmk-header.scrolled {
    background: linear-gradient(
        90deg,
        rgba(191,149,63,0.25),
        rgba(0,0,0,0.7)
    );
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.15);
}
/* Container */
.dmk-container {
    width: 92%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== LOGO ===== */
.dmk-logo {
    display: flex;
    align-items: center;
}

.dmk-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.dmk-logo img {
    height: 55px;
    width: auto;
    display: block;
}

/* Premium Gradient Gold Brand */
.dmk-brand {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1.5px;
    background: linear-gradient(
        90deg,
        #bf953f,
        #fcf6ba,
        #b38728,
        #fbf5b7,
        #aa771c
    );
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShine 6s linear infinite;
}

/* Animated shine effect */
@keyframes goldShine {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

/* ===== NAVIGATION ===== */
.dmk-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.dmk-nav ul li {
    position: relative;
}

.dmk-nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

.dmk-nav ul li a:hover {
    color: #ffd700;
}

/* Dropdown */
/* ===== DROPDOWN FIXED ===== */

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 45px;
    left: 0;

    background: rgba(0, 0, 0, 0.95);
    border: 1px solid #d4af37;
    border-radius: 14px;

    padding: 20px;
    min-width: 260px;

    display: flex;
    flex-direction: column;
    gap: 15px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown li {
    list-style: none;
}

.dropdown li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s ease;
}

.dropdown li a:hover {
    color: #d4af37;
    padding-left: 6px;
}

/* Show dropdown */
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* ===== HAMBURGER ===== */
.dmk-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.dmk-hamburger span {
    height: 3px;
    width: 25px;
    background: #ffd700;
    margin: 4px 0;
    transition: 0.4s;
}

.dmk-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px,5px);
}
.dmk-hamburger.active span:nth-child(2) {
    opacity: 0;
}
.dmk-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px,-5px);
}

/* ===== MOBILE MENU ===== */
.dmk-mobile-menu {
    position: fixed;
    right: -100%;
    top: 0;
    height: 100%;
    width: 280px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    padding: 80px 20px;
    transition: 0.4s;
    z-index: 9998;
}

.dmk-mobile-menu.open {
    right: 0;
}

.dmk-mobile-menu ul {
    list-style: none;
}

.dmk-mobile-menu li {
    margin-bottom: 20px;
}

.dmk-mobile-menu a,
.mobile-dropdown span {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.mobile-dropdown ul {
    margin-top: 10px;
    padding-left: 15px;
}

.mobile-dropdown ul li {
    margin-bottom: 10px;
}

.mobile-dropdown ul a {
    color: #ffd700;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .dmk-nav {
        display: none;
    }
    .dmk-hamburger {
        display: flex;
    }
}
