/* ===== DISNEY FONT ===== */
@font-face {
    font-family: 'DisneyLogo';
    src: url('WaltographRegular.otf') format('opentype');
}

/* ===== BACKGROUND ===== */
.background {
    background: url("Mickey Ears Disney Castle GIF by ABC Network (1).gif") center/cover no-repeat;
    position: fixed;
    inset: 0;
    z-index: -3;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
    z-index: -2;
}

/* ===== HEADER ===== */
.header {
    width: 85%;
    margin: 20px auto 0 auto;
    background: rgba(255, 250, 240, 1);
    backdrop-filter: blur(16px);
    border: 1.5px solid rgba(255, 245, 230, 0.55);
    padding: 10px 26px;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    border-radius: 22px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'DisneyLogo', sans-serif;
    font-size: 32px;
    color: #000;
    letter-spacing: 1px;
}

.nav-item {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    position: relative;
    padding: 2px 10px;
    transition: 0.3s ease;
}

.fake-space {
    width: 120px;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 110px;
    margin: 0 auto;
}

.hover-light {
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 60px;
    height: 16px;
    background: rgba(160, 120, 255, 0.7);
    border-radius: 50%;
    transform: translateX(-50%) scale(0);
    transition: 0.35s ease;
    filter: blur(6px);
    pointer-events: none;
}

.nav-item:hover .hover-light {
    transform: translateX(-50%) scale(1);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,250,240,0.95);
    border-radius: 12px;
    padding: 10px 0;
    border: 1px solid rgba(0,0,0,0.1);
    width: 240px;
    text-align: center;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #000;
    text-decoration: none;
    font-size: 18px;
}

.dropdown:hover .dropdown-menu {
    display: flex;
    flex-direction: column;
}

.tasks-container {
    margin-top: 260px;
    display: flex;
    justify-content: center;
    gap: 70px;
}

.task {
    width: 180px;
    cursor: pointer;
    position: relative;
    transition: 0.3s ease;
    text-align: center;
}

.mickey-icon {
    width: 165px;
    transition: 0.3s ease;
}

.task:hover .mickey-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 0 20px #fff6a9);
}

.task p {
    margin-top: 6px;
    font-size: 20px;
    color: #fff;
    text-shadow: 0 0 10px #000;
}

footer {
    margin-top: 100px;
    padding: 0;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    text-shadow: 0 0 10px #000;
}