/* =========================
   LAYOUT
========================= */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* =========================
   HEADER - CONTAINER (FINAL)
========================= */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(18, 13, 13, 0.78);
    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(255,255,255,0.06);

    box-shadow:
        0 8px 30px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.03);

    padding: 14px 0;

    transition: all 0.3s ease;
}

.main-header.shrink {
    padding: 6px 0;
    backdrop-filter: blur(16px);
    background: rgba(18, 13, 13, 0.9);

    box-shadow: 0 6px 20px rgba(0,0,0,0.45);
}

/* =========================
   HEADER - LAYOUT
========================= */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;

    height: 115px;
    gap: 20px;

    transition: all 0.3s ease;
}

.main-header.shrink .nav {
    height: 80px;
}

/* =========================
   HEADER - LOGO
========================= */
.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo img {
    height: 110px;
    width: auto;
    display: block;
    object-fit: contain;

    transition: all 0.3s ease;
}

.logo:hover img {
    transform: scale(1.04);
    filter: brightness(1.08) drop-shadow(0 6px 14px rgba(244,163,189,0.22));
}

.main-header.shrink .logo img {
    height: 70px;
}

.main-header.shrink .menu a {
    font-size: 13px;
}

/* =========================
   HEADER - MENU
========================= */
.menu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

/* =========================
   HEADER RIGHT
========================= */
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* =========================
   SOCIAL ICONS
========================= */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: var(--primary);
    font-size: 14px;
    transition: all 0.25s ease;
}

.social-icons a:hover {
    background: rgba(244,163,189,0.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255,140,170,0.25);
}

.social-icons a i {
    pointer-events: none;
}

/* =========================
   DROPDOWN PRO FIX
========================= */
.menu-dropdown {
    position: relative;
}

.menu-drop-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-panel {
    position: absolute;
    top: 130%;
    left: 0;

    min-width: 220px;

    background: rgba(25,18,18,0.98);
    backdrop-filter: blur(12px);

    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);

    box-shadow: 0 20px 40px rgba(0,0,0,0.5);

    padding: 10px 0;

    /* 🔥 FIX IMPORTANT */
    display: flex;
    flex-direction: column;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: all 0.25s ease;

    z-index: 999;
}
.dropdown-panel a {
    display: block;
    width: 100%;
    padding: 10px 16px;
    font-size: 13.5px;
    color: #e9dede;
}
.menu-dropdown:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu a {
    position: relative;
    color: #eadede;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.menu a:hover {
    color: var(--primary);
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;

    width: 0%;
    height: 2px;

    background: var(--primary);
    border-radius: 2px;

    transition: width 0.25s ease;
}

.menu a:hover::after {
    width: 100%;
}