/* Vacation Mode Topbar */
.vacation-mode-topbar {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fbbf24 100%);
    border-bottom: 3px solid #f59e0b;
    padding: 0;
    position: relative;
    overflow: hidden;
    animation: slideDown 0.5s ease-out;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.vacation-mode-topbar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.vacation-mode-topbar::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.vacation-mode-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 14px 24px;
    position: relative;
    z-index: 1;
}

.vacation-icon-wrapper {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ffffff 0%, #fef3c7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    flex-shrink: 0;
}

.vacation-icon-animated {
    font-size: 24px;
    color: #f59e0b;
    animation: bounce 2s ease-in-out infinite;
}

.vacation-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    max-width: 800px;
}

.vacation-text strong {
    font-size: 16px;
    font-weight: 700;
    color: #92400e;
    letter-spacing: -0.3px;
}

.vacation-text span {
    font-size: 14px;
    color: #b45309;
    line-height: 1.4;
}

.vacation-link {
    color: #92400e;
    font-weight: 600;
    text-decoration: underline;
    transition: all 0.3s ease;
    margin-left: 4px;
}

.vacation-link:hover {
    color: #78350f;
    text-decoration: none;
}

.vacation-close {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(146, 64, 14, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.vacation-close:hover {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(146, 64, 14, 0.4);
    transform: rotate(90deg);
}

.vacation-close i {
    font-size: 14px;
    color: #92400e;
}

/* Animations */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(-5deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(-4px) rotate(5deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 20px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .vacation-mode-content {
        padding: 12px 16px;
        gap: 12px;
    }

    .vacation-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .vacation-icon-animated {
        font-size: 20px;
    }

    .vacation-text strong {
        font-size: 14px;
    }

    .vacation-text span {
        font-size: 12px;
    }

    .vacation-close {
        width: 28px;
        height: 28px;
    }

    .vacation-close i {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .vacation-mode-content {
        flex-direction: column;
        text-align: center;
        padding: 12px;
    }

    .vacation-text {
        align-items: center;
    }

    .vacation-close {
        position: absolute;
        top: 8px;
        right: 8px;
    }
}
